/* ==========================================================================
   CakeHeights Coupons - Modern Store & Coupon Public Stylesheet
   ========================================================================== */

:root {
	--chc-primary: #7c3aed;
	--chc-primary-dark: #6d28d9;
	--chc-primary-darker: #5b21b6;
	--chc-primary-light: #8b5cf6;
	--chc-primary-soft: #f5f3ff;
	--chc-primary-border: #ddd6fe;

	--chc-gray-50: #f8fafc;
	--chc-gray-100: #f1f5f9;
	--chc-gray-200: #e2e8f0;
	--chc-gray-300: #cbd5e1;
	--chc-gray-400: #94a3b8;
	--chc-gray-500: #64748b;
	--chc-gray-600: #475569;
	--chc-gray-700: #334155;
	--chc-gray-800: #1e293b;
	--chc-gray-900: #0f172a;

	--chc-success: #10b981;
	--chc-success-soft: #ecfdf5;
	--chc-success-border: #a7f3d0;

	--chc-pink: #ec4899;
	--chc-pink-soft: #fdf2f8;
	--chc-pink-border: #fbcfe8;

	--chc-blue: #3b82f6;
	--chc-blue-soft: #eff6ff;
	--chc-blue-border: #bfdbfe;

	--chc-cyan: #0284c7;
	--chc-cyan-soft: #f0f9ff;
	--chc-cyan-border: #bae6fd;

	--chc-radius-sm: 8px;
	--chc-radius-md: 12px;
	--chc-radius-lg: 16px;
	--chc-radius-xl: 24px;
	--chc-radius-pill: 9999px;

	--chc-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
	--chc-shadow-md: 0 4px 18px rgba(15, 23, 42, 0.04);
	--chc-shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.06);
	--chc-shadow-purple: 0 6px 20px rgba(124, 58, 237, 0.25);

	--chc-text-xs: 12px;
	--chc-text-sm: 14px;
	--chc-text-base: 16px;
	--chc-text-lg: 18px;
	--chc-text-xl: 22px;
	--chc-text-2xl: 28px;
	--chc-text-3xl: 36px;
	--chc-text-primary: #111827;
	--chc-text-secondary: #4b5563;
	--chc-text-muted: #6b7280;
}

/* Base Container */
.chc-public {
	padding: 24px 0 64px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: var(--chc-gray-800);
	background-color: #faf9fd;
	min-height: 80vh;
}

.chc-public__inner {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

/* Breadcrumbs */
.chc-breadcrumbs-wrapper,
.chc-breadcrumbs,
.chc-public .rank-math-breadcrumb,
.chc-public .rank-math-breadcrumb p,
.chc-public .cak-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	color: var(--chc-gray-500);
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.chc-breadcrumbs a,
.chc-breadcrumbs__link,
.chc-public .rank-math-breadcrumb a,
.chc-public .cak-breadcrumbs a {
	color: var(--chc-gray-600) !important;
	text-decoration: none !important;
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
	font-weight: 500;
	transition: color 0.15s ease;
}

.chc-breadcrumbs a:hover,
.chc-breadcrumbs__link:hover,
.chc-public .rank-math-breadcrumb a:hover,
.chc-public .cak-breadcrumbs a:hover {
	color: var(--chc-primary) !important;
	text-decoration: underline !important;
}

.chc-breadcrumbs__current,
.chc-public .rank-math-breadcrumb .last,
.chc-public .cak-breadcrumbs__current {
	color: var(--chc-gray-800) !important;
	font-weight: 600;
	background: transparent !important;
}

.chc-breadcrumbs__sep,
.chc-public .rank-math-breadcrumb .separator,
.chc-public .cak-breadcrumbs__sep {
	color: var(--chc-gray-400);
	margin: 0 2px;
	background: transparent !important;
}

/* Generic Panels and Grids for Archive & Category pages */
.chc-public__header,
.chc-panel,
.chc-empty-state {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: var(--chc-shadow-sm);
}

.chc-public__header h1,
.chc-panel h2,
.chc-empty-state h2 {
	margin: 0 0 10px;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--chc-gray-900);
}

.chc-public__header p,
.chc-panel p,
.chc-empty-state p {
	margin: 0;
	color: var(--chc-gray-600);
	font-size: 0.95rem;
}

.chc-coupon-grid,
.chc-category-grid,
.chc-store-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.chc-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.chc-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: var(--chc-radius-pill);
	background: var(--chc-gray-100);
	color: var(--chc-gray-700);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s ease;
}

.chc-tag:hover {
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-coupons-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px 22px;
	margin-bottom: 18px;
}

.chc-coupons-header h1 {
	margin-bottom: 6px;
}

.chc-coupons-header__copy p {
	max-width: 720px;
	line-height: 1.5;
}

.chc-coupons-header__meta {
	margin-top: 6px !important;
	color: var(--chc-gray-700) !important;
	font-size: 0.88rem !important;
	font-weight: 700;
}

.chc-coupons-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.chc-coupons-overview .chc-filter-tabs-bar {
	justify-content: flex-start;
	flex: 1 1 auto;
	margin-bottom: 0;
}

.chc-coupons-sort {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.chc-coupons-sort__submit {
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--chc-primary-border);
	border-radius: var(--chc-radius-pill);
	background: #ffffff;
	color: var(--chc-primary);
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
}

.chc-coupons-sort__submit:hover {
	background: var(--chc-primary-soft);
}

.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	justify-content: center;
}

.page-numbers a,
.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
	background: #ffffff;
	color: var(--chc-gray-800);
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
	transition: all 0.15s ease;
}

.page-numbers a:hover {
	border-color: var(--chc-primary);
	color: var(--chc-primary);
	background: var(--chc-primary-soft);
}

.page-numbers .current {
	background: var(--chc-primary);
	border-color: var(--chc-primary);
	color: #ffffff;
}

/* Secondary links */
.chc-secondary-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--chc-primary);
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
}

.chc-secondary-link:hover {
	text-decoration: underline;
}

/* ==========================================================================
   STORE HERO SECTION
   ========================================================================== */
.chc-store-hero {
	position: relative;
	background:
		radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.16), transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(244, 114, 182, 0.08), transparent 35%),
		linear-gradient(135deg, #ffffff 0%, #fbf9ff 45%, #f4efff 100%);
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: var(--chc-radius-xl);
	box-shadow: 0 12px 40px rgba(124, 58, 237, 0.04);
	padding: 36px 40px;
	margin-bottom: 24px;
	overflow: hidden;
}

.chc-store-hero__container {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
	gap: 32px;
	align-items: center;
}

.chc-store-hero__main {
	min-width: 0;
}

.chc-store-hero__identity {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

/* Logo Circle */
.chc-store-logo-wrap {
	flex: 0 0 auto;
}

.chc-store-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	overflow: hidden;
}

.chc-store-logo img,
.chc-store-logo__image {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.chc-store-logo--hero {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid #ffffff;
	box-shadow: 0 12px 28px rgba(124, 58, 237, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
	background: #ffffff;
}

.chc-store-logo--initials {
	background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
	color: #ec4899;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.chc-store-hero__copy {
	flex: 1 1 auto;
	min-width: 0;
}

.chc-store-hero__title {
	margin: 0 0 10px;
	font-size: 2.15rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--chc-gray-900);
	letter-spacing: -0.02em;
}

.chc-store-hero__summary {
	margin: 0 0 16px;
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--chc-gray-600);
	max-width: 620px;
}

.chc-store-hero__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 20px;
}

.chc-store-domain-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	border-radius: var(--chc-radius-pill);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid var(--chc-gray-200);
	color: var(--chc-gray-700);
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	box-shadow: var(--chc-shadow-sm);
	transition: all 0.15s ease;
}

.chc-store-domain-pill:hover {
	border-color: var(--chc-primary-border);
	color: var(--chc-primary);
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.chc-store-domain-pill__icon {
	color: var(--chc-primary);
	display: inline-flex;
}

.chc-store-domain-pill__arrow {
	color: var(--chc-gray-400);
	display: inline-flex;
}

/* 3 Stat Badges */
.chc-store-stats-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.chc-stat-pill {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	border-radius: var(--chc-radius-pill);
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.chc-stat-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
	flex: 0 0 32px;
}

.chc-stat-pill__info {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.chc-stat-pill__info strong {
	font-size: 1.08rem;
	font-weight: 800;
	color: var(--chc-gray-900);
}

.chc-stat-pill__info span {
	font-size: 0.76rem;
	font-weight: 500;
	color: var(--chc-gray-500);
	margin-top: 1px;
}

/* 3D Visual Scene */
.chc-store-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chc-hero-3d-scene {
	width: 100%;
	max-width: 340px;
	filter: drop-shadow(0 16px 24px rgba(124, 58, 237, 0.08));
	animation: chcHeroFloat 6s ease-in-out infinite alternate;
}

.chc-3d-store-svg {
	width: 100%;
	height: auto;
	display: block;
}

@keyframes chcHeroFloat {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-6px);
	}
}

/* ==========================================================================
   QUICK INFO STRIP (3 COLUMNS)
   ========================================================================== */
.chc-store-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 28px;
}

.chc-store-strip__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 24px;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
	transition: all 0.2s ease;
}

.chc-store-strip__item--link {
	text-decoration: none;
	cursor: pointer;
}

.chc-store-strip__item--link:hover {
	transform: translateY(-2px);
	border-color: var(--chc-primary-border);
	box-shadow: var(--chc-shadow-md);
}

.chc-store-strip__item--link:hover .chc-strip-text strong {
	color: var(--chc-primary);
}

.chc-store-strip__item--link:hover .chc-strip-icon {
	transform: scale(1.08);
	transition: transform 0.2s ease;
}

.chc-store-strip__item:hover {
	border-color: var(--chc-primary-border);
	box-shadow: var(--chc-shadow-md);
}

.chc-strip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex: 0 0 44px;
}

.chc-strip-icon--category {
	background: var(--chc-pink-soft);
	color: var(--chc-pink);
}

.chc-strip-icon--verified {
	background: var(--chc-success-soft);
	color: var(--chc-success);
}

.chc-strip-icon--updated {
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-strip-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.chc-strip-text strong {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--chc-gray-900);
	line-height: 1.2;
}

.chc-strip-text span {
	font-size: 0.82rem;
	color: var(--chc-gray-500);
	margin-top: 2px;
}

/* ==========================================================================
   2-COLUMN MAIN LAYOUT
   ========================================================================== */
.chc-store-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	align-items: start;
	margin-bottom: 32px;
}

.chc-store-main-col {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* ==========================================================================
   COUPONS SECTION & CARDS
   ========================================================================== */
.chc-store-coupons {
	background: transparent;
}

.chc-store-section-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.chc-heading-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chc-heading-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-store-section-heading h2 {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

/* Sort Dropdown */
.chc-sort-dropdown {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
}

.chc-sort-label {
	color: var(--chc-gray-500);
	font-weight: 500;
}

.chc-select-wrapper {
	position: relative;
}

.chc-sort-select {
	appearance: none;
	-webkit-appearance: none;
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-pill);
	padding: 6px 34px 6px 14px;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--chc-gray-800);
	cursor: pointer;
	outline: none;
	transition: all 0.15s ease;
}

.chc-sort-select:hover,
.chc-sort-select:focus {
	border-color: var(--chc-primary);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.chc-store-coupon-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Store Coupon Card */
.chc-coupon-card--store {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chc-coupon-card--store:hover {
	transform: translateY(-2px);
	box-shadow: var(--chc-shadow-md);
	border-color: #cbd5e1;
}

.chc-coupon-card__store-shell {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) auto;
	gap: 20px;
	align-items: center;
	padding: 20px 24px;
}

.chc-coupon-card__store-action {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex: 0 0 auto;
}

/* ==========================================================================
   UNIFIED SPLIT / PEEL COUPON BUTTON COMPONENT
   ========================================================================== */
.chc-unified-btn {
	display: inline-flex;
	align-items: stretch;
	height: 52px !important;
	border-radius: 9999px !important;
	background: #ffffff !important;
	border: 2px dashed #c4b5fd !important;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	box-shadow: 0 3px 12px rgba(124, 58, 237, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	user-select: none;
	-webkit-user-select: none;
	outline: none;
}

.chc-unified-btn:hover {
	border-color: var(--chc-primary-light);
	box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
	transform: translateY(-1px);
}

.chc-unified-btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
}

/* Left: Code Box / Peek Area */
.chc-unified-btn__code-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 20px;
	min-width: 100px;
	background: #ffffff;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--chc-primary);
	text-transform: uppercase;
	position: relative;
	transition: all 0.25s ease;
	border-right: none;
}

.chc-unified-btn__lock {
	display: inline-flex;
	align-items: center;
	color: var(--chc-gray-400);
	flex: 0 0 auto;
	transition: color 0.2s ease;
}

