/* ==========================================================================
   HELP CENTER — Page Template Styles
   ========================================================================== */

/* ── CSS Variables ── */
:root {
	--hc-green: #2e7d32;
	--hc-green-light: #4caf50;
	--hc-green-dark: #1b5e20;
	--hc-green-bg: #e8f5e9;
	--hc-text: #333;
	--hc-text-light: #666;
	--hc-border: #e0e0e0;
	--hc-bg: #f8f9fa;
	--hc-white: #fff;
	--hc-radius: 12px;
	--hc-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--hc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
.hc-main {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--hc-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.hc-main *,
.hc-main *::before,
.hc-main *::after {
	box-sizing: border-box;
}

.hc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hc-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
			rgba(0, 0, 0, 0.72) 0%,
			rgba(0, 0, 0, 0.45) 50%,
			rgba(0, 0, 0, 0.18) 100%);
	z-index: 1;
}

.hc-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 800px;
	padding: 60px 24px;
	text-align: left;
}

/* ── Logo & Title ── */
.hc-hero__header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 16px;
}

.hc-hero__icon {
	width: 80px;
	height: 80px;
	background: var(--hc-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hc-hero__icon svg {
	width: 50px;
	height: 50px;
}

.hc-hero__titles {
	display: flex;
	flex-direction: column;
}

.hc-hero__title {
	font-size: 42px;
	font-weight: 800;
	color: var(--hc-white);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hc-hero__subtitle {
	font-size: 16px;
	font-weight: 600;
	color: var(--hc-green-light);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 4px 0 0;
}

.hc-hero__desc {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 28px;
	line-height: 1.5;
	max-width: 520px;
}

/* ── Search Bar ── */
.hc-search {
	display: flex;
	max-width: 560px;
	margin-bottom: 36px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	align-items: stretch;
}

.hc-search__icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
}

.hc-search__wrapper {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
}

.hc-search__input {
	width: 100%;
	height: 40px !important;
	padding: 16px 16px 16px 40px !important;
	border: none;
	font-size: 15px;
	color: var(--hc-text);
	outline: none;
	background: var(--hc-white);
}

.hc-search__input::placeholder {
	color: #aaa;
}

.hc-search__btn {
	height: 40px;
	padding: 0 28px;
	background: var(--hc-green);
	color: var(--hc-white);
	border: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--hc-transition);
	white-space: nowrap;
}

.hc-search__btn:hover {
	background: var(--hc-green-dark);
}

/* ── Navigation Cards ── */
.hc-nav {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hc-nav__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 18px 20px 14px;
	min-width: 100px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	cursor: pointer;
	transition: all var(--hc-transition);
	text-decoration: none;
	color: var(--hc-white);
	user-select: none;
}

.hc-nav__card:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hc-nav__card.is-active {
	background: rgba(46, 125, 50, 0.25);
	border-color: var(--hc-green-light);
	box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.hc-nav__icon {
	width: 48px;
	height: 48px;
	background: var(--hc-green);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--hc-transition);
}

.hc-nav__card:hover .hc-nav__icon {
	transform: scale(1.08);
}

.hc-nav__icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--hc-white);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hc-nav__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	white-space: nowrap;
}

/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */
.hc-content {
	background: var(--hc-bg);
	padding: 60px 0 80px;
}

.hc-content__header {
	text-align: center;
	margin-bottom: 40px;
}

.hc-content__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--hc-text);
	margin: 0 0 8px;
}

.hc-content__breadcrumb {
	font-size: 14px;
	color: var(--hc-text-light);
}

.hc-content__breadcrumb span {
	color: var(--hc-green);
	font-weight: 600;
}

/* ── Tab Panels ── */
.hc-panel {
	display: none;
	animation: hcFadeIn 0.4s ease;
}

.hc-panel.is-active {
	display: block;
}

@keyframes hcFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.hc-faq {
	max-width: 800px;
	margin: 0 auto;
}

/* ── FAQ Category Headers ── */
.hc-faq__category {
	margin-top: 32px;
	margin-bottom: 16px;
}

.hc-faq__category:first-child {
	margin-top: 0;
}

.hc-faq__category-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--hc-green-bg);
}

