/**
 * Help Center Styles
 *
 * @package Marketplace_Theme
 */

/* ============================================
   HERO
   ============================================ */
.mt-help-hero {
	background: linear-gradient(135deg, #e83e8c 0%, #c2185b 50%, #880e4f 100%);
	padding: 64px 0 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mt-help-hero::before {
	content: '';
	position: absolute;
	top: -60%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.mt-help-hero::after {
	content: '';
	position: absolute;
	bottom: -40%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 50%;
}

.mt-help-hero__title {
	font-size: 2.25rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.mt-help-hero__subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
	position: relative;
	z-index: 1;
}

.mt-help-hero__search {
	max-width: 560px;
	margin: 0 auto;
	display: flex;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 1;
}

.mt-help-hero__input {
	flex: 1;
	border: none;
	padding: 16px 20px;
	font-size: 1rem;
	outline: none;
	background: transparent;
	color: #333;
}

.mt-help-hero__input::placeholder {
	color: #999;
}

.mt-help-hero__btn {
	background: #e83e8c;
	border: none;
	padding: 0 20px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.mt-help-hero__btn:hover {
	background: #c2185b;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.mt-help-categories {
	padding: 56px 0;
	background: #f8f9fa;
}

.mt-help-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.mt-help-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-decoration: none;
	color: inherit;
	border: 1px solid #eee;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mt-help-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	border-color: #e83e8c;
}

.mt-help-cat-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.mt-help-cat-card__icon--order {
	background: linear-gradient(135deg, #fce4ec, #f8bbd0);
	color: #c2185b;
}

.mt-help-cat-card__icon--return {
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	color: #1565c0;
}

.mt-help-cat-card__icon--payment {
	background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
	color: #2e7d32;
}

.mt-help-cat-card__icon--account {
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	color: #e65100;
}

.mt-help-cat-card__icon--vendor {
	background: linear-gradient(135deg, #f3e5f5, #e1bee7);
	color: #7b1fa2;
}

.mt-help-cat-card__icon--security {
	background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
	color: #00695c;
}

.mt-help-cat-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: #1a1a2e;
}

.mt-help-cat-card__desc {
	font-size: 0.875rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.mt-help-faq {
	padding: 56px 0 64px;
	background: #fff;
}

.mt-help-faq__title {
	font-size: 1.75rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 40px;
	color: #1a1a2e;
}

.mt-help-faq__list {
	max-width: 800px;
	margin: 0 auto 32px;
}

.mt-help-faq__category {
	font-size: 1.1rem;
	font-weight: 700;
	color: #e83e8c;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid #fce4ec;
}

.mt-help-faq__item {
	border: 1px solid #eee;
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: border-color 0.2s;
}

.mt-help-faq__item[open] {
	border-color: #e83e8c;
}

.mt-help-faq__question {
	padding: 18px 20px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.2s, color 0.2s;
	user-select: none;
}

.mt-help-faq__question::-webkit-details-marker {
	display: none;
}

.mt-help-faq__question::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: #999;
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform 0.25s ease, color 0.25s ease;
}

.mt-help-faq__item[open] .mt-help-faq__question::after {
	content: '−';
	color: #e83e8c;
}

.mt-help-faq__item[open] .mt-help-faq__question {
	color: #e83e8c;
	background: #fff5f9;
}

.mt-help-faq__question:hover {
	background: #fafafa;
}

.mt-help-faq__answer {
	padding: 0 20px 18px;
	font-size: 0.9rem;
	line-height: 1.7;
	color: #555;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.mt-help-contact {
	padding: 56px 0 72px;
	background: #f8f9fa;
}

.mt-help-contact__title {
	font-size: 1.75rem;
	font-weight: 800;
	text-align: center;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.mt-help-contact__subtitle {
	text-align: center;
	color: #666;
	font-size: 1rem;
	margin-bottom: 40px;
}

.mt-help-contact__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.mt-help-contact__card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	border: 1px solid #eee;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt-help-contact__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.mt-help-contact__icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #fce4ec, #f8bbd0);
	color: #e83e8c;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.mt-help-contact__card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.mt-help-contact__card p {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 12px;
}

.mt-help-contact__link {
	display: inline-block;
	color: #e83e8c;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.2s;
}

.mt-help-contact__link:hover {
	color: #c2185b;
}

.mt-help-contact__chat-btn {
	background: none;
	border: 2px solid #e83e8c;
	border-radius: 8px;
	padding: 8px 20px;
	cursor: pointer;
	font-family: inherit;
}

.mt-help-contact__chat-btn:hover {
	background: #e83e8c;
	color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
	.mt-help-hero {
		padding: 40px 0 48px;
	}

	.mt-help-hero__title {
		font-size: 1.5rem;
	}

	.mt-help-hero__subtitle {
		font-size: 1rem;
	}

	.mt-help-categories__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.mt-help-cat-card {
		padding: 24px 16px;
	}

	.mt-help-contact__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mt-help-faq__title {
		font-size: 1.35rem;
	}
}

@media (max-width: 480px) {
	.mt-help-categories__grid {
		grid-template-columns: 1fr;
	}

	.mt-help-hero__search {
		margin: 0 16px;
	}
}