.chc-unified-btn:hover .chc-unified-btn__lock {
	color: var(--chc-primary);
}

/* Right: Action Button */
.chc-unified-btn__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 24px;
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: -0.01em;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.chc-unified-btn:hover .chc-unified-btn__action {
	background: linear-gradient(135deg, var(--chc-primary-light) 0%, var(--chc-primary) 100%);
}

.chc-unified-btn__icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

/* When Code is Revealed / Copied State */
.chc-unified-btn.is-revealed {
	border-color: #a855f7;
	border-style: solid;
}

.chc-unified-btn.is-revealed .chc-unified-btn__lock {
	display: none;
}

.chc-unified-btn.is-revealed .chc-unified-btn__code-box {
	background: #fdf4ff;
	color: var(--chc-primary-darker);
	min-width: 110px;
}

.chc-unified-btn.is-copied .chc-unified-btn__action {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
}

/* Deal Variant */
.chc-unified-btn--deal {
	border-color: var(--chc-success-border);
	background: var(--chc-success-soft);
}

.chc-unified-btn--deal .chc-unified-btn__code-box {
	background: var(--chc-success-soft);
	border-right-color: rgba(167, 243, 208, 0.8);
	color: var(--chc-success);
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 800;
}

.chc-unified-btn--deal .chc-unified-btn__action {
	background: linear-gradient(135deg, var(--chc-primary) 0%, var(--chc-primary-dark) 100%);
}

.chc-unified-btn--deal:hover .chc-unified-btn__action {
	background: linear-gradient(135deg, var(--chc-primary-light) 0%, var(--chc-primary) 100%);
}

/* Expired Variant */
.chc-unified-btn--expired {
	border-color: var(--chc-gray-300);
	background: var(--chc-gray-50);
	cursor: default;
	box-shadow: none;
}

.chc-unified-btn--expired:hover {
	transform: none;
	border-color: var(--chc-gray-300);
	box-shadow: none;
}

.chc-unified-btn--expired .chc-unified-btn__code-box {
	color: var(--chc-gray-400);
	background: var(--chc-gray-50);
	border-right-color: var(--chc-gray-200);
}

.chc-unified-btn--expired .chc-unified-btn__action {
	background: var(--chc-gray-200);
	color: var(--chc-gray-500);
}

/* Standard Generic Button */
.chc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border-radius: var(--chc-radius-md);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.chc-btn--primary {
	background: linear-gradient(135deg, var(--chc-primary) 0%, var(--chc-primary-dark) 100%);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(109, 40, 217, 0.25);
}

.chc-btn--primary:hover {
	background: linear-gradient(135deg, var(--chc-primary-light) 0%, var(--chc-primary) 100%);
	box-shadow: 0 6px 18px rgba(109, 40, 217, 0.35);
	transform: translateY(-1px);
	color: #ffffff;
}

.chc-btn--secondary {
	background: #ffffff;
	color: var(--chc-primary);
	border: 1px solid var(--chc-primary-border);
	min-height: 38px;
	padding: 0 14px;
	font-size: 0.84rem;
}

.chc-btn--secondary:hover {
	background: var(--chc-primary-soft);
}

.chc-btn--muted {
	background: var(--chc-gray-100);
	color: var(--chc-gray-500);
	cursor: default;
}

/* Card Bottom Meta Bar */
.chc-coupon-card__meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 24px;
	border-top: 1px solid #f8fafc;
	background: #fafbfc;
	font-size: 0.8rem;
	color: var(--chc-gray-500);
}

.chc-coupon-card__meta-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.chc-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.chc-meta-item--expiry svg {
	color: var(--chc-pink);
}

.chc-meta-item--uses {
	color: var(--chc-gray-500);
}

/* Favorite Heart Button */
.chc-fav-btn {
	background: transparent;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: var(--chc-gray-400);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s ease;
	border-radius: 50%;
}

.chc-fav-btn:hover {
	color: var(--chc-pink);
	transform: scale(1.15);
}

.chc-fav-btn.is-active {
	color: var(--chc-pink);
}

.chc-fav-btn.is-active svg {
	fill: var(--chc-pink);
}

/* View All Centered Button */
.chc-view-all-wrap {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.chc-btn-outline-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 28px;
	border-radius: var(--chc-radius-pill);
	border: 1.5px solid var(--chc-primary-border);
	background: #ffffff;
	color: var(--chc-primary);
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.chc-btn-outline-pill:hover {
	border-color: var(--chc-primary);
	background: var(--chc-primary-soft);
	color: var(--chc-primary-dark);
}

/* ==========================================================================
   RECENTLY EXPIRED OFFERS SECTION
   ========================================================================== */
.chc-store-expired {
	margin-top: 12px;
	padding: 24px;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
}

.chc-expired-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.chc-expired-heading__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-expired-heading h3 {
	margin: 0;
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--chc-gray-800);
}

.chc-expired-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.chc-expired-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: #fafbfc;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
}

.chc-expired-card__code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border: 1.5px dashed var(--chc-pink-border);
	background: var(--chc-pink-soft);
	border-radius: 6px;
	color: var(--chc-pink);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.chc-expired-card__info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.chc-expired-card__title {
	margin: 0 0 3px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--chc-gray-700);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chc-expired-card__date {
	font-size: 0.78rem;
	color: var(--chc-gray-500);
}

/* ==========================================================================
   SIDEBAR CARDS
   ========================================================================== */
.chc-store-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.chc-sidebar-card {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	padding: 24px;
	box-shadow: var(--chc-shadow-sm);
}

.chc-sidebar-title {
	margin: 0 0 14px;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

.chc-sidebar-copy {
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--chc-gray-600);
}

.chc-sidebar-copy p {
	margin: 0 0 12px;
}

/* Checklist in About */
.chc-feature-checklist {
	list-style: none;
	padding: 0;
	margin: 16px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.chc-feature-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.86rem;
	color: var(--chc-gray-700);
	font-weight: 500;
}

.chc-check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
	flex: 0 0 20px;
}

.chc-btn-visit-store {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 20px;
	border: 1.5px solid var(--chc-primary-border);
	border-radius: var(--chc-radius-md);
	background: #ffffff;
	color: var(--chc-primary);
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.chc-btn-visit-store:hover {
	background: var(--chc-primary-soft);
	border-color: var(--chc-primary);
	color: var(--chc-primary-dark);
}

.chc-btn-visit-store--compact {
	padding: 10px 16px;
	font-size: 0.85rem;
}

.chc-sidebar-about-store__cta {
	margin-top: 14px;
}

/* How to Use Steps */
.chc-howto-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.chc-howto-steps li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.chc-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--chc-primary);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 800;
	flex: 0 0 24px;
	margin-top: 1px;
}

.chc-howto-steps p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--chc-gray-700);
}

/* Similar Stores Card */
.chc-sidebar-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.chc-sidebar-card__header .chc-sidebar-title {
	margin: 0;
}

.chc-view-all-link {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--chc-primary);
	text-decoration: none;
	transition: color 0.15s ease;
}

.chc-view-all-link:hover {
	color: var(--chc-primary-dark);
	text-decoration: underline;
}

.chc-similar-stores-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.chc-similar-store-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--chc-radius-md);
	text-decoration: none;
	color: var(--chc-gray-900);
	transition: all 0.15s ease;
	background: transparent;
}

.chc-similar-store-row:hover {
	background: var(--chc-primary-soft);
	transform: translateX(3px);
}

.chc-store-logo--sm {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	padding: 3px;
}

.chc-similar-store-row__info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.chc-similar-store-row__name {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--chc-gray-900);
}

.chc-similar-store-row__count {
	font-size: 0.78rem;
	color: var(--chc-gray-500);
	margin-top: 2px;
}

.chc-similar-store-row__arrow {
	font-size: 1.3rem;
	color: var(--chc-gray-400);
	line-height: 1;
}

.chc-similar-store-row:hover .chc-similar-store-row__arrow {
	color: var(--chc-primary);
}

/* ==========================================================================
   STORE DISCOVERY
   ========================================================================== */
.chc-store-discovery {
	margin: 0 0 32px;
}

.chc-store-discovery__heading {
	margin-bottom: 18px;
}

.chc-store-discovery__heading h2 {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--chc-gray-900);
}

.chc-store-discovery__grid {
	display: grid;
	grid-template-columns: minmax(0, 660px);
}

.chc-store-discovery-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	padding: 24px;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
}

.chc-store-discovery-card__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--chc-primary);
}

.chc-store-discovery-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.chc-store-discovery-card h3 {
	margin: 0 0 8px;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--chc-gray-900);
}

.chc-store-discovery-card p {
	max-width: 520px;
	margin: 0 0 18px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--chc-gray-600);
}

.chc-store-discovery-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: auto;
	padding: 9px 16px;
	border: 1px solid var(--chc-primary-border);
	border-radius: var(--chc-radius-pill);
	background: var(--chc-primary-soft);
	color: var(--chc-primary-dark);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chc-store-discovery-card__cta:hover {
	border-color: var(--chc-primary);
	background: #ffffff;
	color: var(--chc-primary);
}

.chc-store-discovery-card__cta:focus-visible {
	outline: 3px solid rgba(124, 58, 237, 0.25);
	outline-offset: 2px;
}

/* ========================================================================== 
   BOTTOM TRUST SIGNALS STRIP (4 COLUMNS)
   ========================================================================== */
.chc-trust-signals {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 28px 32px;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
	margin-bottom: 18px;
}

.chc-trust-col {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.chc-trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
	flex: 0 0 44px;
}

.chc-trust-text {
	display: flex;
	flex-direction: column;
}

.chc-trust-text strong {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	margin-bottom: 3px;
}

.chc-trust-text p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--chc-gray-500);
}

/* ==========================================================================
   NEWSLETTER SUBSCRIPTION BANNER
   ========================================================================== */
.chc-newsletter-banner {
	background:
		radial-gradient(circle at 10% 20%, rgba(192, 132, 252, 0.2), transparent 45%),
		linear-gradient(135deg, #f8f5ff 0%, #f3eeff 100%);
	border: 1px solid var(--chc-primary-border);
	border-radius: var(--chc-radius-xl);
	padding: 32px 40px;
	box-shadow: var(--chc-shadow-sm);
	margin-bottom: 28px;
}

.chc-newsletter-banner__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.chc-newsletter-banner__left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.chc-newsletter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: var(--chc-radius-lg);
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(124, 58, 237, 0.12);
	flex: 0 0 64px;
}

.chc-newsletter-copy {
	min-width: 0;
}

.chc-newsletter-title {
	margin: 0 0 4px;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

.chc-newsletter-subtitle {
	margin: 0;
	font-size: 0.88rem;
	color: var(--chc-gray-600);
	line-height: 1.5;
}

.chc-newsletter-form {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.chc-newsletter-input {
	flex: 1 1 auto;
	height: 48px;
	padding: 0 18px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
	background: #ffffff;
	font-size: 0.92rem;
	color: var(--chc-gray-800);
	outline: none;
	transition: all 0.15s ease;
}

.chc-newsletter-input:focus {
	border-color: var(--chc-primary);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.chc-btn--subscribe {
	flex: 0 0 auto;
}

.chc-newsletter-status {
	position: absolute;
	bottom: -22px;
	left: 0;
	font-size: 0.8rem;
	color: var(--chc-success);
	font-weight: 600;
}

.chc-newsletter-status[data-state="error"],
.chc-coupon-newsletter__message[data-state="error"] {
	color: #dc2626;
}

.chc-newsletter-status[data-state="success"],
.chc-coupon-newsletter__message[data-state="success"] {
	color: var(--chc-success);
}

[data-chc-newsletter-form] button:disabled,
[data-chc-newsletter-form] input:disabled {
	cursor: not-allowed;
	opacity: 0.72;
}

/* ==========================================================================
   CATEGORY PAGE SPECIFIC STYLES
   ========================================================================== */
.chc-category-hero {
	position: relative;
	background:
		radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.16), transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(244, 114, 182, 0.08), transparent 35%),
		linear-gradient(135deg, #ffffff 0%, #fbf9ff 45%, #f4efff 100%);
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: var(--chc-radius-xl);
	box-shadow: 0 12px 40px rgba(124, 58, 237, 0.04);
	padding: 36px 40px;
	margin-bottom: 24px;
	overflow: hidden;
}

.chc-category-hero__container {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
	gap: 32px;
	align-items: center;
}

.chc-category-hero__copy {
	min-width: 0;
}

.chc-category-hero__title {
	margin: 0 0 12px;
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--chc-gray-900);
	letter-spacing: -0.02em;
}

.chc-category-hero__summary {
	margin: 0 0 20px;
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--chc-gray-600);
	max-width: 620px;
}