.hc-faq__category-icon {
	width: 36px;
	height: 36px;
	background: var(--hc-green);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hc-faq__category-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--hc-white);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hc-faq__category-header h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--hc-green-dark);
	margin: 0;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.hc-faq__item {
	background: var(--hc-white);
	border-radius: var(--hc-radius);
	margin-bottom: 12px;
	box-shadow: var(--hc-shadow);
	overflow: hidden;
	border: 1px solid transparent;
	transition: border-color var(--hc-transition);
}

.hc-faq__item:hover {
	border-color: var(--hc-green-bg);
}

.hc-faq__item.is-open {
	border-color: var(--hc-green);
}

.hc-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	cursor: pointer;
	user-select: none;
	gap: 16px;
}

.hc-faq__question h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: var(--hc-text);
	flex: 1;
}

.hc-faq__item.is-open .hc-faq__question h3 {
	color: var(--hc-green-dark);
}

.hc-faq__arrow {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--hc-green-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all var(--hc-transition);
}

.hc-faq__item.is-open .hc-faq__arrow {
	background: var(--hc-green);
	transform: rotate(180deg);
}

.hc-faq__arrow svg {
	width: 16px;
	height: 16px;
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2.5;
	transition: stroke var(--hc-transition);
}

.hc-faq__item.is-open .hc-faq__arrow svg {
	stroke: var(--hc-white);
}

.hc-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.hc-info a {
	color: var(--hc-green);
}

a.hc-returns-cta__btn {
	color: var(--hc-white);
}

.hc-faq__item.is-open .hc-faq__answer {
	max-height: 600px;
}

.hc-faq__answer-inner {
	padding: 0 24px 24px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--hc-text-light);
}

.hc-faq__answer-inner p {
	margin: 0 0 12px;
}

.hc-faq__answer-inner ul,
.hc-faq__answer-inner ol {
	margin: 8px 0 12px;
	padding-left: 24px;
}

.hc-faq__answer-inner li {
	margin-bottom: 6px;
}

.hc-faq__answer-inner strong {
	color: var(--hc-text);
}

/* ── Search results highlight ── */
.hc-faq__item.hc-search-match .hc-faq__question h3 {
	color: var(--hc-green-dark);
}

.hc-faq__item.hc-search-hidden {
	display: none;
}

.hc-search-no-results {
	text-align: center;
	padding: 40px 20px;
	color: var(--hc-text-light);
	font-size: 16px;
}

.hc-search-no-results svg {
	display: block;
	margin: 0 auto 12px;
	opacity: 0.4;
}

/* ==========================================================================
   PAGE SEARCH RESULTS — Below FAQ content
   ========================================================================== */
.hc-page-results {
	max-width: 800px;
	margin: 40px auto 0;
	animation: hcFadeIn 0.4s ease;
}

.hc-page-results__header {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--hc-green-bg);
}

.hc-page-results__header h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--hc-green-dark);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hc-page-results__card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	background: var(--hc-white);
	border-radius: var(--hc-radius);
	margin-bottom: 12px;
	box-shadow: var(--hc-shadow);
	text-decoration: none;
	color: var(--hc-text);
	border: 1px solid transparent;
	transition: all var(--hc-transition);
}

.hc-page-results__card:hover {
	border-color: var(--hc-green);
	transform: translateX(4px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.hc-page-results__icon {
	width: 44px;
	height: 44px;
	background: var(--hc-green-bg);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--hc-green);
}

.hc-page-results__body {
	flex: 1;
	min-width: 0;
}

.hc-page-results__body h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--hc-text);
	margin: 0 0 6px;
	line-height: 1.3;
}

.hc-page-results__body p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--hc-text-light);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hc-page-results__body mark {
	background: #fff9c4;
	color: var(--hc-green-dark);
	padding: 0 2px;
	border-radius: 2px;
}

.hc-page-results__arrow {
	flex-shrink: 0;
	color: #ccc;
	margin-top: 12px;
	transition: all var(--hc-transition);
}

.hc-page-results__card:hover .hc-page-results__arrow {
	color: var(--hc-green);
	transform: translateX(4px);
}

/* ==========================================================================
   INFO CARDS (Shipping, Returns, Orders)
   ========================================================================== */
.hc-info {
	max-width: 1100px;
	margin: 0 auto;
}

.hc-info__card {
	background: var(--hc-white);
	border-radius: var(--hc-radius);
	padding: 32px;
	margin-bottom: 20px;
	box-shadow: var(--hc-shadow);
}

