:root {
	--di-ink: #12192b;
	--di-muted: #5b6472;
	--di-line: #e6e9ef;
	--di-panel: #ffffff;
	--di-primary: #1d4ed8;
	--di-primary-dark: #1638a8;
	--di-navy: #0b1730;
	--di-teal: #0f8a8a;
	--di-gold: #e0a72a;
	--di-radius: 10px;
	--di-radius-lg: 18px;
	--di-shadow: 0 10px 28px rgba(11, 23, 48, 0.09);
	--di-shadow-hover: 0 16px 38px rgba(11, 23, 48, 0.13);
	--di-icon-a: #1d4ed8;
	--di-icon-b: #7aa2f7;
	font-synthesis-weight: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	margin: 0;
	background: #f7f8f6;
	color: var(--di-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #237a3b; }
img { max-width: 100%; height: auto; border-radius: var(--di-radius); }
.article-card img, .coupon-card img, .deal-card img, .store-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: rgba(255,255,255,0.6);
}
/* Guide featured images are usually a merchant's square/round logo mark
   (inherited from the store when no dedicated guide image exists), not a
   landscape photo — object-fit:cover crops those badly, cutting off round
   or diamond-shaped logos. Show the full mark, letterboxed on white. */
.article-card--logo img {
	object-fit: contain;
	padding: 22px;
	background: #fff;
}
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.readable { max-width: 780px; }
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--di-line);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; }
.brand-shell { flex: 0 0 auto; display: flex; align-items: center; }
.brand-shell .custom-logo-link { display: flex; align-items: center; }
.brand-shell .custom-logo { width: auto; max-width: 220px; max-height: 54px; object-fit: contain; }
.brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--di-primary);
	color: #fff;
	box-shadow: none;
}
.primary-nav ul, .site-footer ul { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; }
.primary-nav a { display: inline-flex; align-items: center; gap: 8px; color: var(--di-muted); font-weight: 750; font-size: 0.9rem; }
.menu-favicon { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid #cfe2df; border-radius: 7px; background: #e2f4f2; color: #0e6f78; }
.menu-favicon svg { width: 16px; height: 16px; }
.primary-nav li:nth-child(2n) .menu-favicon, .mobile-nav li:nth-child(2n) .menu-favicon { border-color: #e5d7eb; background: #f2e7f6; color: #7a3e87; }
.primary-nav li:nth-child(3n) .menu-favicon, .mobile-nav li:nth-child(3n) .menu-favicon { border-color: #f2d9cb; background: #fff0e8; color: #a34b2a; }
.primary-nav li:nth-child(4n) .menu-favicon, .mobile-nav li:nth-child(4n) .menu-favicon { border-color: #cfe2d3; background: #e7f3e9; color: #205f31; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: rgba(255,255,255,0.72); border: 1px solid var(--di-line); }
.menu-toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--di-ink); }
.mobile-nav { border-top: 1px solid var(--di-line); background: rgba(251,252,247,0.96); }
.mobile-nav ul { list-style: none; padding: 10px 16px 18px; margin: 0; display: grid; gap: 8px; }
.mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--di-radius); background: rgba(255,255,255,0.72); font-weight: 800; }
.button, button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: var(--di-radius);
	padding: 0.8rem 1rem;
	font-weight: 800;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
	touch-action: manipulation;
}
.button-primary {
	position: relative;
	background: linear-gradient(160deg, var(--di-primary), var(--di-primary-dark));
	color: #fff;
	box-shadow: 0 12px 26px color-mix(in srgb, var(--di-primary) 28%, transparent), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -3px 6px rgba(0,0,0,0.16);
	overflow: hidden;
}
.button-primary::after {
	content: "";
	position: absolute;
	inset: 1px 1px auto 1px;
	height: 42%;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0));
	pointer-events: none;
}
.button-primary:hover { color: #fff; background: linear-gradient(160deg, color-mix(in srgb, var(--di-primary) 80%, white), var(--di-primary-dark)); transform: translateY(-2px); box-shadow: 0 16px 30px color-mix(in srgb, var(--di-primary) 32%, transparent), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -3px 6px rgba(0,0,0,0.16); }
.button-primary:active { transform: translateY(0); box-shadow: 0 6px 14px color-mix(in srgb, var(--di-primary) 24%, transparent), inset 0 2px 6px rgba(0,0,0,0.22); }
.button-ghost { background: rgba(255,255,255,0.62); border: 1px solid var(--di-line); }
.hero, .page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 8vw, 112px) 0;
}
.hero-grid, .store-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 44px; align-items: center; }
.eyebrow, .section-heading span {
	display: inline-flex;
	width: fit-content;
	border: 1px solid var(--di-line);
	background: rgba(255,255,255,0.68);
	border-radius: 999px;
	padding: 0.26rem 0.72rem;
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
	color: #31545a;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0 0 0.65rem; }
h1 { font-size: 5rem; max-width: 980px; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.18rem; }
.hero p, .page-hero p, .section-heading p { color: var(--di-muted); font-size: 1.08rem; max-width: 690px; }
.hero-search {
	display: flex;
	gap: 10px;
	width: min(620px, 100%);
	padding: 8px;
	background: rgba(255,255,255,0.74);
	border: 1px solid var(--di-line);
	border-radius: calc(var(--di-radius) + 6px);
	box-shadow: var(--di-shadow);
}
.hero-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 0 0.8rem;
	font: inherit;
	outline: 0;
}
.home-variant { padding: clamp(64px, 9vw, 124px) 0 clamp(48px, 7vw, 88px); }
.home-variant h1 { font-size: 3.6rem; }
.home-variant .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.home-variant-magazine { background: #f8f5ef; }
.home-variant-directory { background: #eef5f4; }
.home-discovery-hero {
	padding: clamp(46px, 7vw, 78px) 0 clamp(34px, 5vw, 56px);
	background: #e9f4e7;
	border-bottom: 1px solid var(--di-line);
}
.home-discovery-shell { display: grid; justify-items: center; text-align: center; }
.home-discovery-shell h1 { max-width: 780px; margin-top: 12px; font-size: 4.2rem; }
.home-discovery-shell p { max-width: 680px; margin: 0 auto 22px; }
.home-discovery-search { width: min(720px, 100%); background: #fff; }
.home-hero-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 16px; }
.home-hero-links a { color: #205f31; font-size: 0.88rem; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.home-category-band { padding: 28px 0 8px; background: rgba(255,255,255,0.55); }
.home-category-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.home-category-heading h2 { margin: 0; font-size: 1.35rem; }
.home-category-heading a { color: #0e6f78; font-weight: 850; white-space: nowrap; }
.home-category-rail { display: grid; grid-template-columns: repeat(8, minmax(88px, 1fr)); gap: 10px; overflow-x: auto; padding: 6px 2px 18px; scroll-snap-type: x proximity; }
.home-category-rail a { min-width: 88px; display: grid; justify-items: center; gap: 10px; padding: 16px 8px; border: 1px solid var(--di-line); border-radius: var(--di-radius-lg); background: linear-gradient(180deg, #fff, #fbfdfa); scroll-snap-align: start; box-shadow: 0 10px 24px rgba(23,32,42,0.06); }
.home-category-rail b { font-size: 0.82rem; line-height: 1.2; text-align: center; }
.home-quick-boxes { padding: 20px 0 12px; }
.home-quick-box-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.home-quick-box {
	position: relative;
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 10px;
	min-height: 208px;
	padding: 22px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius-lg);
	background: linear-gradient(160deg, #fff 0%, #fbfdfa 62%, #f3faf3 100%);
	box-shadow: 0 14px 32px rgba(23,32,42,0.07);
	overflow: hidden;
}
.home-quick-box::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--di-icon-a), var(--di-icon-b));
	opacity: 0.9;
}
.home-quick-box:nth-child(2) { --di-icon-a: #7a3e87; --di-icon-b: #c58fd6; }
.home-quick-box:nth-child(3) { --di-icon-a: #a34b2a; --di-icon-b: #f0a56f; }
.home-quick-box:nth-child(4) { --di-icon-a: #205f31; --di-icon-b: #7fd08d; }
.home-quick-box strong { font-size: 1.15rem; }
.home-quick-box p { margin: 0; color: var(--di-muted); font-size: 0.9rem; }
.home-quick-box > b { color: #205f31; font-size: 0.82rem; }
.home-discovery-section { padding: clamp(34px, 5vw, 58px) 0; }
.home-discovery-section + .home-discovery-section { border-top: 1px solid rgba(23,32,42,0.08); }
.home-nearby-band { padding: 42px 0; border-block: 1px solid var(--di-line); background: #eef5f4; }
.home-nearby-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr); gap: 40px; align-items: center; }
.home-nearby-layout h2 { margin-top: 8px; font-size: 2.1rem; }
.home-nearby-layout p { margin: 0; max-width: 620px; color: var(--di-muted); }
.home-nearby-search { display: grid; gap: 7px; }
.home-nearby-search > label { font-size: 0.78rem; font-weight: 850; }
.home-nearby-search > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; border: 1px solid #cfd5cf; border-radius: var(--di-radius); overflow: hidden; background: #fff; }
.home-nearby-search input { min-width: 0; min-height: 46px; padding: 0 13px; border: 0; font: inherit; }
.home-nearby-search button { border-radius: 0; }
.home-nearby-search > a { width: fit-content; color: #237a3b; font-size: 0.8rem; font-weight: 800; }
.home-directory-cta-section { padding: 16px 0 clamp(42px, 7vw, 72px); }
.home-directory-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(22px, 4vw, 34px); border: 1px solid var(--di-line); border-radius: var(--di-radius); background: #fff; box-shadow: 0 12px 38px rgba(23,32,42,0.08); }
.home-directory-cta h2 { margin: 8px 0 4px; font-size: 2.1rem; }
.home-directory-cta p { margin: 0; color: var(--di-muted); }
.home-directory-cta .button { flex: 0 0 auto; }
.directory-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.directory-stats span { border: 1px solid var(--di-line); border-radius: var(--di-radius); background: rgba(255,255,255,.74); padding: 14px; color: var(--di-muted); }
.directory-stats strong { display: block; color: var(--di-ink); font-size: 28px; line-height: 1; margin-bottom: 5px; }
.elementor-full-width-page { min-height: 50vh; }
.elementor-full-width-page > .elementor,
.elementor-canvas-page .elementor { width: 100%; }
.floating-coupons { min-height: 380px; position: relative; perspective: 900px; }
.floating-coupons span {
	position: absolute;
	display: inline-flex;
	align-items: center;
	min-height: 76px;
	padding: 0 1.2rem;
	border-radius: var(--di-radius);
	background: var(--di-panel);
	border: 1px solid rgba(255,255,255,0.72);
	backdrop-filter: blur(16px);
	box-shadow: var(--di-shadow);
	font-weight: 900;
	animation: floaty 8s ease-in-out infinite;
	will-change: transform;
}
.floating-coupons span:nth-child(1) { left: 10%; top: 10%; background: rgba(184,242,99,0.72); }
.floating-coupons span:nth-child(2) { right: 8%; top: 18%; animation-delay: -2s; }
.floating-coupons span:nth-child(3) { left: 24%; bottom: 28%; background: rgba(255,209,102,0.72); animation-delay: -4s; }
.floating-coupons span:nth-child(4) { right: 18%; bottom: 10%; background: rgba(82,215,232,0.72); animation-delay: -1s; }
.floating-coupons span:nth-child(5) { left: 0; bottom: 4%; background: rgba(255,111,97,0.74); animation-delay: -5s; }
@keyframes floaty { 0%,100% { transform: translate3d(0,0,0) rotate(-2deg); } 50% { transform: translate3d(8px,-16px,32px) rotate(3deg); } }
.content-section { padding: clamp(44px, 7vw, 86px) 0; }
.section-heading { display: grid; gap: 8px; margin-bottom: 24px; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.content-grid, .content-slider, .home-category-rail, .home-quick-box-grid { perspective: 1200px; }
.authority-hub-section { padding-top: 18px; }
.authority-hub {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 18px;
	align-items: stretch;
}
.authority-feature, .authority-list article, .research-lane, .metric-tile {
	border: 1px solid rgba(255,255,255,0.72);
	border-radius: var(--di-radius);
	background: rgba(255,255,255,0.78);
	box-shadow: 0 12px 40px rgba(23,32,42,0.08);
}
.authority-feature {
	min-height: 360px;
	display: grid;
	align-content: end;
	gap: 14px;
	padding: clamp(22px, 4vw, 38px);
	background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(184,242,99,0.18));
}
.authority-feature h3 { font-size: 2.8rem; max-width: 760px; }
.authority-feature p { max-width: 720px; color: var(--di-muted); font-size: 1.05rem; }
.authority-feature .button { width: fit-content; }
.authority-list { display: grid; gap: 12px; }
.authority-list article { padding: 18px; }
.authority-list span {
	display: inline-flex;
	margin-bottom: 8px;
	color: #0e6f78;
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}
.authority-list p { color: var(--di-muted); margin-bottom: 0; }
.research-lanes-section { padding-top: 0; padding-bottom: 28px; }
.research-lanes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.research-lane { display: grid; gap: 8px; min-height: 150px; padding: 18px; }
.research-lane span { font-size: 1.05rem; font-weight: 900; }
.research-lane p { margin: 0; color: var(--di-muted); font-size: 0.94rem; }
.live-feed-panel-section { padding-top: 0; padding-bottom: 18px; }
.live-feed-panel {
	display: grid;
	gap: 10px;
	padding: clamp(18px, 4vw, 30px);
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(82,215,232,0.14));
	box-shadow: 0 12px 40px rgba(23,32,42,0.08);
}
.live-feed-panel h2 { margin: 0; font-size: 2rem; }
.live-feed-panel p { margin: 0; max-width: 820px; color: var(--di-muted); }
.trust-metrics-band { padding: 28px 0; }
.trust-metrics-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(145px, 0.6fr));
	gap: 12px;
	align-items: stretch;
}
.trust-metrics-grid > div:first-child {
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 22px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: rgba(255,255,255,0.62);
}
.trust-metrics-grid h2 { font-size: 2.1rem; margin: 0; }
.metric-tile { display: grid; align-content: center; gap: 4px; min-height: 124px; padding: 18px; }
.metric-tile strong { font-size: 1.8rem; line-height: 1; }
.metric-tile span { color: var(--di-muted); font-weight: 750; }
.top-brands-section { padding-top: clamp(28px, 4vw, 46px); padding-bottom: 8px; }
.categories-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.category-card {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 26px 16px;
	text-align: center;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius-lg);
	background: linear-gradient(180deg, #fff, #fbfdfa);
	box-shadow: 0 12px 28px rgba(23,32,42,0.07);
}
.category-card strong { font-size: 1.02rem; }
.category-card .pill { font-size: 0.72rem; }
.category-tile {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: 26px 16px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius-lg);
	background: linear-gradient(180deg, #fff, #fbfdfa);
	box-shadow: 0 12px 28px rgba(23,32,42,0.07);
}
.category-tile-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--cat-accent, #5f5f5f) 16%, #fff);
	font-size: 1.9rem;
	line-height: 1;
}
.category-tile strong { font-size: 1.02rem; }
.category-tile .pill { font-size: 0.72rem; color: var(--cat-accent, #5f5f5f); font-weight: 800; }
.category-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	border: 1px solid var(--di-line);
	background: #fafbfa;
	color: var(--di-ink);
	font-weight: 700;
	font-size: 0.84rem;
	text-decoration: none;
	transition: border-color .16s ease, background .16s ease;
}
.category-pill:hover { border-color: var(--cat-accent, #5f5f5f); background: color-mix(in srgb, var(--cat-accent, #5f5f5f) 8%, #fff); }
.category-pill span { font-size: 1.02rem; line-height: 1; }
.category-pill b { font-weight: 700; font-size: 0.76rem; color: var(--di-muted, #6b7280); }
/* Categories page: grid of parent tiles, each a native <details> dropdown
   that expands in place to reveal its children without leaving the grid. */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 20px;
	align-items: start;
}
.category-card {
	grid-column: span 1;
	border-radius: 14px;
	border: 1px solid var(--di-line);
	background: #fff;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(16,24,32,0.06);
	transition: box-shadow .18s ease, transform .18s ease;
}
.category-card:hover { box-shadow: 0 8px 22px rgba(16,24,32,0.09); }
.category-card[open] {
	box-shadow: 0 10px 26px rgba(16,24,32,0.1);
}
.category-card-summary {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.category-card-summary { list-style: none; list-style-type: none; }
.category-card-summary::-webkit-details-marker { display: none; }
.category-card-summary::marker { content: ""; display: none; }
.category-card-icon {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: color-mix(in srgb, var(--cat-accent, #5f5f5f) 14%, #fff);
	font-size: 1.5rem;
	line-height: 1;
}
.category-card-name {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.category-card-name strong {
	font-size: 1.02rem;
	font-weight: 800;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #17202a;
}
.category-card-count {
	font-size: 0.76rem;
	font-weight: 600;
	color: var(--di-muted, #6b7280);
}
.category-card-chevron {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--di-muted, #6b7280);
	transition: transform .18s ease;
}
.category-card-chevron svg { width: 18px; height: 18px; display: block; }
.category-card[open] .category-card-chevron { transform: rotate(180deg); color: var(--cat-accent, #5f5f5f); }
.category-card-body {
	padding: 0 20px 20px;
	border-top: 1px solid var(--di-line);
	padding-top: 16px;
}
.category-card-children {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}
.category-card-empty {
	font-size: 0.85rem;
	color: var(--di-muted, #6b7280);
	margin-bottom: 14px;
}
.category-card-view-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--cat-accent, #5f5f5f);
	text-decoration: none;
}
.store-category-section { margin-bottom: 48px; }
.store-category-section:last-child { margin-bottom: 0; }
.price-currency-tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; color: var(--di-muted); border: 1px solid var(--di-line); border-radius: 6px; padding: 1px 6px; }
@media (max-width: 599px) {
	.categories-grid { grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); gap: 12px; }
}
.top-brands-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.top-brand-card {
	display: grid;
	justify-items: center;
	gap: 8px;
	padding: 20px 14px;
	text-align: center;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius-lg);
	background: linear-gradient(180deg, #fff, #fbfdfa);
	box-shadow: 0 12px 28px rgba(23,32,42,0.07);
	overflow: hidden;
	min-width: 0;
}
.top-brand-logo {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.top-brand-logo .store-logo-visual--brand { width: 100%; height: 100%; max-height: 64px; object-fit: contain; padding: 6px; }
.top-brand-logo .store-brand-favicon { padding: 8px; }
.top-brand-logo .brand-favicon-mark { width: 48px; height: 48px; }
.top-brand-logo .store-brand-favicon small { display: none; }
.top-brand-card strong {
	max-width: 100%;
	font-size: 0.94rem;
	line-height: 1.2;
	overflow-wrap: anywhere;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.top-brand-card .pill { font-size: 0.68rem; padding: 0.16rem 0.5rem; }
.top-brand-card > b { color: #0e6f78; font-size: 0.72rem; font-weight: 850; }
.store-logo-strip { padding: 24px 0 4px; }
.logo-strip-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 12px;
	scroll-snap-type: x mandatory;
}
.logo-strip-item {
	flex: 0 0 172px;
	max-width: 172px;
	scroll-snap-align: start;
	display: grid;
	gap: 8px;
	justify-items: center;
	padding: 12px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: rgba(255,255,255,0.78);
	overflow: hidden;
	min-width: 0;
}
.logo-strip-item img { width: 120px; height: 68px; object-fit: contain; background: #fff; padding: 10px; }
.logo-strip-item span {
	max-width: 100%;
	font-size: 0.86rem;
	font-weight: 850;
	text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.slider-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.slider-heading-row .section-heading { margin-bottom: 18px; }
.slider-controls { display: inline-flex; gap: 10px; margin-bottom: 24px; }
.slider-controls button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--di-line);
	border-radius: 12px;
	background: linear-gradient(180deg, #fff, #f4f6f3);
	color: var(--di-ink);
	font-size: 1.5rem;
	line-height: 1;
	box-shadow: 0 10px 20px rgba(23,32,42,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
	transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, border-color 160ms ease;
}
.slider-controls button:hover { color: #fff; border-color: var(--di-icon-a, #2f8b46); background: linear-gradient(150deg, var(--di-icon-a, #2f8b46), var(--di-icon-b, #52d7a0)); transform: translateY(-2px); }
.slider-controls button:active { transform: translateY(0) scale(0.94); }
.slider-viewport { position: relative; }
.slider-viewport::before, .slider-viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 22px;
	width: 46px;
	z-index: 2;
	pointer-events: none;
}
.slider-viewport::before { left: 0; background: linear-gradient(90deg, #f7f8f6, rgba(247,248,246,0)); }
.slider-viewport::after { right: 0; background: linear-gradient(270deg, #f7f8f6, rgba(247,248,246,0)); }
.content-slider {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 2px;
	padding: 2px 2px 22px;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
}
.content-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.content-slider > * {
	flex: 0 0 min(348px, 82vw);
	scroll-snap-align: start;
}
.content-slider::-webkit-scrollbar { height: 10px; }
.content-slider::-webkit-scrollbar-track { background: rgba(23,32,42,0.07); border-radius: 999px; }
.content-slider::-webkit-scrollbar-thumb { background: rgba(23,32,42,0.22); border-radius: 999px; }
.slider-progress { display: flex; justify-content: center; gap: 6px; margin-top: -8px; }
.slider-progress span {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(23,32,42,0.16);
	transition: background 200ms ease, transform 200ms ease, width 200ms ease;
}
.slider-progress span.is-active { width: 22px; background: linear-gradient(90deg, var(--di-icon-a, #2f8b46), var(--di-icon-b, #52d7a0)); }
.slider-empty-state {
	display: grid;
	justify-items: center;
	gap: 10px;
	padding: clamp(30px, 5vw, 46px) 20px;
	text-align: center;
	border: 1px dashed var(--di-line);
	border-radius: var(--di-radius-lg);
	background: rgba(255,255,255,0.6);
	color: var(--di-muted);
}
.slider-empty-state p { margin: 0; max-width: 460px; }
.article-card, .coupon-card, .deal-card, .store-card, .placeholder-card {
	min-height: 245px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: space-between;
	padding: 18px;
	border: 1px solid rgba(255,255,255,0.7);
	border-radius: var(--di-radius);
	background: var(--di-panel);
	backdrop-filter: blur(18px);
	box-shadow: 0 12px 40px rgba(23,32,42,0.08);
	transform-style: preserve-3d;
	transition: transform 220ms ease, box-shadow 220ms ease;
}
.article-card-link { width: fit-content; margin-top: auto; }
.store-card .store-logo {
	object-fit: contain;
	padding: 22px;
	background: #fff;
	border: 1px solid rgba(23,32,42,0.08);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.9);
	image-rendering: auto;
}
.store-logo-visual {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	object-fit: contain;
	background: #fff;
}
.store-logo-monogram {
	border: 1px solid #d8e3da;
	border-radius: var(--di-radius);
	background: #edf4ee;
	color: #205f31;
	gap: 8px;
	padding: 14px;
	line-height: 1;
	letter-spacing: 0;
}
.store-logo-monogram b { font-size: 2.2rem; font-weight: 900; }
.store-logo-monogram small {
	max-width: 100%;
	color: #3f5b46;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.25;
	text-align: center;
	overflow-wrap: anywhere;
}
.store-brand-favicon {
	border: 1px solid #d8e3da;
	border-color: color-mix(in srgb, var(--brand-accent) 22%, #d8e3da);
	border-radius: var(--di-radius);
	background: var(--brand-soft);
	color: var(--brand-accent);
	gap: 10px;
	padding: 14px;
}
.brand-favicon-mark { position: relative; display: grid; place-items: center; width: 78px; height: 78px; }
.brand-favicon-mark svg { width: 100%; height: 100%; overflow: visible; }
.brand-favicon-mark svg rect { fill: var(--brand-accent); opacity: 0.12; }
.brand-favicon-mark svg path { fill: none; stroke: var(--brand-accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand-favicon-mark svg circle { fill: #fff; stroke: var(--brand-accent); stroke-width: 2; }
.brand-favicon-mark b {
	position: absolute;
	right: -4px;
	bottom: -3px;
	display: grid;
	place-items: center;
	min-width: 30px;
	height: 24px;
	padding: 0 5px;
	border: 2px solid #fff;
	border-radius: 6px;
	background: var(--brand-accent);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 900;
}
.store-brand-favicon small { max-width: 100%; color: var(--brand-accent); font-size: 0.74rem; font-weight: 850; overflow-wrap: anywhere; text-align: center; }
.logo-strip-item .store-logo-visual--strip {
	width: 120px;
	height: 68px;
	aspect-ratio: auto;
	padding: 10px;
}
.logo-strip-item .store-logo-monogram {
	display: grid;
	color: #205f31;
}
.logo-strip-item .store-logo-monogram b { font-size: 1.25rem; }
.logo-strip-item .store-logo-monogram small { display: none; }
.logo-strip-item .store-brand-favicon { padding: 8px; }
.logo-strip-item .brand-favicon-mark { width: 44px; height: 44px; }
.logo-strip-item .store-brand-favicon small { display: none; }
.store-context-badge .store-logo-visual--badge {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	aspect-ratio: 1;
	padding: 4px;
	border-radius: 6px;
}
.store-context-badge .store-logo-monogram b { font-size: 0.68rem; }
.store-context-badge .store-brand-favicon { padding: 2px; }
.store-context-badge .brand-favicon-mark { width: 22px; height: 22px; }
.store-context-badge .brand-favicon-mark b { right: -3px; bottom: -3px; min-width: 14px; height: 12px; padding: 0 2px; border-width: 1px; font-size: 0.42rem; }
.coupon-media .store-brand-favicon .brand-favicon-mark { width: 88px; height: 88px; }
.coupon-media .store-logo-visual--coupon {
	min-height: 170px;
	max-height: 190px;
	padding: 24px;
}
.store-logo-panel .store-logo-visual--hero {
	width: min(320px, 100%);
	aspect-ratio: 16 / 9;
	padding: 18px;
}
.store-card-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.store-context-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	gap: 8px;
	padding: 0.24rem 0.58rem 0.24rem 0.32rem;
	border: 1px solid var(--di-line);
	border-radius: 999px;
	background: rgba(255,255,255,0.78);
	color: var(--di-ink);
	font-size: 0.82rem;
	font-weight: 850;
	line-height: 1.15;
}
.store-context-badge img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 6px;
	background: #fff;
	padding: 4px;
}
.store-context-badge span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.source-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	gap: 6px;
	padding: 0.24rem 0.58rem;
	border: 1px solid rgba(14,111,120,0.2);
	border-radius: 999px;
	background: rgba(82,215,232,0.16);
	color: #17484e;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.15;
}
.source-badge span { text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0; }
.source-badge b {
	display: inline-block;
	min-width: 0;
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.seed-library-notice {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: center;
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: #fff;
	color: var(--di-muted);
}
.seed-library-notice strong { color: var(--di-ink); }
.store-category-nav {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	margin: 0 0 24px;
	padding: 2px 0 14px;
	scroll-snap-type: x proximity;
}
.store-category-nav a {
	flex: 0 0 auto;
	scroll-snap-align: start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0.52rem 0.72rem;
	border: 1px solid var(--di-line);
	border-radius: 999px;
	background: rgba(255,255,255,0.84);
	font-weight: 850;
}
.store-category-nav b {
	display: inline-grid;
	place-items: center;
	min-width: 30px;
	height: 26px;
	border-radius: 999px;
	background: rgba(184,242,99,0.72);
	color: #223018;
	font-size: 0.78rem;
}
.store-category-sections { display: grid; gap: clamp(28px, 5vw, 54px); }
.store-category-section {
	scroll-margin-top: 96px;
	padding-top: 2px;
}
.store-category-heading {
	display: grid;
	gap: 6px;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--di-line);
}
.store-category-heading span {
	color: #0e6f78;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}
.store-category-heading h2 { margin: 0; font-size: 2rem; }
.store-category-heading p { margin: 0; color: var(--di-muted); font-weight: 750; }
.store-directory-grid { align-items: stretch; }
.coupon-media { position: relative; }
.deal-card { position: relative; }
.save-toggle {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255,255,255,0.92);
	color: #202124;
	box-shadow: 0 2px 8px rgba(16,24,32,0.18);
	cursor: pointer;
	transition: transform 160ms ease, color 160ms ease;
}
.save-toggle svg { width: 18px; height: 18px; }
.save-toggle:hover { transform: scale(1.08); }
.save-toggle.is-saved { color: #e0402a; }
.save-toggle.is-saved svg { fill: currentColor; }
.share-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.share-links-label { font-size: 0.72rem; color: var(--di-muted); margin-right: 2px; }
.share-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 4px;
	border: none;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease;
}
.share-icon svg { width: 100%; height: 100%; }
.share-icon:hover { transform: translateY(-1px) scale(1.12); background: #f2f4f1; }
.share-icon--copy.is-copied { background: #b8f263; }
.coupon-flag--featured { background: #ffd166; color: #4a3200; }
.coupon-verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 700;
	color: #1f7a45;
}
.coupon-verified::before { content: '✓'; }
.coupon-updated { color: var(--di-muted); font-size: 0.78rem; }
.card-share-row {
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid var(--di-line);
}
.category-archive-description { color: var(--di-muted); max-width: 60ch; }
.category-archive-children { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 14px 0 0; padding: 0; }
.category-archive-children a {
	display: inline-flex;
	gap: 4px;
	padding: 6px 12px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cat-accent, #5f5f5f) 10%, #fff);
	color: color-mix(in srgb, var(--cat-accent, #5f5f5f) 80%, #222);
	font-size: 0.85rem;
	font-weight: 600;
}
.category-archive-children a span { opacity: 0.7; font-weight: 400; }
.coupon-media img { object-fit: contain; padding: 16px; background: #fffaf0; }
.coupon-media span {
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 999px;
	padding: 0.2rem 0.58rem;
	background: #101820;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
}
.tilt-card {
	transform-style: preserve-3d;
	transform-origin: center bottom;
	transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease, border-color 280ms ease;
	will-change: transform;
	backface-visibility: hidden;
}
.tilt-card:hover {
	transform: perspective(1000px) rotateX(4deg) translateY(-7px) translateZ(12px) scale(1.015);
	box-shadow: 0 22px 40px rgba(20,30,20,0.18);
}
.tilt-soft {
	transform-style: preserve-3d;
	transform-origin: center bottom;
	transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease, border-color 280ms ease;
	will-change: transform;
	backface-visibility: hidden;
}
.tilt-soft:hover {
	transform: perspective(1000px) rotateX(4deg) translateY(-7px) translateZ(12px) scale(1.015);
	box-shadow: 0 22px 40px rgba(20,30,20,0.18);
}
.tilt-soft:active { transform: perspective(1000px) rotateX(1deg) translateY(-1px) translateZ(2px) scale(0.995); }
.home-category-rail a:hover, .home-quick-box:hover, .logo-strip-item:hover {
	border-color: color-mix(in srgb, var(--di-icon-a, #2f8b46) 30%, var(--di-line));
}
.home-quick-box:hover .icon-3d,
.home-category-rail a:hover .icon-3d { transform: translateY(-3px) scale(1.06) rotate(-3deg); }

/* 3D-style icon badges: layered gradients + inner highlight + drop shadow give a raised, glassy look */
.icon-3d {
	position: relative;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(150deg, var(--di-icon-a, #2f8b46) 0%, var(--di-icon-b, #52d7a0) 100%);
	box-shadow:
		0 10px 18px -6px color-mix(in srgb, var(--di-icon-a, #2f8b46) 55%, transparent),
		inset 0 2px 0 rgba(255,255,255,0.55),
		inset 0 -6px 10px rgba(0,0,0,0.14);
	color: #fff;
	transition: transform 220ms cubic-bezier(.2,.8,.3,1.4), box-shadow 220ms ease;
}
.icon-3d::after {
	content: "";
	position: absolute;
	inset: 3px 3px auto 3px;
	height: 40%;
	border-radius: 13px 13px 40px 40px / 13px 13px 26px 26px;
	background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
	pointer-events: none;
}
.icon-3d svg { position: relative; width: 26px; height: 26px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.18)); }
.icon-3d-sm { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 8px; }
.icon-3d-sm svg { width: 20px; height: 20px; }
.home-category-rail a:nth-child(8n+1) { --di-icon-a: #2f8b46; --di-icon-b: #7fd08d; }
.home-category-rail a:nth-child(8n+2) { --di-icon-a: #247c8a; --di-icon-b: #6fd4e0; }
.home-category-rail a:nth-child(8n+3) { --di-icon-a: #7a3e87; --di-icon-b: #c58fd6; }
.home-category-rail a:nth-child(8n+4) { --di-icon-a: #a34b2a; --di-icon-b: #f0a56f; }
.home-category-rail a:nth-child(8n+5) { --di-icon-a: #b8860f; --di-icon-b: #ffd166; }
.home-category-rail a:nth-child(8n+6) { --di-icon-a: #315b96; --di-icon-b: #7fb0f0; }
.home-category-rail a:nth-child(8n+7) { --di-icon-a: #205f31; --di-icon-b: #8fdc9c; }
.home-category-rail a:nth-child(8n+8) { --di-icon-a: #6958a6; --di-icon-b: #a998e0; }
.pill, .deal-score {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	border-radius: 999px;
	background: rgba(184,242,99,0.64);
	color: #223018;
	padding: 0.22rem 0.64rem;
	font-size: 0.78rem;
	font-weight: 850;
}
.discount-value { font-size: 2rem; line-height: 1; color: #0e6f78; }
.coupon-actions { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; }
.reveal-code { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1px dashed #101820; }
.success-meter {
	position: relative;
	min-height: 28px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(23,32,42,0.08);
}
.success-meter span {
	position: absolute;
	inset: 0 auto 0 0;
	border-radius: inherit;
	background: linear-gradient(90deg, rgba(184,242,99,0.9), rgba(82,215,232,0.72));
}
.success-meter b {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 28px;
	padding: 0 0.72rem;
	font-size: 0.78rem;
}
.coupon-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	color: var(--di-muted);
}
.coupon-share span { font-weight: 850; color: var(--di-ink); }
.coupon-share a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	border: 1px solid var(--di-line);
	border-radius: 999px;
	background: rgba(255,255,255,0.72);
	padding: 0 0.62rem;
	font-weight: 800;
}
.header-widget { display: flex; align-items: center; gap: 10px; }
.header-widget > * { margin: 0; }
.coupon-meta, .price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--di-muted); font-size: 0.9rem; }
.deal-location { margin: 0; color: #205f31; font-size: 0.84rem; font-weight: 850; }
.coupon-vote { margin-left: auto; display: flex; gap: 6px; }
.coupon-vote button { padding: 0.42rem 0.6rem; background: rgba(255,255,255,0.72); border: 1px solid var(--di-line); font-size: 0.78rem; }
details { border-top: 1px solid var(--di-line); padding-top: 10px; color: var(--di-muted); }
.answer-box, .author-box {
	padding: 18px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: rgba(255,255,255,0.72);
	margin: 0 0 24px;
}
.answer-box ul { margin-bottom: 0; }
.faq-section { margin-top: 32px; }
.faq-section details { background: rgba(255,255,255,0.62); border: 1px solid var(--di-line); border-radius: var(--di-radius); padding: 12px 14px; margin-bottom: 10px; }
.affiliate-note { color: var(--di-muted); font-size: 0.94rem; border-top: 1px solid var(--di-line); padding-top: 16px; }
.author-box { display: flex; gap: 14px; align-items: center; }
.author-box img { border-radius: 50%; width: 72px; height: 72px; }
.related-section { padding-bottom: 0; }
.semantic-links {
	margin: 28px 0;
	padding: 18px;
	border-radius: var(--di-radius);
	background: rgba(184,242,99,0.18);
	border: 1px solid var(--di-line);
}
.semantic-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.semantic-links li { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--di-line); padding-top: 10px; }
.semantic-links span { color: var(--di-muted); font-size: 0.82rem; }
.trust-panel {
	margin: 28px 0;
	padding: 18px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: rgba(82,215,232,0.14);
}
.trust-panel ul { margin-bottom: 0; }
.split-content { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.store-logo-panel { display: grid; gap: 14px; justify-items: center; background: rgba(255,255,255,0.72); border: 1px solid var(--di-line); padding: 30px; border-radius: var(--di-radius); box-shadow: var(--di-shadow); }
.store-logo-panel img { width: min(320px, 100%); aspect-ratio: 16 / 9; object-fit: contain; padding: 18px; background: #fff; }
.store-logo-panel a { color: #0e6f78; font-weight: 850; }
.store-hero .button { margin-top: 12px; }
.store-hero-title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 6px 0; }
.store-hero-title-row h1 { margin: 0; }
.save-toggle--inline { position: static; box-shadow: none; border: 1px solid var(--di-line); }
.store-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
.store-hero-actions .button { margin-top: 0; }
.updated-note { color: var(--di-muted); font-weight: 750; }
.newsletter-band { padding: 70px 0; background: #101820; color: #fff; }
.newsletter-band .hero-search { box-shadow: none; }
.site-footer { padding: 52px 0; background: #f1f4ee; border-top: 1px solid var(--di-line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
.footer-legal { margin-top: 12px; }
.newsletter { display: grid; gap: 10px; }
.newsletter input { border: 1px solid var(--di-line); border-radius: var(--di-radius); padding: 0.8rem; font: inherit; }
.site-utility-bar { background: #24322a; color: #fff; font-size: 0.78rem; }
.site-utility-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.site-utility-inner nav { display: flex; gap: 16px; }
.site-utility-inner a { color: #fff; }
.nav-shell { min-height: 72px; }
.header-search { flex: 1 1 540px; max-width: 680px; display: grid; grid-template-columns: 1fr auto; border: 1px solid #cfd5cf; border-radius: var(--di-radius); overflow: hidden; background: #fff; }
.header-search input { min-width: 0; min-height: 44px; padding: 0 14px; border: 0; background: transparent; font: inherit; }
.header-search button, .mobile-search button { min-width: 86px; border-radius: 0; background: #287d3f; color: #fff; }
.site-category-bar { border-top: 1px solid #edf0ed; border-bottom: 1px solid var(--di-line); background: #fff; }
.category-bar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.primary-nav { min-width: 0; overflow: hidden; }
.primary-nav ul { flex-wrap: nowrap; gap: 24px; overflow-x: auto; scrollbar-width: none; }
.primary-nav a { padding: 7px 0; color: #3f4541; white-space: nowrap; }
.primary-nav a:hover { color: #237a3b; }
.nearby-link { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; color: #237a3b; font-size: 0.88rem; font-weight: 850; }
.nearby-link .menu-favicon { border-color: #cfe2d3; background: #e7f3e9; color: #205f31; }
.mobile-search { display: grid; grid-template-columns: 1fr auto; margin: 10px 16px 4px; border: 1px solid var(--di-line); border-radius: var(--di-radius); overflow: hidden; background: #fff; }
.mobile-search input { min-width: 0; min-height: 44px; border: 0; padding: 0 12px; font: inherit; }
.site-breadcrumb { padding: 14px 0 0; }
.site-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 0.82rem; color: var(--di-muted); }
.site-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.site-breadcrumb li:not(:last-child)::after { content: "/"; color: var(--di-line); }
.site-breadcrumb a { color: var(--di-muted); font-weight: 700; }
.site-breadcrumb a:hover { color: #0e6f78; }
.site-breadcrumb span[aria-current] { color: var(--di-ink); font-weight: 800; }
.page-hero { padding: 42px 0 34px; background: #f2f5f1; border-bottom: 1px solid var(--di-line); }
.page-hero h1 { max-width: 820px; font-size: 2.7rem; }
.page-hero p { margin-bottom: 18px; }
.single-hero-image { margin-top: -18px; margin-bottom: 6px; }
.single-hero-image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: var(--di-radius-lg);
	box-shadow: 0 20px 44px rgba(23,32,42,0.14);
}
.page-hero .hero-search { background: #fff; box-shadow: none; }
.nearby-finder {
	display: grid;
	grid-template-columns: minmax(180px, 1.35fr) minmax(140px, 0.8fr) minmax(110px, 0.55fr);
	gap: 12px;
	max-width: 780px;
	padding: 18px;
	border: 1px solid var(--di-line);
	border-radius: var(--di-radius);
	background: #fff;
}
.nearby-field { display: grid; gap: 5px; min-width: 0; }
.nearby-field label { font-size: 0.78rem; font-weight: 850; }
.nearby-field input, .nearby-field select {
	width: 100%;
	min-width: 0;
	min-height: 44px;
	border: 1px solid #cfd5cf;
	border-radius: var(--di-radius);
	background: #fff;
	padding: 0 11px;
	font: inherit;
}
.nearby-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; }
.nearby-privacy-note, .nearby-status { grid-column: 1 / -1; margin: 0; font-size: 0.82rem; }
.nearby-privacy-note { color: var(--di-muted); }
.nearby-privacy-note a { color: #237a3b; font-weight: 800; }
.nearby-status { min-height: 1.4em; color: #205f31; font-weight: 750; }
.home-discovery-shell h1 { font-size: 4.2rem; }
.content-section { padding: 46px 0; }
.section-heading h2 { font-size: 2rem; }
.article-card, .coupon-card, .deal-card, .store-card, .placeholder-card { border-color: var(--di-line); background: #fff; }
.article-card:hover, .placeholder-card:hover, .store-card:hover, .deal-card:hover, .coupon-card:hover { transform: translateY(-3px) translateZ(0); box-shadow: var(--di-shadow-hover); }
.coupon-card, .deal-card { gap: 12px; padding: 14px; }
.coupon-card .coupon-media img, .coupon-card .coupon-media .store-logo-visual, .deal-card > img, .deal-card > .store-logo-visual { min-height: 112px; max-height: 128px; }
.coupon-card h3, .deal-card h3 { margin: 0; font-size: 1.02rem; line-height: 1.25; }
.coupon-card p, .deal-card p { margin: 0; font-size: 0.88rem; line-height: 1.45; }
.coupon-card .discount-value { font-size: 1.55rem; }
.coupon-card .coupon-actions { gap: 7px; }
.coupon-card .button, .coupon-card button, .deal-card .button { min-height: 38px; padding: 0.55rem 0.72rem; }
.coupon-media span { background: #287d3f; }
.pill, .deal-score { background: #e8f3e9; color: #205f31; }
.source-badge { border-color: #cbdfe2; background: #edf6f7; color: #23555d; }
.discount-value { color: #237a3b; }
.success-meter span { background: #a8d9af; }
.reveal-code { border-color: #287d3f; color: #205f31; }
.tilt-card:active { transform: perspective(1000px) rotateX(1deg) translateY(-1px) translateZ(2px) scale(0.995); }
.marketplace-toolbar-section { position: relative; z-index: 2; background: #fff; border-bottom: 1px solid var(--di-line); }
.marketplace-toolbar { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.marketplace-filter-rail { min-width: 0; display: flex; align-items: center; gap: 8px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.marketplace-filter-rail a { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 36px; padding: 0 12px; border: 1px solid var(--di-line); border-radius: 999px; background: #fff; font-size: 0.84rem; font-weight: 800; }
.marketplace-filter-rail a.is-current { border-color: #287d3f; background: #e9f4e7; color: #205f31; }
.marketplace-sort { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.marketplace-sort label { font-size: 0.82rem; font-weight: 800; }
.marketplace-sort select { min-height: 38px; border: 1px solid var(--di-line); border-radius: var(--di-radius); padding: 0 32px 0 10px; background: #fff; font: inherit; }
.marketplace-sort button { min-height: 38px; padding: 0 12px; background: #24322a; color: #fff; }
.marketplace-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 18px; color: var(--di-muted); font-size: 0.82rem; }
.marketplace-breadcrumb a { color: #237a3b; font-weight: 800; }
.store-hero {
	padding: 40px 0 44px;
	background: linear-gradient(135deg, #101820 0%, #1c2b22 55%, #0e6f4f 100%);
	border-bottom: none;
	color: #fff;
}
.store-hero .eyebrow { color: #b8f263; }
.store-hero h1 { color: #fff; font-size: 2.5rem; }
.store-hero p { color: rgba(255,255,255,0.78); }
.store-hero .category-pill { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); color: #fff; }
.store-hero .category-pill:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.store-hero .category-pill b { color: rgba(255,255,255,0.65); }
.store-hero .coupon-verified { color: #b8f263; }
.store-hero .save-toggle--inline { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }
.store-hero .save-toggle--inline.is-saved { color: #ff8a65; }
.store-stat-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 18px 0 6px;
}
.store-stat-row span {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	font-size: 0.78rem;
	color: rgba(255,255,255,0.7);
}
.store-stat-row b { color: #fff; font-size: 1.3rem; font-weight: 800; }
.store-hero .share-icon { background: rgba(255,255,255,0.1); }
.store-hero .share-icon:hover { background: rgba(255,255,255,0.2); }
.store-hero .share-links-label { color: rgba(255,255,255,0.65); }
.store-logo-panel {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.store-hero .button-primary { background: linear-gradient(160deg, #c8f57a, #96d43f); color: #101820; border: none; box-shadow: 0 12px 26px rgba(184, 242, 99, 0.35), inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -3px 6px rgba(0,0,0,0.12); }
.store-hero .button-primary:hover { background: linear-gradient(160deg, #d4ff8c, #a8e050); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(184, 242, 99, 0.42), inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -3px 6px rgba(0,0,0,0.12); }
.store-logo-panel { box-shadow: none; background: #fff; }
.store-section-nav { position: sticky; top: 147px; z-index: 20; border-top: 1px solid var(--di-line); border-bottom: 1px solid var(--di-line); background: #fff; }
.store-section-nav .container { display: flex; gap: 26px; overflow-x: auto; }
.store-section-nav a { padding: 13px 0; color: #3f4541; font-weight: 850; white-space: nowrap; }
.store-section-nav a:hover { color: #237a3b; }
.store-offer-band { scroll-margin-top: 195px; background: #fff; }
.store-deal-band { background: #f3f6f2; }
.empty-offer-note { padding: 18px; border-left: 4px solid #287d3f; background: #eef5ed; color: var(--di-muted); }
.store-about-band { scroll-margin-top: 195px; }
.store-editorial-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr); gap: 42px; align-items: start; }
.store-editorial-main h2 { margin-top: 10px; font-size: 2rem; }
.store-fact-panel { padding: 22px; border: 1px solid var(--di-line); border-radius: var(--di-radius); background: #fff; }
.store-fact-panel h2 { font-size: 1.45rem; }
.store-fact-panel h3 { margin-top: 20px; font-size: 1rem; }
.store-fact-panel p { margin-bottom: 0; color: var(--di-muted); }
.store-faq-band { scroll-margin-top: 195px; background: #fff; }
.footer-marketplace-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 42px; padding-bottom: 36px; border-bottom: 1px solid #d7ddd8; }
.footer-marketplace-band h2 { max-width: 760px; margin: 8px 0 0; font-size: 2rem; }
.site-footer { padding: 0 0 24px; background: #e9ede9; }
.footer-grid { grid-template-columns: 1.3fr repeat(3, minmax(0, 0.8fr)); padding-top: 38px; padding-bottom: 32px; }
.site-footer h3 { margin-bottom: 12px; font-size: 0.95rem; text-transform: uppercase; }
.site-footer ul { display: grid; gap: 9px; }
.site-footer li, .site-footer p { color: #59605b; font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid #d7ddd8; color: #68706a; font-size: 0.78rem; }
.cursor-dot { display: none; }
.cursor-dot { position: fixed; z-index: 100; width: 16px; height: 16px; border-radius: 50%; background: rgba(255,111,97,0.7); pointer-events: none; transform: translate(-50%, -50%); opacity: 0; transition: opacity 180ms ease; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.confetti-piece { position: fixed; z-index: 999; width: 8px; height: 12px; pointer-events: none; animation: confetti 820ms ease-out forwards; }
@keyframes confetti { to { transform: translate(var(--x), var(--y)) rotate(520deg); opacity: 0; } }
@media (max-width: 860px) {
	.primary-nav { display: none; }
	.site-category-bar, .header-search { display: none; }
	.site-utility-inner nav { display: none; }
	.menu-toggle { display: inline-block; }
	.hero-grid, .store-hero-grid, .split-content, .footer-grid, .authority-hub, .trust-metrics-grid, .directory-stats, .store-editorial-layout, .home-nearby-layout { grid-template-columns: 1fr; }
	.content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.research-lanes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.slider-heading-row { align-items: flex-start; }
	.floating-coupons { min-height: 260px; }
	h1 { font-size: 2.7rem; }
	h2 { font-size: 2rem; }
	.home-discovery-shell h1 { font-size: 3.35rem; }
	.store-section-nav { top: 106px; }
	.marketplace-toolbar { align-items: stretch; flex-direction: column; gap: 0; padding-bottom: 12px; }
	.marketplace-sort { justify-content: flex-end; }
	.footer-marketplace-band { align-items: flex-start; flex-direction: column; }
	.home-category-rail { grid-template-columns: repeat(8, minmax(104px, 1fr)); }
	.home-quick-box-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.top-brands-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
	.nearby-finder { grid-template-columns: 1fr; }
	.nearby-actions, .nearby-privacy-note, .nearby-status { grid-column: 1; }
	.container { width: min(100% - 22px, 1120px); }
	.content-grid { grid-template-columns: 1fr; }
	.home-quick-box-grid { grid-template-columns: 1fr; }
	.home-quick-box { min-height: 0; }
	.research-lanes, .store-stat-row { grid-template-columns: 1fr; }
	.top-brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hero-search, .coupon-actions { grid-template-columns: 1fr; flex-direction: column; }
	.hero-search { display: grid; }
	.hero-search input { min-height: 44px; }
	.slider-heading-row { display: grid; }
	.slider-controls { margin-bottom: 12px; }
	.content-slider > * { flex-basis: min(318px, 88vw); }
	.nav-shell { gap: 10px; }
	.nav-shell > .button-ghost { display: none; }
	.source-badge b { max-width: 170px; }
	.store-category-nav a { max-width: 82vw; }
	.store-category-nav span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.floating-coupons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; min-height: 0; }
	.floating-coupons span { position: static; min-height: 54px; animation: none; }
	.author-box { align-items: flex-start; }
	h1, .page-hero h1 { font-size: 2.25rem; }
	h2 { font-size: 1.7rem; }
	.home-discovery-shell h1 { font-size: 2.65rem; }
	.site-utility-inner { justify-content: center; text-align: center; }
	.marketplace-sort { display: grid; grid-template-columns: auto 1fr auto; width: 100%; }
	.marketplace-sort select { width: 100%; }
	.store-section-nav { top: 106px; }
	.footer-bottom { flex-direction: column; }
	.authority-feature h3 { font-size: 1.9rem; }
	.home-discovery-hero { padding-top: 38px; }
	.home-category-heading { align-items: flex-end; }
	.home-directory-cta { display: grid; }
	.home-directory-cta .button { width: 100%; }
	.home-nearby-search > div { grid-template-columns: 1fr; }
	.home-nearby-search button { min-height: 44px; }
}
@media (hover: none), (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
	.cursor-dot { display: none; }
	.tilt-card:hover, .tilt-soft:hover { transform: none !important; }
}
.navigation.pagination {
  display: flex;
  justify-content: center;
  margin: 32px 0 8px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.pagination .page-numbers {
  align-items: center;
  background: #fff;
  border: 1px solid var(--border-color, #d9dde3);
  border-radius: 6px;
  color: var(--text-color, #17212b);
  display: inline-flex;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 10px;
  text-decoration: none;
}

.pagination .page-numbers:hover,
a, button, input, textarea, select, [tabindex] {
	outline-color: var(--di-primary);
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
	outline: 2px solid var(--di-primary);
	outline-offset: 2px;
	border-radius: 4px;
}
.pagination .page-numbers:focus-visible,
.pagination .page-numbers.current {
  background: var(--brand-color, #176b3a);
  border-color: var(--brand-color, #176b3a);
  color: #fff;
}