.chc-category-hero__badge-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.chc-category-stat-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: var(--chc-radius-pill);
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
	color: var(--chc-gray-700);
	font-size: 0.88rem;
}

.chc-category-stat-pill__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--chc-primary);
}

.chc-category-stat-pill strong {
	font-weight: 800;
	color: var(--chc-primary-dark);
}

.chc-category-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chc-category-3d-scene {
	width: 100%;
	max-width: 340px;
	filter: drop-shadow(0 16px 24px rgba(124, 58, 237, 0.08));
	animation: chcHeroFloat 6s ease-in-out infinite alternate;
}

.chc-3d-fashion-svg {
	width: 100%;
	height: auto;
	display: block;
}

/* Subcategories Grid (5 Columns) */
.chc-subcategories-section {
	margin-bottom: 28px;
}

.chc-subcategories-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.chc-subcategory-card {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	padding: 22px 16px;
	text-align: center;
	box-shadow: var(--chc-shadow-sm);
	transition: all 0.2s ease;
}

.chc-subcategory-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--chc-shadow-md);
	border-color: var(--chc-primary-border);
}

.chc-subcategory-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.chc-subcategory-card__visual {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	transition: transform 0.2s ease;
}

.chc-subcategory-card__visual--dress { background: var(--chc-pink-soft); }
.chc-subcategory-card__visual--shirt { background: var(--chc-blue-soft); }
.chc-subcategory-card__visual--shoes { background: #fff1f2; }
.chc-subcategory-card__visual--bag { background: #faf5ff; }
.chc-subcategory-card__visual--activewear { background: var(--chc-primary-soft); }
.chc-subcategory-card__visual--default { background: var(--chc-primary-soft); }

.chc-subcategory-card:hover .chc-subcategory-card__visual {
	transform: scale(1.1);
}

.chc-subcategory-card__title {
	margin: 0 0 4px;
	font-size: 0.98rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	line-height: 1.25;
}

.chc-subcategory-card__desc {
	margin: 0 0 12px;
	font-size: 0.78rem;
	color: var(--chc-gray-500);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1 1 auto;
}

.chc-subcategory-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: var(--chc-radius-pill);
	background: var(--chc-pink-soft);
	color: var(--chc-pink);
	font-size: 0.76rem;
	font-weight: 700;
	border: 1px solid var(--chc-pink-border);
}

/* Top Stores in Category Grid (5 Columns) */
.chc-top-stores-section {
	margin-bottom: 32px;
}

.chc-top-stores-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.chc-top-stores-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

.chc-top-stores-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.chc-top-store-card {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	padding: 18px 14px;
	text-align: center;
	box-shadow: var(--chc-shadow-sm);
	transition: all 0.2s ease;
}

.chc-top-store-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--chc-shadow-md);
	border-color: var(--chc-primary-border);
}

.chc-top-store-card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.chc-store-logo--top-store {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin-bottom: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chc-top-store-card__name {
	margin: 0 0 3px;
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	line-height: 1.2;
}

.chc-top-store-card__offers {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--chc-primary);
}

.chc-top-stores-single {
	max-width: 420px;
}

.chc-top-stores-single__link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	background: #ffffff;
	box-shadow: var(--chc-shadow-sm);
	color: inherit;
	text-decoration: none;
}

.chc-top-stores-single__avatar {
	display: inline-flex;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
}

.chc-top-stores-single__avatar .chc-store-logo--top-store {
	width: 48px;
	height: 48px;
	margin-bottom: 0;
}

.chc-top-stores-single__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
}

.chc-top-stores-single__body strong {
	color: var(--chc-gray-900);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.25;
}

.chc-top-stores-single__body span {
	margin-top: 2px;
	color: var(--chc-primary);
	font-size: 0.82rem;
	font-weight: 700;
}

.chc-top-stores-single__cta {
	flex: 0 0 auto;
	color: var(--chc-primary);
	font-size: 0.84rem;
	font-weight: 800;
	white-space: nowrap;
}

/* Category 2-Column Layout */
.chc-category-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	align-items: start;
	margin-bottom: 32px;
}

.chc-category-main-col {
	min-width: 0;
}

.chc-category-coupons-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.chc-category-coupons-title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

/* Filter Tabs */
.chc-filter-tabs {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.chc-filter-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: var(--chc-radius-pill);
	border: 1px solid var(--chc-gray-200);
	background: #ffffff;
	color: var(--chc-gray-700);
	font-size: 0.84rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.15s ease;
	outline: none;
}

.chc-filter-tab:hover {
	border-color: var(--chc-primary);
	color: var(--chc-primary);
}

.chc-filter-tab.is-active {
	background: var(--chc-primary);
	border-color: var(--chc-primary);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.chc-filter-tab.is-active svg {
	stroke: #ffffff;
}

/* Category Sidebar Modules */
.chc-category-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.chc-sidebar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	margin-right: 8px;
	flex: 0 0 28px;
}

.chc-sidebar-icon--purple {
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-sidebar-icon--pink {
	background: var(--chc-pink-soft);
	color: var(--chc-pink);
}

.chc-popular-filters-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.chc-filter-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 12px;
	border-radius: var(--chc-radius-md);
	border: none;
	background: transparent;
	color: var(--chc-gray-800);
	font-size: 0.88rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.15s ease;
}