.hc-info__card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--hc-text);
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hc-info__card h3 .hc-info__badge {
	width: 36px;
	height: 36px;
	background: var(--hc-green-bg);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hc-info__card h3 .hc-info__badge svg {
	width: 20px;
	height: 20px;
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2;
}

.hc-info__card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hc-text-light);
	margin: 0 0 12px;
}

.hc-info__card ul {
	padding-left: 20px;
	margin: 8px 0 16px;
}

.hc-info__card li {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hc-text-light);
	margin-bottom: 6px;
}

.hc-info__card li strong {
	color: var(--hc-text);
}

/* ── Table in info cards ── */
.hc-info__table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
}

.hc-info__table th {
	background: var(--hc-green-bg);
	color: var(--hc-green-dark);
	font-weight: 600;
	text-align: left;
	padding: 12px 16px;
}

.hc-info__table td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--hc-border);
	color: var(--hc-text-light);
}

.hc-info__table tr:last-child td {
	border-bottom: none;
}

/* ── Steps ── */
.hc-steps {
	display: flex;
	gap: 16px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.hc-step {
	flex: 1;
	min-width: 180px;
	background: var(--hc-bg);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	position: relative;
}

.hc-step__number {
	width: 36px;
	height: 36px;
	background: var(--hc-green);
	color: var(--hc-white);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
}

.hc-step h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 6px;
	color: var(--hc-text);
}

.hc-step p {
	font-size: 13px;
	color: var(--hc-text-light);
	margin: 0;
}

/* ==========================================================================
   RETURNS QUICK OVERVIEW
   ========================================================================== */
.hc-returns-summary {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 20px 0 24px;
}

.hc-returns-summary__col {
	background: var(--hc-bg);
	border-radius: 10px;
	padding: 20px;
	border-left: 4px solid transparent;
}

.hc-returns-summary__col--yes {
	border-left-color: var(--hc-green);
}

.hc-returns-summary__col--no {
	border-left-color: #e53935;
}

.hc-returns-summary__col h4 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hc-returns-summary__col--yes h4 {
	color: var(--hc-green-dark);
}

.hc-returns-summary__col--no h4 {
	color: #c62828;
}

.hc-returns-summary__col--yes h4 svg {
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2;
}

.hc-returns-summary__col--no h4 svg {
	stroke: #e53935;
	fill: none;
	stroke-width: 2;
}

.hc-returns-summary__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hc-returns-summary__col li {
	font-size: 13.5px;
	color: var(--hc-text-light);
	padding: 5px 0;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}

.hc-returns-summary__col--yes li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--hc-green);
	font-weight: 700;
}

.hc-returns-summary__col--no li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: #e53935;
	font-weight: 700;
}

/* ── CTA Button ── */
.hc-returns-cta {
	text-align: center;
	margin-top: 4px;
}

.hc-returns-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: var(--hc-green);
	color: var(--hc-white);
	font-size: 15px;
	font-weight: 700;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}

.hc-returns-cta__btn:hover {
	background: var(--hc-green-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
	color: var(--hc-white);
}

.hc-returns-cta__btn svg {
	stroke: var(--hc-white);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.hc-returns-cta__arrow {
	transition: transform 0.3s ease;
}

.hc-returns-cta__btn:hover .hc-returns-cta__arrow {
	transform: translateX(4px);
}

/* ── Help Card ── */
.hc-returns-help {
	background: var(--hc-green-bg) !important;
	border: 1px solid rgba(46, 125, 50, 0.15);
}

.hc-returns-help__inner {
	display: flex;
	align-items: center;
	gap: 20px;
}

.hc-returns-help__icon {
	width: 52px;
	height: 52px;
	background: var(--hc-white);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hc-returns-help__icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2;
}

.hc-returns-help__text {
	flex: 1;
}

.hc-returns-help__text h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--hc-text);
	margin: 0 0 6px;
}

.hc-returns-help__text p {
	font-size: 14px;
	color: var(--hc-text-light);
	margin: 0;
	line-height: 1.6;
}

.hc-returns-help__text a {
	color: var(--hc-green);
	font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.hc-contact {
	max-width: 800px;
	margin: 0 auto;
}

/* ── Company Info Banner ── */
.hc-contact__company {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--hc-white);
	border-radius: var(--hc-radius);
	padding: 24px 28px;
	margin-bottom: 20px;
	box-shadow: var(--hc-shadow);
	border-left: 4px solid var(--hc-green);
}