.chc-filter-row:hover {
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-filter-row.is-active {
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-filter-row__meta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.chc-filter-row__count {
	font-size: 0.8rem;
	color: var(--chc-gray-400);
	font-weight: 500;
}

.chc-filter-row__arrow {
	font-size: 1.2rem;
	color: var(--chc-gray-400);
	line-height: 1;
}

.chc-filter-row:hover .chc-filter-row__arrow {
	color: var(--chc-primary);
}

/* Category Highlights */
.chc-highlights-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.chc-highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.chc-highlight-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	margin-top: 2px;
}

.chc-highlight-info strong {
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	display: block;
}

.chc-highlight-info p {
	font-size: 0.82rem;
	color: var(--chc-gray-500);
	margin: 2px 0 0;
	line-height: 1.4;
}

/* Trust Icons Variants */
.chc-trust-icon--percent { background: var(--chc-primary-soft); color: var(--chc-primary); }
.chc-trust-icon--gift { background: #faf5ff; color: #9333ea; }

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1120px) {
	.chc-subcategories-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.chc-top-stores-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1080px) {
	.chc-store-hero__container,
	.chc-category-hero__container {
		grid-template-columns: 1fr;
	}

	.chc-store-hero__visual,
	.chc-category-hero__visual {
		display: none;
	}

	.chc-store-layout,
	.chc-category-layout {
		grid-template-columns: 1fr;
	}

	.chc-trust-signals {
		grid-template-columns: repeat(2, 1fr);
	}

	.chc-newsletter-banner__content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.chc-store-hero,
	.chc-category-hero {
		padding: 24px 20px;
	}

	.chc-store-hero__identity {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.chc-store-hero__title,
	.chc-category-hero__title {
		font-size: 1.6rem;
	}

	.chc-store-hero__links {
		justify-content: center;
	}

	.chc-store-stats-pills,
	.chc-category-hero__badge-wrap {
		justify-content: center;
	}

	.chc-subcategories-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   CATEGORIES OVERVIEW PAGE SPECIFIC STYLES
   ========================================================================== */
.chc-categories-hero {
	position: relative;
	text-align: center;
	padding: 48px 140px 42px;
	margin-bottom: 32px;
	background:
		radial-gradient(circle at 50% 25%, rgba(243, 232, 255, 0.75), rgba(250, 245, 255, 0.25) 60%, transparent 85%),
		linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: var(--chc-radius-xl);
	box-shadow: 0 10px 30px rgba(124, 58, 237, 0.03);
	overflow: hidden;
	min-height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chc-categories-hero__content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 auto;
}

.chc-categories-hero__title {
	margin: 0 0 10px;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.chc-categories-hero__subtitle {
	margin: 0;
	font-size: 1.02rem;
	color: var(--chc-gray-600);
	line-height: 1.6;
}

.chc-hero-floating-element {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.chc-hero-floating-element--voucher {
	left: 36px;
	top: 50%;
	transform: translateY(-50%) rotate(-10deg);
	animation: chcHeroFloat 5s ease-in-out infinite alternate;
}

.chc-hero-floating-element--bag {
	right: 36px;
	top: 50%;
	transform: translateY(-50%);
	animation: chcHeroFloat 6s ease-in-out infinite alternate-reverse;
}

/* 5-Column Category Showcase Grid */
.chc-cat-showcase-section {
	margin-bottom: 32px;
}

.chc-cat-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.chc-cat-showcase-card {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-xl);
	padding: 24px 18px 20px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.chc-cat-showcase-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(124, 58, 237, 0.1);
	border-color: rgba(192, 132, 252, 0.6);
}

.chc-cat-showcase-card__visual-wrap {
	display: block;
	width: 100%;
	text-decoration: none;
}

.chc-cat-showcase-card__visual {
	width: 100%;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.chc-showcase-3d-svg {
	width: 100%;
	max-width: 150px;
	height: auto;
	transition: transform 0.25s ease;
}

.chc-cat-showcase-card:hover .chc-showcase-3d-svg {
	transform: scale(1.08);
}

.chc-cat-showcase-card__title {
	margin: 0 0 6px;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.chc-cat-showcase-card__title-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.chc-cat-showcase-card__title-link:hover {
	color: var(--chc-primary);
}

.chc-cat-showcase-card__desc {
	margin: 0 0 16px;
	font-size: 0.82rem;
	color: var(--chc-gray-500);
	line-height: 1.45;
	min-height: 36px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.chc-cat-showcase-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: var(--chc-radius-pill);
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.chc-badge--purple { background: #faf5ff; color: #9333ea; border: 1px solid #e9d5ff; }
.chc-badge--blue { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.chc-badge--pink { background: #fdf2f8; color: #db2777; border: 1px solid #fbcfe8; }
.chc-badge--teal { background: #f0fdfa; color: #0d9488; border: 1px solid #99f6e4; }
.chc-badge--indigo { background: #eef2ff; color: #4f46e5; border: 1px solid #c7d2fe; }

.chc-cat-showcase-card__action {
	width: 100%;
	margin-top: auto;
}

.chc-btn-cat-view {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 9px 16px;
	border-radius: var(--chc-radius-pill);
	border: 1.5px solid var(--chc-gray-200);
	background: #ffffff;
	color: var(--chc-gray-700);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}

.chc-btn--fashion:hover { border-color: #7c3aed; color: #7c3aed; background: #faf5ff; }
.chc-btn--electronics:hover { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.chc-btn--beauty:hover { border-color: #db2777; color: #db2777; background: #fdf2f8; }
.chc-btn--home:hover { border-color: #0d9488; color: #0d9488; background: #f0fdfa; }
.chc-btn--travel:hover { border-color: #4f46e5; color: #4f46e5; background: #eef2ff; }

/* 2-Column Lower Grid (Popular Stores + Trending Offers) */
.chc-categories-lower-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
}

.chc-popular-stores-box,
.chc-trending-offers-box {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-xl);
	padding: 24px 28px;
	box-shadow: var(--chc-shadow-sm);
	display: flex;
	flex-direction: column;
}

.chc-box-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.chc-box-header__left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chc-box-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	flex: 0 0 28px;
}

.chc-box-icon--star { background: var(--chc-primary-soft); color: var(--chc-primary); }
.chc-box-icon--fire { background: #fdf2f8; color: #ec4899; }

.chc-box-title {
	margin: 0;
	font-size: 1.18rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

.chc-box-link {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--chc-primary);
	text-decoration: none;
	transition: all 0.15s ease;
}

.chc-box-link:hover {
	color: var(--chc-primary-dark);
	text-decoration: underline;
}

/* Popular Stores Row */
.chc-popular-stores-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}

.chc-popular-store-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 104px;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
	text-decoration: none;
	padding: 10px 8px;
	gap: 10px;
	transition: all 0.2s ease;
}

.chc-popular-store-card:hover {
	transform: translateY(-2px);
	border-color: var(--chc-primary-border);
	box-shadow: var(--chc-shadow-md);
}

.chc-popular-store-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
}

.chc-popular-store-card__logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.chc-popular-store-card__initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--chc-primary-soft);
	border: 1px solid var(--chc-primary-border);
	color: var(--chc-primary-dark);
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
}

.chc-popular-store-card__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: var(--chc-gray-900);
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	word-break: break-word;
}

.chc-store-brand-text--amazon { color: #0f172a; font-family: system-ui, sans-serif; }
.chc-store-brand-text--flipkart { color: #2874f0; }
.chc-store-brand-text--myntra { color: #ff3f6c; }
.chc-store-brand-text--ajio { color: #2c4152; font-weight: 900; letter-spacing: 0.05em; }
.chc-store-brand-text--nykaa { color: #fc2779; font-weight: 900; font-style: italic; }

.chc-carousel-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
}

.chc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--chc-gray-200);
	transition: all 0.2s ease;
}

.chc-dot.is-active {
	background: var(--chc-primary);
	width: 22px;
	border-radius: 4px;
}

/* Trending Offers List */
.chc-trending-offers-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.chc-trending-offer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border-radius: var(--chc-radius-md);
	background: #f8fafc;
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: all 0.15s ease;
}

.chc-trending-offer-row:hover {
	background: #fbf9ff;
	border-color: var(--chc-primary-border);
}

.chc-offer-brand-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.95rem;
	color: #0f172a;
	flex: 0 0 36px;
}

.chc-offer-info {
	flex: 1 1 auto;
	min-width: 0;
}

.chc-offer-title {
	margin: 0 0 2px;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--chc-gray-900);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chc-offer-store {
	font-size: 0.78rem;
	color: var(--chc-gray-500);
}

.chc-offer-code-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	border-radius: var(--chc-radius-pill);
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
	font-size: 0.8rem;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.15s ease;
	flex: 0 0 auto;
}

.chc-offer-code-pill:hover {
	background: var(--chc-primary);
	color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1120px) {
	.chc-subcategories-grid,
	.chc-cat-showcase-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.chc-top-stores-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1080px) {
	.chc-store-hero__container,
	.chc-category-hero__container {
		grid-template-columns: 1fr;
	}

	.chc-store-hero__visual,
	.chc-category-hero__visual {
		display: none;
	}

	.chc-store-layout,
	.chc-category-layout,
	.chc-categories-lower-grid {
		grid-template-columns: 1fr;
	}

	.chc-trust-signals {
		grid-template-columns: repeat(2, 1fr);
	}

	.chc-newsletter-banner__content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.chc-store-discovery {
		margin-bottom: 28px;
	}

	.chc-store-discovery__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.chc-store-discovery-card {
		padding: 20px;
	}

	.chc-store-discovery-card__cta {
		width: 100%;
	}

	.chc-store-hero,
	.chc-category-hero,
	.chc-categories-hero {
		padding: 24px 20px;
	}

	.chc-hero-floating-element {
		display: none;
	}
}

/* ==========================================================================
   SINGLE COUPON DETAIL PAGE STYLES (Redesigned)
   ========================================================================== */

/* ---------- 2-Column Layout ---------- */
.chc-coupon-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	align-items: start;
	margin-bottom: 40px;
}

.chc-coupon-main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.chc-coupon-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ==========================================================================
   HERO 2-CARD LAYOUT — Reference Image Style
   ========================================================================== */

/* --- Shared Badges --- */
.chc-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	border-radius: var(--chc-radius-pill);
	font-size: 0.7rem;
	font-weight: 600;
	white-space: nowrap;
}

.chc-badge-pill--verified {
	background: #f0fdf4;
	color: #16a34a;
	border: 1px solid #bbf7d0;
}

.chc-badge-pill--exclusive {
	background: #fef3c7;
	color: #d97706;
	border: 1px solid #fde68a;
}

.chc-badge-pill--expired {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

/* ==========================================================================
   MAIN COUPON CARD — 2-Column Reference Layout
   ========================================================================== */

.chc-coupon-card {
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
	padding: 24px;
	margin-bottom: 20px;
}

/* --- Store Header --- */
.chc-coupon-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--chc-gray-100);
}

.chc-coupon-card__store {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chc-coupon-card__store-logo {
	display: inline-flex;
	width: 36px;
	height: 36px;
	border-radius: var(--chc-radius-sm);
	overflow: hidden;
	flex: 0 0 36px;
	border: 1px solid var(--chc-gray-200);
}

.chc-coupon-card__store-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.chc-coupon-card__store-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--chc-radius-sm);
	background: linear-gradient(135deg, var(--chc-primary), #6d28d9);
	color: #ffffff;
	font-weight: 800;
	font-size: 0.85rem;
	flex: 0 0 36px;
}

.chc-coupon-card__store-name {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--chc-gray-900);
}

.chc-coupon-card__badges {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* --- Headline Row: Title + Discount --- */
.chc-coupon-card__headline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.chc-coupon-card__headline-text {
	flex: 1 1 auto;
	min-width: 0;
}

.chc-coupon-card__title {
	margin: 0 0 4px;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.chc-coupon-card__subtitle {
	margin: 0;
	font-size: 0.9rem;
	color: var(--chc-gray-500);
	line-height: 1.55;
}

.chc-coupon-card__discount-box {
	flex: 0 0 auto;
	text-align: center;
	padding: 20px 28px;
	background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
	border: 2px dashed #86efac;
	border-radius: var(--chc-radius-lg);
	min-width: 120px;
}

.chc-coupon-card__discount-value {
	display: block;
	font-size: 2.6rem;
	font-weight: 900;
	color: #15803d;
	line-height: 1;
	letter-spacing: -0.04em;
	font-feature-settings: "tnum";
}

.chc-coupon-card__discount-unit {
	display: block;
	font-size: 0.85rem;
	font-weight: 800;
	color: #16a34a;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 4px;
}

.chc-coupon-card__discount-note {
	display: block;
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--chc-gray-500);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 6px;
}

/* --- Code Row --- */
.chc-coupon-card__code-row {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

.chc-coupon-card__code-row .chc-unified-btn {
	width: fit-content;
	max-width: 340px;
	height: 48px !important;
	border: none !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
	box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chc-coupon-card__code-row .chc-unified-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.chc-coupon-card__code-row .chc-unified-btn__code-box {
	background: rgba(255, 255, 255, 0.15) !important;
	border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
	min-width: 80px;
	padding: 0 16px;
	font-size: 0.92rem;
}

.chc-coupon-card__code-row .chc-unified-btn__lock {
	color: rgba(255, 255, 255, 0.6);
}

.chc-coupon-card__code-row .chc-unified-btn:hover .chc-unified-btn__lock {
	color: #ffffff;
}

.chc-coupon-card__code-row .chc-unified-btn__code-masked,
.chc-coupon-card__code-row .chc-unified-btn__code-full {
	color: #ffffff !important;
}

.chc-coupon-card__code-row .chc-unified-btn__action {
	background: transparent !important;
	padding: 0 20px;
	font-size: 0.88rem;
}

/* --- Meta Row --- */
.chc-coupon-card__meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 12px 0;
	border-top: 1px solid var(--chc-gray-100);
}

/* --- Disclosure --- */
.chc-coupon-card__disclosure {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 14px;
	padding: 10px 14px;
	background: #f8fafc;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-sm);
	font-size: 0.78rem;
	color: var(--chc-gray-500);
	line-height: 1.5;
}

.chc-coupon-card__disclosure svg {
	flex: 0 0 14px;
	margin-top: 1px;
	color: var(--chc-gray-400);
}

/* ---------- Single Coupon Newsletter CTA ---------- */
.chc-coupon-main > .chc-coupon-card {
	margin-bottom: 0;
}

.chc-coupon-newsletter {
	min-width: 0;
	display: grid;
	grid-template-columns: 52px minmax(190px, 1fr) minmax(300px, 1.15fr);
	align-items: center;
	gap: 20px;
	margin-bottom: 6px;
	padding: 24px;
	background:
		radial-gradient(circle at 8% 15%, rgba(196, 181, 253, 0.28), transparent 42%),
		linear-gradient(135deg, #faf7ff 0%, #f3edff 100%);
	border: 1px solid #ddd6fe;
	border-radius: 22px;
	box-shadow: 0 4px 16px rgba(76, 29, 149, 0.06);
}

.chc-coupon-page .chc-context-discovery + .chc-coupon-newsletter {
	margin-top: 12px;
}

.chc-coupon-newsletter__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--chc-primary);
	background: #ffffff;
	border: 1px solid rgba(221, 214, 254, 0.9);
	border-radius: 14px;
	box-shadow: 0 6px 16px rgba(124, 58, 237, 0.1);
}

.chc-coupon-newsletter__content {
	min-width: 0;
}

.chc-coupon-newsletter__title {
	margin: 0 0 5px;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--chc-gray-900);
}

.chc-coupon-newsletter__description {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--chc-gray-600);
}

.chc-coupon-newsletter__form {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.chc-coupon-newsletter__message {
	position: absolute;
	left: 0;
	bottom: -20px;
	font-size: 0.76rem;
	font-weight: 600;
}

.chc-coupon-newsletter__input {
	min-width: 0;
	width: 100%;
	flex: 1 1 auto;
	height: 46px;
	padding: 0 15px;
	font: inherit;
	font-size: 0.86rem;
	color: var(--chc-gray-800);
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: 10px;
	outline: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.chc-coupon-newsletter__input:focus {
	border-color: var(--chc-primary);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.chc-coupon-newsletter__input::placeholder {
	color: var(--chc-gray-400);
}

.chc-coupon-newsletter__button {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0 18px;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	white-space: nowrap;
	color: #ffffff;
	background: linear-gradient(135deg, var(--chc-primary), #6d28d9);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(109, 40, 217, 0.2);
	cursor: pointer;
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.chc-coupon-newsletter__button:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(109, 40, 217, 0.28);
}

.chc-coupon-newsletter__button:focus-visible {
	outline: 3px solid rgba(124, 58, 237, 0.28);
	outline-offset: 3px;
}

.chc-coupon-newsletter__button:active {
	transform: translateY(0);
}

/* ===================== Sidebar Deal Card ===================== */

/* ---------- Meta Row ---------- */
.chc-coupon-meta-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 12px 0;
	border-top: 1px solid var(--chc-gray-200);
}

.chc-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--chc-gray-600);
}

.chc-meta-item svg {
	color: var(--chc-gray-400);
	flex: 0 0 14px;
}

/* ---------- Disclosure ---------- */
.chc-coupon-disclosure {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 14px;
	background: #f8fafc;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-sm);
	font-size: 0.78rem;
	color: var(--chc-gray-500);
	line-height: 1.5;
}

.chc-coupon-disclosure svg {
	flex: 0 0 14px;
	margin-top: 1px;
	color: var(--chc-gray-400);
}

/* ---------- How to Use ---------- */
.chc-coupon-howto__title {
	margin: 0 0 16px !important;
	font-size: 1.1rem !important;
	font-weight: 700 !important;
}

.chc-coupon-howto__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.chc-howto-step {
	text-align: center;
	padding: 16px 10px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
	background: #fafafa;
	transition: all 0.2s ease;
}

.chc-howto-step:hover {
	background: #ffffff;
	border-color: var(--chc-primary-border);
	box-shadow: 0 2px 12px rgba(124, 58, 237, 0.06);
}

.chc-howto-step__number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--chc-primary);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.82rem;
	margin-bottom: 10px;
}

.chc-howto-step h3 {
	margin: 0 0 4px;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--chc-gray-900);
}

.chc-howto-step p {
	margin: 0;
	font-size: 0.74rem;
	color: var(--chc-gray-500);
	line-height: 1.4;
}

/* ---------- Coupon Details / Terms / More Offers ---------- */
.chc-coupon-details h2,
.chc-coupon-terms h2,
.chc-coupon-more-offers h2 {
	margin: 0 0 14px !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	color: var(--chc-gray-900) !important;
}

/* More Offers header row */
.chc-coupon-more-offers__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.chc-coupon-more-offers__header h2 {
	margin: 0 !important;
}

.chc-coupon-more-offers__view-all {
	flex: 0 0 auto;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--chc-primary);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease;
}

.chc-coupon-more-offers__view-all:hover {
	color: var(--chc-primary-dark);
	text-decoration: underline;
}

/* Contextual discovery at the end of the single-coupon content column */
.chc-coupon-page .chc-context-discovery {
	min-width: 0;
	margin: 8px 0 0;
}

.chc-context-discovery__title {
	margin: 0 0 18px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--chc-gray-900);
}

.chc-context-discovery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.chc-context-card {
	min-width: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 22px;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.chc-context-card:only-child {
	grid-column: 1 / -1;
}

.chc-context-card:hover {
	border-color: #c4b5fd;
	box-shadow: 0 8px 22px rgba(76, 29, 149, 0.1);
	transform: translateY(-2px);
}

.chc-context-card__icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	border-radius: 10px;
	color: var(--chc-primary);
	background: var(--chc-primary-soft);
}

.chc-context-card--store .chc-context-card__icon {
	color: #15803d;
	background: #f0fdf4;
}

.chc-context-card__eyebrow {
	margin-bottom: 5px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--chc-gray-500);
}

.chc-context-card__title {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 750;
	line-height: 1.3;
	color: var(--chc-gray-900);
	overflow-wrap: anywhere;
}

.chc-context-card__description {
	margin: 0 0 18px;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--chc-gray-600);
}

.chc-context-card__link {
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	margin-top: auto;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--chc-primary);
	text-decoration: none;
	overflow-wrap: anywhere;
}

.chc-context-card--store .chc-context-card__link {
	color: #15803d;
}

.chc-context-card__link:hover {
	color: var(--chc-primary-dark);
	text-decoration: underline;
}

.chc-context-card--store .chc-context-card__link:hover {
	color: #166534;
}

.chc-context-card__link:focus-visible {
	outline: 2px solid var(--chc-primary);
	outline-offset: 4px;
	border-radius: 2px;
}

.chc-coupon-page .chc-coupon-layout {
	margin-bottom: 32px;
}

/* Related Grid */
.chc-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

/* Related Card */
.chc-related-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	box-shadow: var(--chc-shadow-sm);
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chc-related-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {
	.chc-related-card:hover {
		transform: none;
		box-shadow: var(--chc-shadow-sm);
	}
}

.chc-related-card__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 18px 20px 14px;
}

.chc-related-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 12px;
}

.chc-related-card__type-pill {
	display: inline-flex;
	align-items: center;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 3px 9px;
	border-radius: var(--chc-radius-pill);
	background: var(--chc-gray-100);
	color: var(--chc-gray-600);
}

.chc-related-card__badges {
	display: flex;
	align-items: center;
	gap: 6px;
}

.chc-related-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--chc-gray-500);
}

.chc-related-card__badge--verified {
	color: var(--chc-success);
}

.chc-related-card__badge--exclusive {
	color: var(--chc-primary);
}

.chc-related-card__value {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--chc-success-dark, #15803d);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
	font-feature-settings: "tnum";
}

.chc-related-card__title {
	margin: 0 0 6px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--chc-gray-900);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.chc-related-card__title a {
	color: inherit;
	text-decoration: none;
}

.chc-related-card__title a:hover {
	color: var(--chc-primary);
}

.chc-related-card__desc {
	margin: 0 0 10px;
	font-size: 0.82rem;
	color: var(--chc-gray-500);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.chc-related-card__meta {
	margin-top: auto;
	padding-top: 10px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.chc-related-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	color: var(--chc-gray-500);
}

/* CTA area pinned to bottom of card */
.chc-related-card__cta {
	padding: 0 20px 18px;
}

.chc-related-card__cta .chc-unified-btn {
	width: 100% !important;
	height: 44px !important;
	border-radius: 8px !important;
}

.chc-related-card__cta .chc-unified-btn__code-box {
	min-width: 0;
	padding: 0 14px;
	font-size: 0.88rem;
	flex: 0 0 40%;
}

.chc-related-card__cta .chc-unified-btn__action {
	flex: 0 0 60%;
	justify-content: center;
	padding: 0 16px;
	font-size: 0.85rem;
}

.chc-related-card__cta .chc-unified-btn--deal .chc-unified-btn__code-box {
	flex: 0 0 40%;
	font-size: 0.85rem;
}

.chc-related-card__cta .chc-unified-btn--deal .chc-unified-btn__action {
	flex: 0 0 60%;
}

.chc-coupon-details__body {
	font-size: 0.9rem;
	color: var(--chc-gray-700);
	line-height: 1.65;
}

.chc-coupon-details__body p {
	margin: 0 0 10px;
}

/* Terms & Conditions */
.chc-coupon-terms__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.chc-coupon-terms__columns ul {
	margin: 0;
	padding: 0 0 0 16px;
	list-style: disc;
}

.chc-coupon-terms__columns li {
	font-size: 0.82rem;
	color: var(--chc-gray-600);
	line-height: 1.5;
	margin-bottom: 6px;
}

/* ---------- Sidebar Deal Card ---------- */
.chc-sidebar-deal-card {
	border-radius: var(--chc-radius-lg);
	overflow: hidden;
	border: 1px solid var(--chc-gray-200);
	box-shadow: var(--chc-shadow-sm);
	background: #ffffff;
}

.chc-sidebar-deal-card__banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 700;
}

.chc-sidebar-deal-card__body {
	padding: 20px 18px;
	text-align: center;
}

.chc-sidebar-deal-card__title {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--chc-gray-900);
	line-height: 1.3;
}

.chc-sidebar-deal-card__code-box {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0 16px;
	padding: 12px 20px;
	background: #ffffff;
	border: 2px dashed #86efac;
	border-radius: var(--chc-radius-md);
	width: 100%;
	justify-content: center;
}

.chc-sidebar-deal-card__lock {
	display: inline-flex;
	align-items: center;
	color: var(--chc-gray-400);
	flex: 0 0 auto;
}

.chc-sidebar-deal-card__code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1rem;
	font-weight: 800;
	color: #15803d;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.chc-sidebar-deal-card__cta {
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
}

.chc-sidebar-deal-card__cta .chc-unified-btn {
	width: fit-content;
	height: 46px !important;
	border: none !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, #ec4899 0%, #db2777 100%) !important;
	box-shadow: 0 2px 8px rgba(236, 72, 153, 0.25);
}

.chc-sidebar-deal-card__cta .chc-unified-btn:hover {
	box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
	transform: translateY(-1px);
}

.chc-sidebar-deal-card__cta .chc-unified-btn__code-box {
	display: none !important;
}

.chc-sidebar-deal-card__cta .chc-unified-btn__action {
	background: transparent !important;
	padding: 0 20px;
	font-size: 0.9rem;
	border-radius: 10px;
}

.chc-sidebar-deal-card__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin: 0;
	font-size: 0.72rem;
	color: var(--chc-gray-500);
}

/* ---------- Sidebar About Store ---------- */
.chc-sidebar-about-store h3 {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--chc-gray-900);
}

.chc-sidebar-about-store__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--chc-gray-200);
}

.chc-sidebar-about-store__logo {
	width: 44px;
	height: 44px;
	border-radius: var(--chc-radius-sm);
	overflow: hidden;
	flex: 0 0 44px;
	border: 1px solid var(--chc-gray-200);
	background: var(--chc-gray-100);
}

.chc-sidebar-about-store__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.chc-sidebar-about-store__avatar {
	width: 44px;
	height: 44px;
	border-radius: var(--chc-radius-sm);
	background: linear-gradient(135deg, var(--chc-primary), #6d28d9);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1rem;
	flex: 0 0 44px;
}

.chc-sidebar-about-store__meta strong {
	font-size: 0.92rem;
	color: var(--chc-gray-900);
}

.chc-sidebar-about-store__desc {
	font-size: 0.82rem;
	color: var(--chc-gray-600);
	line-height: 1.5;
	margin: 0 0 10px;
}

.chc-sidebar-about-store__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--chc-primary);
	text-decoration: none;
	transition: color 0.15s ease;
}

.chc-sidebar-about-store__link:hover {
	color: #6d28d9;
	text-decoration: underline;
}

/* ---------- Sidebar Confidence ---------- */
.chc-sidebar-confidence h3 {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--chc-gray-900);
}

.chc-confidence-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.chc-confidence-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	font-size: 0.84rem;
	font-weight: 500;
	color: var(--chc-gray-700);
	border-bottom: 1px solid var(--chc-gray-100);
}

.chc-confidence-list li:last-child {
	border-bottom: none;
}

.chc-confidence-list svg {
	flex: 0 0 16px;
}

.chc-sidebar-confidence__footer {
	margin: 12px 0 0;
	font-size: 0.76rem;
	color: var(--chc-gray-500);
}

.chc-sidebar-confidence__footer a {
	color: var(--chc-primary);
	font-weight: 600;
	text-decoration: none;
}

.chc-sidebar-confidence__footer a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE - SINGLE COUPON HERO
   ========================================================================== */
@media (max-width: 1080px) {
	.chc-coupon-layout {
		grid-template-columns: 1fr;
	}

	.chc-coupon-sidebar {
		position: static;
		order: 2;
	}

	.chc-coupon-main {
		order: 1;
	}
}

@media (max-width: 900px) {
	.chc-coupon-newsletter {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.chc-coupon-newsletter__form {
		grid-column: 1 / -1;
	}

	.chc-coupon-card__headline {
		flex-direction: column;
		gap: 14px;
	}

	.chc-coupon-card__discount-box {
		text-align: center;
		flex: none;
		width: 100%;
	}

	.chc-coupon-howto__steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.chc-coupon-terms__columns {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.chc-coupon-newsletter {
		gap: 16px;
		padding: 20px;
	}

	.chc-coupon-newsletter__form {
		flex-direction: column;
		align-items: stretch;
	}

	.chc-coupon-newsletter__input,
	.chc-coupon-newsletter__button {
		width: 100%;
	}

	.chc-context-discovery__grid {
		grid-template-columns: 1fr;
	}

	.chc-context-card:only-child {
		grid-column: auto;
	}

	.chc-coupon-card__title {
		font-size: 1.25rem;
	}

	.chc-coupon-card__discount-box {
		padding: 18px 24px;
	}

	.chc-coupon-card__discount-value {
		font-size: 2.2rem;
	}

	.chc-coupon-howto__steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.chc-coupon-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.chc-related-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.chc-related-card__value {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.chc-coupon-newsletter {
		grid-template-columns: 44px minmax(0, 1fr);
		padding: 18px;
		border-radius: 18px;
	}

	.chc-coupon-newsletter__icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.chc-coupon-newsletter__title {
		font-size: 1.05rem;
	}

	.chc-context-card {
		padding: 19px 18px;
	}

	.chc-coupon-card {
		padding: 18px 16px;
	}

	.chc-coupon-card__title {
		font-size: 1.15rem;
	}

	.chc-coupon-card__discount-box {
		padding: 16px 20px;
	}

	.chc-coupon-card__discount-value {
		font-size: 2rem;
	}

	.chc-coupon-card__code-row .chc-unified-btn {
		height: 46px !important;
		max-width: 100%;
	}

	.chc-coupon-howto__steps {
		grid-template-columns: 1fr;
	}

	.chc-coupon-grid {
		grid-template-columns: 1fr;
	}

	.chc-related-grid {
		grid-template-columns: 1fr;
	}

	.chc-related-card__value {
		font-size: 1.2rem;
	}

	.chc-related-card__cta .chc-unified-btn {
		height: 42px !important;
	}

	.chc-coupon-more-offers__header {
		flex-wrap: wrap;
		gap: 6px;
	}

	.chc-coupon-more-offers__view-all {
		font-size: 0.78rem;
	}

	.chc-coupon-card__meta {
		gap: 12px;
	}
}
/* ==========================================================================
   STORES OVERVIEW PAGE SPECIFIC STYLES (Top Stores Hero + Redesign)
   ========================================================================== */

/* ── Unified Hero Wrapper ──────────────────────────────────────────────── */
.chc-top-stores-hero {
	position: relative;
	isolation: isolate;
	padding: 36px 44px 32px;
	margin-bottom: 24px;
	background:
		radial-gradient(ellipse at 15% 45%, rgba(196, 181, 253, 0.22) 0%, transparent 50%),
		radial-gradient(ellipse at 85% 45%, rgba(167, 139, 250, 0.18) 0%, transparent 50%),
		radial-gradient(circle at 50% 25%, rgba(237, 233, 254, 0.6), transparent 65%),
		linear-gradient(180deg, #ffffff 0%, #faf8ff 35%, #f5f0ff 70%, #ede9fe 100%);
	border: 1px solid rgba(226, 232, 240, 0.6);
	border-radius: var(--chc-radius-xl);
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.04);
	overflow: hidden;
}

.chc-top-stores-hero,
.chc-top-stores-hero *,
.chc-top-stores-hero *::before,
.chc-top-stores-hero *::after {
	box-sizing: border-box;
}

/* ── Decorative SVGs ────────────────────────────────────────────────────── */
.chc-hero-decor {
	position: absolute;
	top: 44px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.72;
}

.chc-hero-decor svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.chc-hero-decor--left {
	left: 16px;
	width: 120px;
	transform: rotate(-5deg);
}

.chc-hero-decor--right {
	top: 38px;
	right: 16px;
	width: 138px;
}

/* ── Inner wrapper: header + cards ──────────────────────────────────────── */
.chc-top-stores-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	min-width: 0;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.chc-top-stores-hero__header {
	text-align: center;
	margin-bottom: 24px;
}

.chc-top-stores-hero__title {
	margin: 0 0 8px;
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.chc-top-stores-hero__subtitle {
	margin: 0 auto;
	font-size: 1.02rem;
	color: var(--chc-gray-600);
	line-height: 1.6;
	max-width: 480px;
}

/* ── Cards grid (inside hero) ──────────────────────────────────────────── */
.chc-top-stores-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	align-items: stretch;
}

/* ── Store card (unchanged content) ────────────────────────────────────── */
.chc-store-showcase-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	padding: 24px 14px 0;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	box-shadow: var(--chc-shadow-sm);
	overflow: hidden;
}

.chc-store-showcase-card:hover {
	box-shadow: var(--chc-shadow-md);
	transform: translateY(-3px);
}

.chc-store-showcase-card__logo {
	margin-bottom: 12px;
}

.chc-store-showcase-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	font-weight: 800;
	color: #ffffff;
}

.chc-store-showcase-avatar-img-wrap {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
}

.chc-store-showcase-card__name {
	margin: 0 0 4px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--chc-gray-900);
	line-height: 1.2;
}