.hc-contact__company-icon {
	width: 52px;
	height: 52px;
	background: var(--hc-green-bg);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hc-contact__company-icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2;
}

.hc-contact__company-info {
	flex: 1;
	min-width: 0;
}

.hc-contact__company-info h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--hc-text);
	margin: 0 0 8px;
}

.hc-contact__company-details {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
}

.hc-contact__company-details span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	color: var(--hc-text-light);
	line-height: 1.5;
}

.hc-contact__company-details svg {
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2;
	flex-shrink: 0;
}

.hc-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 32px;
}

.hc-contact__card {
	background: var(--hc-white);
	border-radius: var(--hc-radius);
	padding: 28px;
	text-align: center;
	box-shadow: var(--hc-shadow);
	transition: all var(--hc-transition);
	text-decoration: none;
	color: var(--hc-text);
	display: block;
}

.hc-contact__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	border-color: var(--hc-green);
}

.hc-contact__card-icon {
	width: 56px;
	height: 56px;
	background: var(--hc-green-bg);
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.hc-contact__card-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--hc-green);
	fill: none;
	stroke-width: 2;
}

.hc-contact__card h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
}

.hc-contact__card p {
	font-size: 14px;
	color: var(--hc-text-light);
	margin: 0;
}

/* ── Contact Form 7 Overrides ── */
.hc-contact__form-wrap {
	background: var(--hc-white);
	border-radius: var(--hc-radius);
	padding: 36px;
	box-shadow: var(--hc-shadow);
}

.hc-contact__form-wrap h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 24px;
	text-align: center;
}

.hc-contact__form-wrap .wpcf7-form p {
	margin-bottom: 16px;
}

.hc-contact__form-wrap .wpcf7-form label {
	font-size: 14px;
	font-weight: 600;
	color: var(--hc-text);
	display: block;
	margin-bottom: 6px;
}

.hc-contact__form-wrap .wpcf7-form input[type="text"],
.hc-contact__form-wrap .wpcf7-form input[type="email"],
.hc-contact__form-wrap .wpcf7-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--hc-border);
	border-radius: 8px;
	font-size: 15px;
	transition: border-color var(--hc-transition);
	outline: none;
	font-family: inherit;
}

.hc-contact__form-wrap .wpcf7-form input:focus,
.hc-contact__form-wrap .wpcf7-form textarea:focus {
	border-color: var(--hc-green);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.hc-contact__form-wrap .wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
}

.hc-contact__form-wrap .wpcf7-form input[type="submit"],
.hc-contact__form-wrap .wpcf7-form .wpcf7-submit {
	width: 100%;
	padding: 14px 28px;
	background: var(--hc-green);
	color: var(--hc-white);
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background var(--hc-transition);
}