.chc-store-showcase-card__desc {
	margin: 0 0 10px;
	font-size: 0.8rem;
	color: var(--chc-gray-500);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.chc-store-showcase-card__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-bottom: 14px;
}

.chc-store-showcase-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--chc-gray-500);
}

.chc-store-showcase-header__link:hover svg {
	transform: translateX(3px);
}

.chc-store-showcase-card:focus-visible {
	outline: 2px solid var(--chc-primary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.chc-store-showcase-card {
		transition: box-shadow 0.15s ease, border-color 0.15s ease;
	}
	.chc-store-showcase-card:hover {
		transform: none;
	}
}

.chc-store-showcase-card__logo {
	margin-bottom: 14px;
}

.chc-store-showcase-avatar {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 900;
	transition: transform 0.2s ease;
}

.chc-store-showcase-avatar-img-wrap {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #ffffff;
	border: 1.5px solid var(--chc-gray-200);
	padding: 4px;
	transition: transform 0.2s ease;
}

.chc-store-showcase-avatar-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.chc-store-showcase-card:hover .chc-store-showcase-avatar,
.chc-store-showcase-card:hover .chc-store-showcase-avatar-img-wrap {
	transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
	.chc-store-showcase-card:hover .chc-store-showcase-avatar,
	.chc-store-showcase-card:hover .chc-store-showcase-avatar-img-wrap {
		transform: none;
	}
}

.chc-store-color--pink { background: #fdf2f8; color: #db2777; border: 1.5px solid #fbcfe8; }
.chc-store-color--blue { background: #eff6ff; color: #2563eb; border: 1.5px solid #bfdbfe; }
.chc-store-color--rose { background: #fff1f2; color: #e11d48; border: 1.5px solid #fecdd3; }
.chc-store-color--teal { background: #f0fdfa; color: #0d9488; border: 1.5px solid #99f6e4; }
.chc-store-color--indigo { background: #eef2ff; color: #4f46e5; border: 1.5px solid #c7d2fe; }

.chc-store-showcase-card__name {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
}

.chc-store-showcase-card__desc {
	margin: 0 0 12px;
	font-size: 0.78rem;
	color: var(--chc-gray-500);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.34em;
}

.chc-store-showcase-card__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	width: 100%;
}

.chc-store-cat-pill {
	display: inline-flex;
	align-items: center;
	padding: 3px 12px;
	border-radius: var(--chc-radius-pill);
	font-size: 0.72rem;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.chc-store-cat-pill:hover {
	opacity: 0.85;
}

.chc-cat-pill--pink { background: #fdf2f8; color: #db2777; border: 1px solid #fbcfe8; }
.chc-cat-pill--blue { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.chc-cat-pill--rose { background: #fff1f2; color: #e11d48; border: 1px solid #fecdd3; }
.chc-cat-pill--teal { background: #f0fdfa; color: #0d9488; border: 1px solid #99f6e4; }
.chc-cat-pill--indigo { background: #eef2ff; color: #4f46e5; border: 1px solid #c7d2fe; }

.chc-store-showcase-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 10px;
	border-radius: var(--chc-radius-pill);
	background: #faf5ff;
	color: #7c3aed;
	border: 1px solid #ede9fe;
	font-size: 0.72rem;
	font-weight: 700;
}

.chc-store-showcase-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	gap: 6px;
	width: 100%;
	padding: 12px 18px;
	margin-top: auto;
	margin-left: 0;
	background: var(--chc-primary-soft);
	color: var(--chc-primary-dark);
	font-size: 0.84rem;
	font-weight: 700;
	border-top: 1px solid var(--chc-gray-200);
	transition: background 0.15s ease, color 0.15s ease;
}

.chc-store-showcase-card:hover .chc-store-showcase-card__cta {
	background: var(--chc-primary);
	color: #ffffff;
	border-top-color: var(--chc-primary);
}

/* 2-Column Highlights Grid (Popular Categories 10-Grid + Top Deals) */
.chc-stores-highlights-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.chc-popular-categories-card,
.chc-top-deals-card {
	background: #ffffff !important;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-xl);
	padding: 24px 26px;
	box-shadow: var(--chc-shadow-sm);
	display: flex;
	flex-direction: column;
}

.chc-box-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	gap: 12px;
}

.chc-box-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	letter-spacing: -0.01em;
}

.chc-box-link {
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--chc-primary);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease;
}

.chc-box-link:hover {
	color: #6d28d9;
}

.chc-pop-cat-10grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 12px;
}

.chc-pop-cat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 14px 8px;
	background: #f8fafc;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: var(--chc-radius-md);
	text-decoration: none;
	text-align: center;
	transition: all 0.2s ease;
}

.chc-pop-cat-item:hover {
	background: #faf5ff;
	border-color: var(--chc-primary-border);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

.chc-pop-cat-icon {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chc-pop-cat-name {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	line-height: 1.2;
	margin-bottom: 2px;
}

.chc-pop-cat-count {
	font-size: 0.7rem;
	font-weight: 600;
	color: #9333ea;
}

/* Top Deals This Week List */
.chc-top-deals-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.chc-top-deal-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--chc-radius-md);
	background: #f8fafc;
	border: 1px solid rgba(226, 232, 240, 0.9);
	transition: all 0.15s ease;
}

.chc-top-deal-row:hover {
	background: #fbf9ff;
	border-color: var(--chc-primary-border);
}

.chc-deal-brand-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.9rem;
	flex: 0 0 36px;
}

.chc-deal-info {
	flex: 1 1 auto;
	min-width: 0;
}

.chc-deal-title {
	margin: 0 0 2px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--chc-gray-900);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chc-deal-store {
	font-size: 0.76rem;
	color: var(--chc-gray-500);
}

.chc-deal-code-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 12px;
	border-radius: var(--chc-radius-pill);
	border: 1.5px solid #ddd6fe;
	background: #ffffff;
	color: var(--chc-primary);
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.15s ease;
	flex: 0 0 auto;
}

.chc-deal-code-btn:hover {
	background: var(--chc-primary);
	border-color: var(--chc-primary);
	color: #ffffff;
}

/* ==========================================================================
   LATEST COUPONS & DEALS LOWER SECTION (Image 16_15_17 (2))
   ========================================================================== */
.chc-latest-coupons-section {
	margin-bottom: 32px;
}

.chc-latest-coupons-hero {
	text-align: center;
	margin-bottom: 24px;
	padding: 36px 20px 20px;
	background: radial-gradient(circle at 50% 10%, rgba(243, 232, 255, 0.6), transparent 70%);
	border-radius: var(--chc-radius-xl);
}

.chc-latest-coupons-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--chc-gray-900);
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}

.chc-latest-coupons-subtitle {
	font-size: 0.98rem;
	color: var(--chc-gray-600);
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.5;
}

.chc-filter-tabs-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.chc-filter-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	border-radius: var(--chc-radius-pill);
	border: 1.5px solid var(--chc-gray-200);
	background: #ffffff;
	color: var(--chc-gray-700);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.15s ease;
	outline: none;
}

.chc-filter-tab-btn:focus-visible {
	outline: 2px solid var(--chc-primary);
	outline-offset: 2px;
}

.chc-filter-tab-btn:hover {
	border-color: var(--chc-primary-border);
	color: var(--chc-primary);
	background: #faf5ff;
}

.chc-filter-tab-btn.is-active {
	background: var(--chc-primary) !important;
	border-color: var(--chc-primary) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
}

.chc-filter-tab-btn.is-active svg {
	stroke: #ffffff;
	fill: #ffffff;
}

.chc-store-coupon-list--full {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 28px;
}

.chc-store .chc-store-coupon-list,
.chc-stores-page .chc-store-coupon-list {
	gap: 12px;
}

.chc-store .chc-store-coupon-list > .chc-coupon-card--store,
.chc-stores-page .chc-store-coupon-list > .chc-coupon-card--store {
	padding: 0;
	margin-bottom: 0;
}

.chc-store .chc-store-coupon-list .chc-coupon-card__store-shell,
.chc-stores-page .chc-store-coupon-list .chc-coupon-card__store-shell {
	padding: 14px 20px;
}

.chc-store .chc-store-coupon-list .chc-coupon-card__meta-bar,
.chc-stores-page .chc-store-coupon-list .chc-coupon-card__meta-bar {
	padding: 8px 20px;
}

.chc-coupons-pagination-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 36px;
}

.chc-pagination-summary {
	font-size: 0.84rem;
	color: var(--chc-gray-500);
	font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1120px) {
	.chc-subcategories-grid,
	.chc-cat-showcase-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.chc-top-stores-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.chc-store-hero__container,
	.chc-category-hero__container,
	.chc-stores-hero__container {
		grid-template-columns: 1fr;
	}

	.chc-store-hero__visual,
	.chc-category-hero__visual,
	.chc-stores-hero__visual {
		display: none;
	}

	.chc-top-stores-hero {
		padding: 32px 28px 28px;
	}

	.chc-hero-decor {
		top: 28px;
		opacity: 0.4;
	}

	.chc-hero-decor--left {
		left: 8px;
		transform: rotate(-5deg) scale(0.78);
		transform-origin: top left;
	}

	.chc-hero-decor--right {
		right: 8px;
		transform: scale(0.78);
		transform-origin: top right;
	}

	.chc-top-stores-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.chc-store-layout,
	.chc-category-layout,
	.chc-categories-lower-grid {
		grid-template-columns: 1fr;
	}

	.chc-trust-signals {
		grid-template-columns: repeat(2, 1fr);
	}

	.chc-newsletter-banner__content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 900px) {
	.chc-stores-highlights-grid {
		grid-template-columns: 1fr;
	}

	.chc-top-stores-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.chc-coupons-header {
		gap: 14px;
		padding: 18px 16px;
		margin-bottom: 14px;
	}

	.chc-coupons-controls {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.chc-coupons-overview .chc-filter-tabs-bar {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
		-webkit-overflow-scrolling: touch;
	}

	.chc-coupons-overview .chc-filter-tab-btn {
		flex: 0 0 auto;
		padding: 8px 14px;
		white-space: nowrap;
	}

	.chc-coupons-sort {
		justify-content: flex-start;
		width: 100%;
	}

	.chc-coupons-sort .chc-sort-select {
		flex: 1 1 auto;
		min-width: 0;
	}

	.chc-store-hero,
	.chc-category-hero,
	.chc-categories-hero,
	.chc-top-stores-hero {
		padding: 24px 18px 20px;
	}

	.chc-hero-floating-element,
	.chc-hero-decor {
		display: none;
	}

	.chc-top-stores-hero__title {
		font-size: 1.7rem;
	}

	.chc-top-stores-hero__subtitle {
		font-size: 0.92rem;
	}

	.chc-top-stores-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.chc-store-hero__identity {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.chc-store-hero__title,
	.chc-category-hero__title,
	.chc-categories-hero__title,
	.chc-top-stores-hero__title,
	.chc-latest-coupons-title {
		font-size: 1.6rem;
	}

	.chc-store-hero__links {
		justify-content: center;
	}

	.chc-store-stats-pills,
	.chc-category-hero__badge-wrap {
		justify-content: center;
	}

	.chc-store-showcase-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.chc-store-showcase-card {
		padding: 20px 14px 0;
	}

	.chc-store-showcase-card__cta {
		width: 100%;
		margin-left: 0;
	}

	.chc-subcategories-grid,
	.chc-cat-showcase-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.chc-pop-cat-10grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.chc-top-stores-grid,
	.chc-popular-stores-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.chc-store-strip {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.chc-coupon-card__store-shell {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 18px;
		text-align: center;
	}

	.chc-coupon-card__store-brand {
		justify-content: center;
	}

	.chc-coupon-card__store-topline {
		justify-content: center;
	}

	.chc-coupon-card__store-action {
		justify-content: center;
	}

	.chc-unified-btn {
		width: 100%;
		max-width: 100%;
	}

	.chc-btn {
		width: 100%;
	}

	.chc-expired-grid {
		grid-template-columns: 1fr;
	}

	.chc-trust-signals {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.chc-newsletter-banner {
		padding: 24px 20px;
	}

	.chc-newsletter-banner__left {
		flex-direction: column;
		text-align: center;
	}

	.chc-newsletter-form {
		flex-direction: column;
	}

	.chc-newsletter-input {
		width: 100%;
	}

	.chc-btn--subscribe {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.chc-top-stores-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.chc-store-showcase-card {
		padding: 22px 18px 0;
	}

	.chc-store-showcase-card__cta {
		width: 100%;
		margin-left: 0;
	}

	.chc-store-showcase-header__title {
		font-size: 1.3rem;
	}

	.chc-top-stores-hero__title {
		font-size: 1.5rem;
	}
}

/* ==========================================================================
   AJAX LOADING STATE + SCREEN READER ONLY
   ========================================================================== */
.chc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

#chc-latest-coupons.chc-is-loading {
	pointer-events: none;
}

#chc-latest-coupons.chc-is-loading .chc-store-coupon-list--full,
#chc-latest-coupons.chc-is-loading .chc-coupons-pagination-wrap {
	opacity: 0.55;
	transition: opacity 0.2s ease;
}

#chc-latest-coupons.chc-is-loading .chc-store-coupon-list--full::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: 1;
}

/* ========================================================================== 
   Reusable coupon reveal modal
   ========================================================================== */
body.chc-modal-open {
	overflow: hidden;
}

.ch-coupon-modal[hidden],
.ch-coupon-modal__content[hidden],
.ch-coupon-modal__merchant[hidden] {
	display: none !important;
}

.ch-coupon-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.ch-coupon-modal *,
.ch-coupon-modal *::before,
.ch-coupon-modal *::after {
	box-sizing: border-box;
}

.ch-coupon-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.68);
	backdrop-filter: blur(3px);
}