.hc-contact__form-wrap .wpcf7-form input[type="submit"]:hover,
.hc-contact__form-wrap .wpcf7-form .wpcf7-submit:hover {
	background: var(--hc-green-dark);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ── Tablet ── */
@media (max-width: 768px) {
	.hc-hero {
		min-height: 460px;
	}

	.hc-hero__inner {
		padding: 40px 20px;
	}

	.hc-hero__title {
		font-size: 30px;
	}

	.hc-hero__icon {
		width: 60px;
		height: 60px;
	}

	.hc-hero__icon svg {
		width: 36px;
		height: 36px;
	}

	.hc-hero__desc {
		font-size: 16px;
	}

	.hc-nav {
		gap: 10px;
	}

	.hc-nav__card {
		padding: 14px 14px 10px;
		min-width: 80px;
	}

	.hc-nav__icon {
		width: 40px;
		height: 40px;
		border-radius: 8px;
	}

	.hc-nav__icon svg {
		width: 22px;
		height: 22px;
	}

	.hc-nav__label {
		font-size: 10px;
	}

	.hc-content {
		padding: 40px 0 60px;
	}

	.hc-contact__grid {
		grid-template-columns: 1fr;
	}

	.hc-contact__company {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.hc-contact__company-details {
		justify-content: center;
	}

	.hc-info__card {
		padding: 24px;
	}

	.hc-steps {
		flex-direction: column;
	}

	.hc-returns-summary {
		grid-template-columns: 1fr;
	}

	.hc-returns-help__inner {
		flex-direction: column;
		text-align: center;
	}

	.hc-returns-cta__btn {
		width: 100%;
		justify-content: center;
	}
}

/* ── Mobile ── */
@media (max-width: 480px) {
	.hc-hero {
		min-height: 400px;
	}

	.hc-hero__inner {
		padding: 32px 16px;
		text-align: center;
	}

	.hc-hero__header {
		flex-direction: column;
		text-align: center;
	}

	.hc-hero__title {
		font-size: 24px;
		letter-spacing: 1px;
	}

	.hc-hero__subtitle {
		font-size: 13px;
		letter-spacing: 2px;
	}

	.hc-hero__desc {
		font-size: 14px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.hc-search {
		flex-direction: column;
		border-radius: 8px;
	}

	.hc-search__btn {
		border-radius: 0 0 8px 8px;
	}

	.hc-nav {
		justify-content: center;
		gap: 8px;
	}

	.hc-nav__card {
		padding: 12px 10px 8px;
		min-width: 60px;
		border-radius: 8px;
	}

	.hc-nav__icon {
		width: 36px;
		height: 36px;
	}

	.hc-nav__icon svg {
		width: 18px;
		height: 18px;
	}

	.hc-nav__label {
		font-size: 9px;
	}

	.hc-content__title {
		font-size: 22px;
	}

	.hc-faq__question {
		padding: 16px 18px;
	}

	.hc-faq__question h3 {
		font-size: 14px;
	}

	.hc-faq__answer-inner {
		padding: 0 18px 18px;
		font-size: 14px;
	}

	.hc-contact__form-wrap {
		padding: 24px 18px;
	}
}

/* ==========================================================================
   CUSTOM PAGE — WordPress Editor Content Styling
   ========================================================================== */

/* ── Contact section inside Custom Page — preserve original styles ── */
.hc-custom-content .hc-contact__card {
	text-align: center;
}

.hc-custom-content .hc-contact__card h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
	text-align: center;
	border-bottom: none;
	padding-bottom: 0;
	color: var(--hc-text);
}

.hc-custom-content .hc-contact__card p {
	font-size: 14px;
	color: var(--hc-text-light);
	margin: 0;
	text-align: center;
}

.hc-custom-content .hc-contact__card-icon {
	margin-left: auto;
	margin-right: auto;
}

.hc-custom-content .hc-contact__form-wrap h3 {
	border-bottom: none;
	padding-bottom: 0;
	color: var(--hc-text);
}

.hc-custom-content h1,
.hc-custom-content h2,
.hc-custom-content h3,
.hc-custom-content h4 {
	color: var(--hc-text);
	margin: 28px 0 12px;
	line-height: 1.3;
}

.hc-custom-content h1:first-child,
.hc-custom-content h2:first-child,
.hc-custom-content h3:first-child {
	margin-top: 0;
}

.hc-custom-content h2 {
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--hc-green-bg);
	color: var(--hc-green-dark);
}

.hc-custom-content h3 {
	font-size: 18px;
	font-weight: 600;
}

.hc-custom-content h4 {
	font-size: 16px;
	font-weight: 600;
}

.hc-custom-content p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hc-text-light);
	margin: 0 0 14px;
}

.hc-custom-content ul,
.hc-custom-content ol {
	padding-left: 20px;
	margin: 8px 0 16px;
}

.hc-custom-content li {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hc-text-light);
	margin-bottom: 6px;
}

.hc-custom-content li strong,
.hc-custom-content p strong {
	color: var(--hc-text);
}

.hc-custom-content a {
	color: var(--hc-green);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--hc-transition);
}

.hc-custom-content a:hover {
	color: var(--hc-green-dark);
	text-decoration: underline;
}

.hc-custom-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
}

.hc-custom-content table th {
	background: var(--hc-green-bg);
	color: var(--hc-green-dark);
	font-weight: 600;
	text-align: left;
	padding: 12px 16px;
}

.hc-custom-content table td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--hc-border);
	color: var(--hc-text-light);
}

.hc-custom-content table tr:last-child td {
	border-bottom: none;
}

.hc-custom-content blockquote {
	border-left: 4px solid var(--hc-green);
	background: var(--hc-green-bg);
	padding: 16px 20px;
	margin: 16px 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
}

.hc-custom-content hr {
	border: none;
	border-top: 2px solid var(--hc-border);
	margin: 28px 0;
}

.hc-custom-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 12px 0;
}