.ch-coupon-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 540px);
	max-height: calc(100dvh - 32px);
	overflow-y: auto;
	padding: 34px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-xl);
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.3);
	color: var(--chc-gray-800);
}

.ch-coupon-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--chc-gray-600);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.ch-coupon-modal__close:hover {
	background: var(--chc-gray-100);
	color: var(--chc-gray-900);
}

.ch-coupon-modal__store {
	min-height: 1.25em;
	padding-right: 40px;
	color: var(--chc-primary);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ch-coupon-modal__title {
	margin: 8px 40px 24px 0;
	color: var(--chc-gray-900);
	font-size: clamp(1.35rem, 4vw, 1.8rem);
	line-height: 1.25;
}

.ch-coupon-modal__label {
	max-width: 100%;
	margin: 0 auto 16px;
	color: var(--chc-gray-700);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
}

.ch-coupon-modal__code-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.ch-coupon-modal__code {
	width: 100%;
	min-width: 0;
	height: 52px;
	padding: 0 16px;
	border: 2px dashed var(--chc-primary-border);
	border-radius: var(--chc-radius-md);
	background: var(--chc-primary-soft);
	color: var(--chc-primary-darker);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: clamp(1rem, 5vw, 1.25rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-align: center;
}

.ch-coupon-modal__copy,
.ch-coupon-modal__merchant {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: var(--chc-radius-md);
	font-weight: 750;
	text-decoration: none !important;
	cursor: pointer;
}

.ch-coupon-modal__copy {
	padding: 0 20px;
	background: linear-gradient(135deg, var(--chc-primary) 0%, var(--chc-primary-dark) 100%);
	color: #fff;
}

.ch-coupon-modal__copy:hover {
	background: linear-gradient(135deg, var(--chc-primary-light) 0%, var(--chc-primary) 100%);
}

.ch-coupon-modal__copied {
	min-height: 24px;
	padding-top: 6px;
	color: var(--chc-success);
	font-size: 0.88rem;
	font-weight: 700;
}

.ch-coupon-modal__merchant {
	width: 100%;
	margin-top: 14px;
	padding: 12px 18px;
	border: 1px solid var(--chc-primary-border);
	background: #fff;
	color: var(--chc-primary-darker) !important;
}

.ch-coupon-modal__merchant:hover {
	background: var(--chc-primary-soft);
}

.ch-coupon-modal__status {
	color: var(--chc-gray-600);
	font-size: 0.98rem;
	line-height: 1.55;
}

.ch-coupon-modal :focus-visible {
	outline: 3px solid rgba(124, 58, 237, 0.38);
	outline-offset: 3px;
}

@media (max-width: 480px) {
	.ch-coupon-modal {
		align-items: flex-end;
		padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
	}

	.ch-coupon-modal__dialog {
		max-height: calc(100dvh - 20px);
		padding: 28px 20px 22px;
		border-radius: 20px;
	}

	.ch-coupon-modal__title {
		margin-bottom: 20px;
	}

	.ch-coupon-modal__code-row {
		grid-template-columns: 1fr;
	}

	.ch-coupon-modal__copy {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.ch-coupon-modal__label {
		font-size: 0.94rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ch-coupon-modal *,
	.ch-coupon-modal *::before,
	.ch-coupon-modal *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

/* Store detail conversion refinements */
.chc-stat-pill__icon--clock {
	background: var(--chc-primary-soft);
	color: var(--chc-primary);
}

.chc-store-hero__coupon-cta {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 40px;
	padding: 9px 16px;
	border-radius: var(--chc-radius-pill);
	background: var(--chc-primary);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(124, 58, 237, 0.16);
}

.chc-store-hero__coupon-cta:hover {
	background: var(--chc-primary-dark);
	color: #ffffff;
}

.chc-store-hero__coupon-cta:focus-visible {
	outline: 3px solid rgba(124, 58, 237, 0.32);
	outline-offset: 3px;
}

.chc-store-coupons {
	scroll-margin-top: 96px;
}

@media (min-width: 769px) and (max-width: 1080px) {
	.chc-store-hero__container {
		grid-template-columns: minmax(0, 1.25fr) minmax(220px, 280px);
		gap: 24px;
	}

	.chc-store-hero__visual {
		display: flex;
	}

	.chc-hero-3d-scene {
		max-width: 260px;
	}
}

@media (max-width: 768px) {
	.chc-store-hero {
		padding: 16px 14px;
		margin-bottom: 14px;
		border-radius: 18px;
	}

	.chc-store-hero__container {
		display: block;
	}

	.chc-store-hero__visual {
		display: none !important;
	}

	.chc-store-hero__identity {
		gap: 10px;
	}

	.chc-store-logo--hero {
		width: 64px;
		height: 64px;
		border-width: 2px;
		box-shadow: 0 8px 18px rgba(124, 58, 237, 0.1), 0 1px 4px rgba(0, 0, 0, 0.04);
	}

	.chc-store-logo--initials {
		font-size: 1.35rem;
	}

	.chc-store-hero__copy {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.chc-store-hero__title {
		margin: 0;
		font-size: 1.28rem;
		line-height: 1.15;
		letter-spacing: 0;
	}

	.chc-store-hero__name,
	.chc-store-hero__title-suffix {
		display: block;
	}

	.chc-store-hero__title-suffix {
		margin-top: 2px;
		color: var(--chc-gray-700);
		font-size: 0.92rem;
		font-weight: 750;
	}

	.chc-store-stats-pills {
		order: 2;
		justify-content: center;
		gap: 0;
		width: 100%;
		margin-top: 8px;
		color: var(--chc-gray-600);
		font-size: 0.78rem;
		line-height: 1.35;
	}

	.chc-stat-pill {
		display: inline-flex;
		gap: 0;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
		color: inherit;
	}

	.chc-stat-pill:not(:last-child)::after {
		content: "·";
		margin: 0 6px;
		color: var(--chc-gray-400);
	}

	.chc-stat-pill__icon {
		display: none;
	}

	.chc-stat-pill__info {
		display: inline;
		line-height: inherit;
	}

	.chc-stat-pill__info strong,
	.chc-stat-pill__info span {
		display: inline;
		margin: 0;
		color: inherit;
		font-size: inherit;
		line-height: inherit;
	}

	.chc-stat-pill__info strong {
		font-weight: 800;
	}

	.chc-stat-pill__info strong + span {
		margin-left: 3px;
	}

	.chc-stat-pill--trust .chc-stat-pill__info span,
	.chc-stat-pill--updated .chc-stat-pill__info span {
		display: none;
	}

	.chc-store-hero__summary {
		display: -webkit-box;
		order: 3;
		max-width: 100%;
		margin: 8px 0 0;
		overflow: hidden;
		color: var(--chc-gray-600);
		font-size: 0.86rem;
		line-height: 1.35;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.chc-store-hero__links {
		display: none;
	}

	.chc-store-hero__coupon-cta {
		display: inline-flex;
		order: 4;
		margin-top: 12px;
	}

	.chc-store-layout {
		gap: 14px;
		margin-bottom: 24px;
	}

	.chc-store-main-col {
		display: contents;
	}

	.chc-store-coupons {
		order: 1;
		scroll-margin-top: 72px;
	}

	.chc-store-sidebar {
		order: 2;
		gap: 14px;
	}

	.chc-store-expired {
		order: 3;
	}

	.chc-store-section-heading {
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 12px;
	}

	.chc-heading-left {
		gap: 8px;
	}

	.chc-heading-icon {
		width: 28px;
		height: 28px;
	}

	.chc-store-section-heading h2 {
		font-size: 1.25rem;
		line-height: 1.2;
	}

	.chc-sidebar-card {
		padding: 18px;
	}
}

@media (max-width: 430px) {
	.chc-store-hero {
		padding: 14px 12px;
		margin-bottom: 12px;
	}

	.chc-store-logo--hero {
		width: 56px;
		height: 56px;
	}

	.chc-store-hero__title {
		font-size: 1.18rem;
	}

	.chc-store-hero__title-suffix {
		font-size: 0.88rem;
	}

	.chc-store-stats-pills {
		font-size: 0.75rem;
	}
}

/* Mobile coupon CTA polish */
@media (max-width: 768px) {
	.chc-coupon-card__store-action,
	.chc-coupon-card__actions,
	.chc-coupon-card__code-row,
	.chc-related-card__cta {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.chc-coupon-card__store-action {
		margin-top: 2px;
	}

	.chc-coupon-card__code-row {
		margin-bottom: 12px;
	}

	.chc-related-card__cta {
		padding: 0 14px 16px;
	}

	.chc-unified-btn,
	.chc-coupon-card__code-row .chc-unified-btn,
	.chc-related-card__cta .chc-unified-btn {
		display: inline-flex;
		align-items: stretch;
		flex-wrap: nowrap;
		width: min(100%, 292px) !important;
		max-width: 100%;
		height: 44px !important;
		min-height: 44px;
		border-radius: var(--chc-radius-pill) !important;
		overflow: hidden;
		box-sizing: border-box;
	}

	.chc-unified-btn__code-box,
	.chc-coupon-card__code-row .chc-unified-btn__code-box,
	.chc-related-card__cta .chc-unified-btn__code-box,
	.chc-related-card__cta .chc-unified-btn--deal .chc-unified-btn__code-box {
		flex: 1 1 auto;
		min-width: 0;
		padding: 0 12px;
		overflow: hidden;
		white-space: nowrap;
		box-sizing: border-box;
	}

	.chc-unified-btn__action,
	.chc-coupon-card__code-row .chc-unified-btn__action,
	.chc-related-card__cta .chc-unified-btn__action,
	.chc-related-card__cta .chc-unified-btn--deal .chc-unified-btn__action {
		flex: 0 0 auto;
		min-width: 104px;
		padding: 0 14px;
		white-space: nowrap;
		box-sizing: border-box;
	}

	.chc-unified-btn__code-masked,
	.chc-unified-btn__code-full,
	.chc-unified-btn__deal-text,
	.chc-unified-btn__label {
		display: inline-block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.chc-unified-btn__code-masked,
	.chc-unified-btn__code-full,
	.chc-unified-btn__deal-text {
		line-height: 1;
	}

	.chc-coupon-card__store-shell {
		row-gap: 14px;
	}
}

@media (max-width: 480px) {
	.chc-unified-btn,
	.chc-coupon-card__code-row .chc-unified-btn,
	.chc-related-card__cta .chc-unified-btn {
		width: min(100%, 276px) !important;
		height: 42px !important;
		min-height: 42px;
	}

	.chc-unified-btn__code-box,
	.chc-coupon-card__code-row .chc-unified-btn__code-box,
	.chc-related-card__cta .chc-unified-btn__code-box,
	.chc-related-card__cta .chc-unified-btn--deal .chc-unified-btn__code-box {
		gap: 5px;
		padding: 0 10px;
		font-size: 0.82rem;
	}

	.chc-unified-btn__action,
	.chc-coupon-card__code-row .chc-unified-btn__action,
	.chc-related-card__cta .chc-unified-btn__action,
	.chc-related-card__cta .chc-unified-btn--deal .chc-unified-btn__action {
		min-width: 96px;
		padding: 0 12px;
		font-size: 0.84rem;
	}

	.chc-unified-btn__icon {
		display: none;
	}

	.chc-related-card__cta {
		padding-right: 12px;
		padding-left: 12px;
	}
}

/* Store editorial review */
.chc-store-review {
	margin: 0 0 32px;
	padding: 28px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-lg);
	background: #ffffff;
	box-shadow: var(--chc-shadow-sm);
	overflow-wrap: anywhere;
}

.chc-store-review__header {
	margin-bottom: 18px;
}

.chc-store-review__header h2,
.chc-store-review__content h2 {
	margin: 0 0 14px;
	color: var(--chc-gray-900);
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.25;
}

.chc-store-review__content h2:not(:first-child) {
	margin-top: 26px;
}

.chc-store-review__content h3 {
	margin: 22px 0 10px;
	color: var(--chc-gray-900);
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.3;
}

.chc-store-review__content p,
.chc-store-review__content li,
.chc-store-review__content blockquote {
	color: var(--chc-gray-700);
	font-size: 0.94rem;
	line-height: 1.72;
}

.chc-store-review__content p {
	margin: 0 0 14px;
}

.chc-store-review__content ul,
.chc-store-review__content ol {
	margin: 0 0 16px 22px;
	padding: 0;
}

.chc-store-review__content a {
	color: var(--chc-primary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.chc-store-review__content blockquote {
	margin: 18px 0;
	padding: 14px 18px;
	border-left: 4px solid var(--chc-primary-border);
	background: var(--chc-primary-soft);
}

.chc-review-intro {
	margin: 0 0 22px;
	padding: 18px 20px;
	border-left: 4px solid var(--chc-primary);
	border-radius: var(--chc-radius-md);
	background: var(--chc-primary-soft);
}

.chc-review-intro p:last-child,
.chc-review-verdict__content p:last-child {
	margin-bottom: 0;
}

.chc-review-pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 22px 0;
}

.chc-review-pros-cons--plain {
	display: block;
	padding: 18px 20px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
	background: var(--chc-gray-50);
}

.chc-review-pros,
.chc-review-cons {
	padding: 18px;
	border: 1px solid var(--chc-gray-200);
	border-radius: var(--chc-radius-md);
	background: #ffffff;
}

.chc-review-pros h3,
.chc-review-cons h3,
.chc-review-verdict h3 {
	margin: 0;
}

.chc-review-pros ul,
.chc-review-cons ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 14px 0 0;
	list-style: none;
}

.chc-review-pros li,
.chc-review-cons li {
	position: relative;
	padding-left: 24px;
	line-height: 1.5;
}

.chc-review-pros li::before,
.chc-review-cons li::before {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 900;
}

.chc-review-pros li::before {
	content: "\2713";
	color: var(--chc-success);
}

.chc-review-cons li::before {
	content: "\2013";
	color: var(--chc-gray-500);
}

.chc-review-verdict {
	margin: 24px 0 0;
	padding: 20px;
	border: 1px solid var(--chc-primary-border);
	border-radius: var(--chc-radius-lg);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.chc-review-verdict__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 12px;
}

.chc-review-verdict__rating {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 5px 12px;
	border-radius: var(--chc-radius-pill);
	background: var(--chc-primary);
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 800;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.chc-store-review {
		margin-bottom: 24px;
		padding: 22px 18px;
	}

	.chc-store-review__header h2,
	.chc-store-review__content h2 {
		font-size: 1.25rem;
	}

	.chc-store-review__content h3 {
		font-size: 1.05rem;
	}

	.chc-store-review__content p,
	.chc-store-review__content li,
	.chc-store-review__content blockquote {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.chc-review-pros-cons {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.chc-review-verdict__header {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.chc-store-review {
		padding: 20px 16px;
	}

	.chc-review-intro,
	.chc-review-pros,
	.chc-review-cons,
	.chc-review-verdict,
	.chc-review-pros-cons--plain {
		padding: 16px;
	}
}

/* ==========================================================================
   Public typography refinement layer
   ========================================================================== */
.chc-public {
	color: var(--chc-text-secondary);
	font-size: var(--chc-text-base);
	line-height: 1.55;
}

.chc-public h1,
.chc-public h2,
.chc-public h3,
.chc-public h4 {
	color: var(--chc-text-primary);
}

/* H1 — Store / Category / Page Hero */
.chc-store-hero__title,
.chc-category-hero__title,
.chc-categories-hero__title,
.chc-top-stores-hero__title,
.chc-public__header h1,
.chc-coupons-header h1 {
	font-size: clamp(32px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--chc-text-primary);
}

/* Hero short description */
.chc-store-hero__summary,
.chc-category-hero__summary,
.chc-categories-hero__subtitle,
.chc-top-stores-hero__subtitle,
.chc-coupons-header__copy p {
	color: var(--chc-text-secondary);
	font-size: var(--chc-text-base);
	line-height: 1.62;
}

/* H2 — Main section headings */
.chc-store-section-heading h2,
.chc-category-coupons-title,
.chc-latest-coupons-title,
.chc-panel h2,
.chc-empty-state h2,
.chc-coupon-more-offers__header h2,
.chc-context-discovery__title {
	color: var(--chc-text-primary);
	font-size: var(--chc-text-2xl);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* Review H2 — slightly smaller than section headings */
.chc-store-review__header h2,
.chc-store-review__content h2 {
	color: var(--chc-text-primary);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* Review H2 spacing */
.chc-store-review__content h2:not(:first-child) {
	margin-top: 34px;
}

.chc-store-review__header h2,
.chc-store-review__content h2 {
	margin-bottom: 14px;
}

/* H3 — Subsections */
.chc-store-review__content h3,
.chc-review-pros h3,
.chc-review-cons h3,
.chc-review-verdict h3,
.chc-sidebar-title,
.chc-sidebar-about-store h3,
.chc-sidebar-confidence h3,
.chc-sidebar-deal-card__title,
.chc-howto-step h3,
.chc-context-card__title {
	color: #1f2937;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.chc-store-review__content h3 {
	margin: 26px 0 12px;
}

/* Long-form review body */
.chc-store-review__content p,
.chc-store-review__content li,
.chc-store-review__content blockquote,
.chc-review-intro p,
.chc-review-verdict__content p {
	color: var(--chc-text-secondary);
	font-size: var(--chc-text-base);
	line-height: 1.72;
}

.chc-store-review__content p {
	margin: 0 0 18px;
}

.chc-store-review__content ul,
.chc-store-review__content ol {
	margin-bottom: 18px;
}

/* Pros / Cons list */
.chc-review-pros li,
.chc-review-cons li {
	color: var(--chc-text-secondary);
	font-size: var(--chc-text-base);
	line-height: 1.62;
}

/* Verdict rating badge */
.chc-review-verdict__rating {
	font-size: var(--chc-text-sm);
	font-weight: 700;
}

/* Coupon card title */
.chc-coupon-card__title,
.chc-coupon-card__title a {
	color: var(--chc-text-primary);
	font-size: var(--chc-text-xl);
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: -0.01em;
}

h1.chc-coupon-card__title {
	font-size: clamp(32px, 3vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

/* Related / expired card titles */
.chc-related-card__title,
.chc-related-card__title a,
.chc-expired-card__title {
	color: var(--chc-text-primary);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
}

/* Coupon descriptions & panel copy */
.chc-coupon-card__summary,
.chc-coupon-card__subtitle,
.chc-related-card__desc,
.chc-context-card__description,
.chc-panel p,
.chc-empty-state p {
	color: var(--chc-text-secondary);
	font-size: 15px;
	line-height: 1.58;
}

/* Coupon meta / timestamps / badges */
.chc-meta-item,
.chc-coupon-card__meta-bar,
.chc-related-card__meta-item,
.chc-coupon-card__expiry,
.chc-pagination-summary,
.chc-stat-pill__info span,
.chc-filter-row__count,
.chc-sidebar-deal-card__note,
.chc-sidebar-confidence__footer {
	color: var(--chc-text-muted);
	font-size: var(--chc-text-xs);
	font-weight: 600;
	line-height: 1.45;
}

/* Eyebrows / small labels / badges */
.chc-type-pill,
.chc-badge-pill,
.chc-flag,
.chc-related-card__type-pill,
.chc-related-card__badge,
.chc-context-card__eyebrow,
.chc-coupon-card__discount-note,
.chc-coupon-card__discount-unit {
	font-size: var(--chc-text-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
}

/* Button text normalization */
.chc-unified-btn__action,
.chc-coupon-card__code-row .chc-unified-btn__action,
.chc-related-card__cta .chc-unified-btn__action,
.chc-sidebar-deal-card__cta .chc-unified-btn__action,
.chc-btn,
.chc-btn-outline-pill,
.chc-btn-visit-store,
.chc-coupons-sort__submit {
	font-size: var(--chc-text-sm);
	font-weight: 700;
	letter-spacing: 0;
}

/* Sidebar body copy */
.chc-sidebar-copy,
.chc-sidebar-copy p,
.chc-sidebar-about-store__desc,
.chc-howto-steps p,
.chc-confidence-list li,
.chc-feature-checklist li,
.chc-filter-row,
.chc-store-domain-pill {
	color: var(--chc-text-secondary);
	font-size: 15px;
	line-height: 1.62;
}

/* Sidebar titles */
.chc-sidebar-title,
.chc-sidebar-about-store h3,
.chc-sidebar-confidence h3 {
	font-size: 20px;
	font-weight: 700;
}

/* ==========================================================================
   Mobile typography (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
	/* H1 mobile: 26-30px */
	.chc-store-hero__title,
	.chc-category-hero__title,
	.chc-categories-hero__title,
	.chc-top-stores-hero__title,
	.chc-public__header h1,
	.chc-coupons-header h1 {
		font-size: clamp(26px, 7vw, 30px);
		line-height: 1.15;
		letter-spacing: -0.01em;
	}

	/* Hero description mobile */
	.chc-store-hero__summary,
	.chc-category-hero__summary,
	.chc-categories-hero__subtitle,
	.chc-top-stores-hero__subtitle,
	.chc-coupons-header__copy p {
		font-size: var(--chc-text-base);
		line-height: 1.6;
	}

	/* H2 mobile: 21-24px */
	.chc-store-section-heading h2,
	.chc-category-coupons-title,
	.chc-latest-coupons-title,
	.chc-panel h2,
	.chc-empty-state h2,
	.chc-coupon-more-offers__header h2,
	.chc-context-discovery__title {
		font-size: clamp(21px, 5.5vw, 24px);
		line-height: 1.25;
	}

	/* Review H2 mobile: 20-22px */
	.chc-store-review__header h2,
	.chc-store-review__content h2 {
		font-size: clamp(20px, 5.5vw, 22px);
		line-height: 1.25;
	}

	/* H3 mobile: 18-19px */
	.chc-store-review__content h3,
	.chc-review-pros h3,
	.chc-review-cons h3,
	.chc-review-verdict h3,
	.chc-sidebar-title,
	.chc-sidebar-about-store h3,
	.chc-sidebar-confidence h3,
	.chc-sidebar-deal-card__title,
	.chc-howto-step h3,
	.chc-context-card__title {
		font-size: 19px;
		line-height: 1.35;
	}

	/* Review body mobile: 16px minimum */
	.chc-store-review__content p,
	.chc-store-review__content li,
	.chc-store-review__content blockquote,
	.chc-review-intro p,
	.chc-review-verdict__content p,
	.chc-review-pros li,
	.chc-review-cons li {
		font-size: var(--chc-text-base);
		line-height: 1.68;
	}

	/* Coupon title mobile */
	.chc-coupon-card__title,
	.chc-coupon-card__title a {
		font-size: 18px;
		line-height: 1.3;
	}

	h1.chc-coupon-card__title {
		font-size: clamp(26px, 7vw, 30px);
	}

	.chc-coupon-howto__title {
		font-size: 21px !important;
		line-height: 1.25 !important;
	}

	/* Description / sidebar mobile */
	.chc-coupon-card__summary,
	.chc-coupon-card__subtitle,
	.chc-related-card__desc,
	.chc-context-card__description,
	.chc-panel p,
	.chc-empty-state p,
	.chc-sidebar-copy,
	.chc-sidebar-copy p,
	.chc-sidebar-about-store__desc,
	.chc-howto-steps p,
	.chc-confidence-list li {
		font-size: 15px;
		line-height: 1.6;
	}

	/* Meta mobile: 12-13px */
	.chc-meta-item,
	.chc-coupon-card__meta-bar,
	.chc-related-card__meta-item,
	.chc-coupon-card__expiry,
	.chc-pagination-summary {
		font-size: 12px;
		line-height: 1.45;
	}
}
