/* === coupon-base.css === */
/**
 * GP Coupons — design tokens, Rank Math FAQ, and breadcrumbs.
 */

:root {
	--primary: var(--wp--preset--color--primary, #e23e57);
	--accent: var(--wp--preset--color--accent, #059669);
	--headline: var(--wp--preset--color--headline, #252525);
	--text: var(--wp--preset--color--text, #4f4f4f);
	--muted: var(--wp--preset--color--muted, #4b5563);

	/* Accessible text on white (WCAG AA 4.5:1+) */
	--gpc-green-text: #166534;
	--gpc-red-text: #b91c1c;
	--surface: var(--wp--preset--color--surface, #fafafa);

	--gpc-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--gpc-gutter: clamp(16px, 4vw, 24px);

	/* Professional type scale (16px root) */
	--gpc-text-xs: 0.8125rem;
	--gpc-text-sm: 0.875rem;
	--gpc-text-base: 1rem;
	--gpc-text-md: 1.0625rem;
	--gpc-text-lg: 1.125rem;
	--gpc-text-xl: 1.25rem;
	--gpc-text-2xl: 1.5rem;
	--gpc-text-3xl: 1.75rem;
	--gpc-text-4xl: 2.125rem;

	--gpc-leading-tight: 1.25;
	--gpc-leading-snug: 1.45;
	--gpc-leading-normal: 1.6;
	--gpc-leading-relaxed: 1.65;

	/* Semantic sizes */
	--gpc-hero-title: clamp(1.375rem, 1.05rem + 1.4vw, 2.125rem);
	--gpc-hero-desc: clamp(0.9375rem, 0.88rem + 0.25vw, 1.0625rem);
	--gpc-hero-meta: 0.875rem;
	--gpc-section-title: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
	--gpc-card-title: 1.0625rem;

	--gpc-sticky-top: clamp(16px, 2vw, 28px);
}

@media (min-width: 1025px) {
	:root {
		--gpc-sticky-top: clamp(68px, 7vw, 84px);
	}
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.gp-has-store-hero,
.coupon-temp,
.gp-editorial-temp {
	font-family: var(--gpc-font-sans);
}

.site-container {
	max-width: var(--gpc-max, 100%);
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--gpc-gutter);
	box-sizing: border-box;
}

.desc {
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-relaxed);
	font-weight: 400;
	color: var(--text);
}

/* —— Rank Math FAQ block (editorial content) —— */

.rank-math-list {
	margin-bottom: 40px;
}

.rank-math-list-item {
	background: #fff;
	padding: 15px 20px 2px;
	box-shadow:
		0 0 8px #d1d8dd,
		0 0 40px #fff;
	margin-bottom: 1rem;
	border-radius: 5px;
}

.rank-math-list-item .rank-math-question {
	font-size: var(--gpc-text-xl);
	font-weight: 600;
	border-bottom: 1px solid #f0f4f8;
	padding-bottom: 0.825rem;
	margin-top: 5px;
	margin-bottom: 0.825rem;
	position: relative;
	padding-right: 40px;
	text-align: left;
}

.rank-math-list-item .rank-math-answer p {
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-relaxed);
}

/* —— Rank Math breadcrumbs (blog + store pages) —— */

.rank-math-breadcrumb {
	margin-top: 20px;
}

.rank-math-breadcrumb p,
.rank-math-breadcrumb .breadcrumb-list {
	margin-bottom: 0;
	font-size: var(--gpc-text-sm);
}

.rank-math-breadcrumb .breadcrumb-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}

.rank-math-breadcrumb .breadcrumb-item {
	display: inline-flex;
	align-items: center;
}

.rank-math-breadcrumb .separator {
	margin: 0 5px;
}

.rank-math-breadcrumb p a {
	text-decoration: none;
}

.single-post .rank-math-breadcrumb {
	margin-bottom: 10px;
	margin-top: 0;
}

.single-post .rank-math-breadcrumb p {
	font-size: var(--gpc-text-sm);
}

@media (max-width: 767px) {
	:root {
		--gpc-gutter: 18px;
		--gpc-hero-title: clamp(1.125rem, 4.6vw, 1.4375rem);
		--gpc-hero-desc: 0.9375rem;
		--gpc-hero-meta: 0.8125rem;
		--gpc-section-title: clamp(1.25rem, 1.1rem + 0.75vw, 1.375rem);
		--gpc-card-title: 1.0625rem;
		--gpc-sticky-top: 12px;
	}

	.rank-math-list {
		margin-bottom: 28px;
	}

	.rank-math-list-item {
		padding: 14px 16px 2px;
		border-radius: 10px;
	}

	.rank-math-list-item .rank-math-question {
		font-size: var(--gpc-text-lg);
		padding-right: 0;
	}
}

@media (max-width: 480px) {
	:root {
		--gpc-gutter: 16px;
		--gpc-hero-title: clamp(1.0625rem, 4.2vw, 1.3125rem);
		--gpc-hero-desc: 0.875rem;
		--gpc-section-title: 1.125rem;
		--gpc-card-title: 1rem;
	}
}

/* === coupon-layout.css === */
/**
 * GP Coupons — store layout, sidebar, and table of contents.
 */

/* —— Coupon store template shell —— */

.post-template-single-coupon-template {
	background: #fff;
}

.gp-has-store-hero .grid-container#page {
	max-width: 100% !important;
}

.gp-has-store-hero .site-content {
	display: block;
}

/* —— Post content layout —— */

.coupon-temp .post-content {
	background: var(--surface, #fafafa);
}

.coupon-temp .post-content .coupon-stats {
	font-size: var(--gpc-text-base);
	color: var(--text, #444);
}

.coupon-temp .post-content .coupon-block {
	margin-top: 0;
	margin-bottom: 0;
}

.post-content .content-block .entry-content:not(.gp-store-editorial) {
	margin-top: 0;
}

.post-content .gp-store-editorial-wrap .entry-content {
	margin-top: 0;
}

/* —— Tab switcher —— */

.tab-switcher .tab-content {
	display: none;
	height: 0;
	visibility: hidden;
}

.tab-switcher .tab-content.active {
	display: block;
	height: initial;
	visibility: initial;
}

/* —— Sidebar list items (card surfaces in layout-unified.css) —— */

.coupon-temp .sidebar .block ul {
	margin: 0;
}

.coupon-temp .sidebar .block ul li {
	list-style: none;
	margin-top: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.coupon-temp .block ul li,
.coupon-temp .block ul li a {
	display: block;
	color: var(--text);
	font-size: var(--gpc-text-sm);
	line-height: var(--gpc-leading-normal);
}

.coupon-temp .sidebar .block ul li a:hover {
	color: var(--primary);
}

.coupon-temp .gpc-similar-stores__list,
.gpc-similar-stores__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.coupon-temp .gpc-similar-stores__item + .gpc-similar-stores__item,
.gpc-similar-stores__item + .gpc-similar-stores__item {
	margin-top: 10px;
}

.coupon-temp .gpc-similar-stores__link,
.gpc-similar-stores__link {
	display: block;
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fafafa;
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	line-height: var(--gpc-leading-snug);
	color: var(--headline, #252525);
	text-decoration: none;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.coupon-temp .gpc-similar-stores__link:hover,
.gpc-similar-stores__link:hover {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: var(--gpc-blue, #2563eb);
}

.gpc-similar-stores__title {
	margin: 0 0 10px;
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-snug);
	font-weight: 600;
	color: var(--headline, #252525);
}

/* —— Table of contents —— */

.gpc-toc {
	margin-bottom: 20px;
}

.gpc-toc__inner {
	padding: 0;
}

.gpc-toc__title {
	display: block;
	font-size: var(--gpc-text-base);
	font-weight: 600;
	margin: 0 0 8px;
	line-height: var(--gpc-leading-snug);
}

.gpc-toc__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gpc-toc__item {
	display: block;
	margin-bottom: 4px;
}

.gpc-toc__link {
	font-size: var(--gpc-text-sm);
	line-height: 1.45;
	color: var(--headline, #252525);
	font-weight: 400;
	text-decoration: none;
}

.gpc-toc__link:hover {
	color: var(--primary);
	text-decoration: none;
}

.gpc-toc__item.active > .gpc-toc__link {
	color: var(--primary);
	font-weight: 500;
}

.gpc-toc__item--child {
	margin-bottom: 4px;
}

.gpc-toc__item--child .gpc-toc__link {
	font-size: var(--gpc-text-sm);
}

.gpc-toc--sidebar .gpc-toc__item--child .gpc-toc__link {
	padding-left: 14px;
	border-left: 2px solid #e5e7eb;
	margin-left: 4px;
}

.gpc-toc--sidebar.block {
	margin-bottom: 0;
	padding: 14px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.gpc-toc--sidebar .gpc-toc__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f5f9;
	font-size: var(--gpc-text-sm);
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--headline, #111827);
}

.gpc-toc--sidebar .gpc-toc__title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--primary, #2563eb);
	flex-shrink: 0;
}

.gpc-toc--sidebar .gpc-toc__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gpc-toc--sidebar .gpc-toc__item {
	display: flex;
	margin-bottom: 0;
}

.gpc-toc--sidebar .gpc-toc__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 7px 8px;
	border-radius: 8px;
	color: var(--text, #374151);
	transition: background-color 0.15s ease, color 0.15s ease;
}

.gpc-toc--sidebar .gpc-toc__link::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #cbd5e1;
	flex-shrink: 0;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.gpc-toc--sidebar .gpc-toc__link:hover {
	background: #f8fafc;
	color: var(--primary, #2563eb);
	text-decoration: none;
}

.gpc-toc--sidebar .gpc-toc__link:hover::before {
	background: var(--primary, #2563eb);
}

.gpc-toc--sidebar .gpc-toc__item.active > .gpc-toc__link {
	background: rgba(37, 99, 235, 0.08);
	color: var(--primary, #2563eb);
	font-weight: 600;
}

.gpc-toc--sidebar .gpc-toc__item.active > .gpc-toc__link::before {
	background: var(--primary, #2563eb);
	transform: scale(1.15);
}

.gpc-toc--sidebar .gpc-toc__item--child .gpc-toc__link {
	padding-left: 22px;
	border-left: 0;
	margin-left: 0;
}

.gpc-toc--sidebar .gpc-toc__item--child .gpc-toc__link::before {
	width: 5px;
	height: 5px;
}

.coupon-temp .sidebar .gpc-toc--sidebar .gpc-toc__inner,
.gpc-sidebar-sticky .gpc-toc--sidebar .gpc-toc__inner {
	max-height: none;
	overflow: visible;
}

/* Mobile collapsible TOC — hidden on desktop, accordion on tablet/mobile */
.gpc-toc--mobile {
	display: none;
	margin-bottom: 14px;
}

.gpc-toc--mobile .gpc-toc__drawer {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.gpc-toc--mobile .gpc-toc__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 40px;
	padding: 9px 12px;
	cursor: pointer;
	list-style: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.gpc-toc--mobile .gpc-toc__trigger::-webkit-details-marker {
	display: none;
}

.gpc-toc--mobile .gpc-toc__trigger::marker {
	content: "";
}

.gpc-toc--mobile .gpc-toc__trigger-label {
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
	color: var(--headline, #252525);
}

.gpc-toc--mobile .gpc-toc__trigger-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--muted, #6b7280);
	transition: transform 0.2s ease, color 0.15s ease;
}

.gpc-toc--mobile .gpc-toc__drawer[open] .gpc-toc__trigger-icon {
	transform: rotate(180deg);
	color: var(--headline, #252525);
}

.gpc-toc--mobile .gpc-toc__trigger:focus {
	outline: none;
}

.gpc-toc--mobile .gpc-toc__trigger:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
	border-radius: 8px;
}

.gpc-toc--mobile .gpc-toc__panel {
	padding: 0 10px 10px;
	border-top: 1px solid #f3f4f6;
	max-height: min(38vh, 240px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.gpc-toc--mobile .gpc-toc__list {
	padding-top: 6px;
}

.gpc-toc--mobile .gpc-toc__item {
	margin-bottom: 0;
}

.gpc-toc--mobile .gpc-toc__link {
	display: block;
	padding: 7px 10px 7px 12px;
	border-left: 2px solid transparent;
	border-radius: 0 6px 6px 0;
	font-size: var(--gpc-text-sm);
	line-height: 1.4;
	color: var(--text, #4f4f4f);
	transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.gpc-toc--mobile .gpc-toc__link:hover {
	color: var(--primary);
	background: rgba(226, 62, 87, 0.04);
}

.gpc-toc--mobile .gpc-toc__item.active > .gpc-toc__link {
	color: var(--primary);
	font-weight: 600;
	border-left-color: var(--primary);
	background: rgba(226, 62, 87, 0.06);
}

.gpc-toc--mobile .gpc-toc__item--child .gpc-toc__link {
	padding-left: 22px;
	font-size: var(--gpc-text-xs);
}

.gpc-offers-heading {
	margin: 0 0 16px;
	font-size: var(--gpc-section-title);
	line-height: var(--gpc-leading-tight);
	color: var(--headline, #252525);
	letter-spacing: -0.015em;
}

.coupon-temp .gpc-offers {
	width: 100%;
	max-width: 100%;
}

.coupon-temp .gpc-offers .wrapper {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	max-width: 100%;
}

.coupon-temp .gpc-offers .tabs-wrapper {
	margin-bottom: 16px;
}

.coupon-temp .gpc-offers .tab-content.active {
	margin-top: 0;
}

.coupon-temp .gpc-offers .coupon-block {
	padding-top: 4px;
	width: 100%;
	max-width: 100%;
}

/* Native list semantics without visual list styling. */
.coupon-temp .gpc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.coupon-temp .gpc-list__item {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

/* WCAG 1.4.1 — in-content links must not rely on colour alone. */
.coupon-temp .gp-store-editorial a:not(.button):not([class*="btn"]) {
	text-decoration: underline;
}

.gpc-card__missing-url {
	margin: 0;
	font-size: var(--gpc-text-xs);
	color: var(--muted, #666);
}

.gpc-deal-btn--disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.55;
	cursor: not-allowed;
}

.gpc-modal__error {
	margin: 0 0 12px;
	color: #b42318;
	font-size: var(--gpc-text-sm);
}

/* Hide mobile accordion on desktop; sidebar TOC is used instead. */
.gp-store-editorial-wrap .gpc-toc--mobile,
.content-block > .gpc-toc--mobile {
	display: none;
}

.gp-author-attribution {
	margin-top: clamp(24px, 3vw, 32px);
	padding-top: 18px;
	border-top: 1px solid var(--border, #e5e7eb);
}

.gp-author-attribution__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	font-size: var(--gpc-text-sm);
	line-height: 1.5;
	color: var(--muted, #6b7280);
}

.gp-author-attribution__item {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	color: var(--text, #374151);
	white-space: nowrap;
}

.gp-author-attribution__item--updated {
	color: var(--muted, #6b7280);
	white-space: normal;
}

.gp-author-attribution__label {
	color: var(--muted, #6b7280);
	font-weight: 400;
}

.gp-author-attribution__sep {
	color: #d1d5db;
	font-size: 14px;
	line-height: 1;
	user-select: none;
}

.gp-author-attribution__link {
	color: var(--primary, #2563eb);
	text-decoration: none;
	font-weight: 600;
}

.gp-author-attribution__link:hover {
	text-decoration: underline;
}

.gpc-similar-stores--main {
	margin-top: clamp(28px, 4vw, 40px);
}

@media (min-width: 1025px) {
	.gpc-similar-stores--main {
		display: none;
	}
}

@media (max-width: 1024px) {
	.content-block > .gpc-toc--store-main.gpc-toc--mobile {
		display: block;
		margin-bottom: 16px;
	}

	.gp-author-attribution__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.gp-author-attribution__sep {
		display: none;
	}
}

.coupon-temp .sidebar--mobile-stack .gpc-toc--sidebar {
	display: none !important;
}
.post-template-single-coupon-template .entry-content #ez-toc-container {
	display: none;
}

/* —— Responsive —— */

@media (max-width: 1350px) {
	.rank-math-breadcrumb {
		padding: 0 20px;
	}

	.single-post .rank-math-breadcrumb {
		padding: 0;
	}
}

@media (max-width: 767px) {
	.rank-math-list-item .rank-math-question {
		font-size: var(--gpc-text-lg);
		padding-right: 0;
	}

	.post-content .content-block .entry-content,
	.post-content .gp-store-editorial-wrap .entry-content {
		margin-top: 0;
	}
}

@media (min-width: 451px) {
	.rank-math-list {
		margin-bottom: 30px;
	}

	.rank-math-list-item .rank-math-question:after {
		content: "?";
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
		line-height: 30px;
		text-align: center;
		color: #bec8d4;
		font-size: 19px;
		background: #f0f4f8;
		border-radius: 40px;
	}
}
/* === layout-unified.css === */
/**
 * GP Coupons — unified layout, footer, and comments (all templates).
 */

/* —— Shared two-column body shell —— */

.post-template-single-coupon-template .coupon-temp .post-content > .site-container,
.post-template-single-review-template .gp-editorial-temp .post-content > .site-container,
.post-template-single-blog-template .gp-editorial-temp .post-content > .site-container {
	display: flex;
	align-items: flex-start;
	gap: clamp(28px, 4vw, 50px);
	padding-top: clamp(20px, 2.5vw, 28px);
	padding-bottom: clamp(40px, 5vw, 56px);
	width: 100%;
	max-width: var(--gpc-max, 100%);
	margin-inline: auto;
	box-sizing: border-box;
}

/* —— Sidebar column (store + editorial) —— */

.coupon-temp .post-content .sidebar.sidebar--desktop,
.gp-editorial-temp .gp-editorial-sidebar {
	flex: 0 0 clamp(240px, 22%, 300px);
	min-width: 0;
}

/* —— Main content column —— */

.coupon-temp .post-content .content-block,
.gp-editorial-temp .content-block {
	flex: 1 1 0;
	min-width: 0;
	width: 100%;
	max-width: none;
}

/* —— Shared sidebar / card surfaces —— */

.coupon-temp .sidebar .block,
.gp-editorial-sidebar .gpc-toc.block,
.gp-editorial-sidebar .gpc-review-rail.block,
.gp-editorial-sidebar .gpc-similar-stores,
.coupon-temp .sidebar .gpc-similar-stores {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	padding: clamp(18px, 3vw, 22px);
	margin-bottom: 20px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.coupon-temp .sidebar .block:last-child,
.gp-editorial-sidebar .gpc-toc.block:last-child,
.gp-editorial-sidebar .gpc-review-rail.block:last-child,
.gp-editorial-sidebar .gpc-sidebar-sticky:last-child,
.coupon-temp .sidebar .gpc-sidebar-sticky:last-child {
	margin-bottom: 0;
}

@media (min-width: 1025px) {
	/* Stretch sidebar to main column height so TOC sticky has room to pin while scrolling. */
	.post-template-single-coupon-template .coupon-temp .post-content > .site-container,
	.post-template-single-review-template .gp-editorial-temp .post-content > .site-container,
	.post-template-single-blog-template .gp-editorial-temp .post-content > .site-container {
		align-items: stretch;
	}

	.post-template-single-coupon-template .site-main,
	.post-template-single-coupon-template .post-content,
	.post-template-single-review-template .site-main,
	.post-template-single-review-template .post-content,
	.post-template-single-blog-template .site-main,
	.post-template-single-blog-template .post-content,
	.gp-has-store-hero.separate-containers .inside-article,
	.gp-has-store-hero.separate-containers #content,
	.gp-has-store-hero.separate-containers .site-content,
	.gp-has-store-hero.separate-containers #primary {
		overflow: visible;
	}

	.coupon-temp .post-content .sidebar.sidebar--desktop,
	.gp-editorial-temp .gp-editorial-sidebar {
		display: flex;
		flex-direction: column;
		align-self: stretch;
		position: static;
		max-height: none;
		overflow: visible;
	}

	/* Pin TOC + similar stores together; insights / review rail scroll away. */
	.coupon-temp .sidebar.sidebar--desktop .gpc-sidebar-sticky,
	.gp-editorial-sidebar .gpc-sidebar-sticky {
		position: -webkit-sticky;
		position: sticky;
		top: var(--gpc-sticky-top, clamp(68px, 7vw, 84px));
		z-index: 20;
		display: flex;
		flex-direction: column;
		gap: 16px;
		max-height: calc(100vh - var(--gpc-sticky-top, clamp(68px, 7vw, 84px)) - 24px);
		min-height: 0;
		width: 100%;
	}

	.gpc-sidebar-sticky .gpc-toc--sidebar {
		flex: 1 1 auto;
		min-height: 120px;
		display: flex;
		flex-direction: column;
		margin-bottom: 0;
		overflow: hidden;
	}

	.gpc-sidebar-sticky .gpc-toc--sidebar .gpc-toc__inner {
		flex: 1 1 auto;
		min-height: 0;
		max-height: none;
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-gutter: stable;
	}

	.gpc-sidebar-sticky .gpc-toc--sidebar,
	.gpc-sidebar-sticky .gpc-similar-stores {
		margin-bottom: 0;
	}

	.gpc-sidebar-sticky .gpc-similar-stores {
		flex: 0 0 auto;
	}
}

.coupon-temp .sidebar .block .title,
.gpc-similar-stores__title {
	margin: 0 0 10px;
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-snug);
	font-weight: 600;
	color: var(--headline, #252525);
}

.gp-editorial-sidebar .gpc-toc__title,
.gpc-toc--sidebar .gpc-toc__title {
	margin: 0 0 12px;
}

.coupon-temp .sidebar .block ul li,
.coupon-temp .sidebar .block ul li a,
.gp-editorial-sidebar .gpc-toc__link {
	font-size: var(--gpc-text-sm);
	line-height: var(--gpc-leading-normal);
}

/* —— Store editorial section spacing —— */

.gp-store-editorial-wrap {
	margin-top: clamp(40px, 5vw, 56px);
	padding-top: clamp(32px, 4vw, 48px);
	border-top: 1px solid #e5e7eb;
}

.gpc-store-editorial__title {
	margin: 0 0 clamp(16px, 2.5vw, 24px);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.25;
	color: #111827;
}

/* —— Shared card surface (comments, trust footer, sidebar) —— */

.gpc-surface-card {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	padding: clamp(18px, 3vw, 24px);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* —— Comments (review + blog) —— */

.gp-editorial-comments {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	padding: clamp(20px, 3vw, 28px);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.gp-editorial-comments .comments-area {
	margin: 0;
}

.gp-editorial-comments .comments-title,
.gp-editorial-comments #reply-title {
	margin: 0 0 16px;
	font-size: clamp(var(--gpc-text-lg), 2vw, var(--gpc-text-xl));
	line-height: var(--gpc-leading-snug);
	font-weight: 700;
	color: var(--headline, #252525);
}

.gp-editorial-comments .comment-notes,
.gp-editorial-comments .logged-in-as {
	margin: 0 0 16px;
	font-size: var(--gpc-text-sm);
	line-height: var(--gpc-leading-normal);
	color: var(--muted, #6b7280);
}

.gp-editorial-comments .comment-form {
	display: grid;
	gap: 16px;
}

.gp-editorial-comments .comment-form-comment label {
	display: block;
	margin-bottom: 8px;
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	color: var(--headline, #252525);
}

.gp-editorial-comments .comment-form textarea,
.gp-editorial-comments .comment-form input[type="text"],
.gp-editorial-comments .comment-form input[type="email"],
.gp-editorial-comments .comment-form input[type="url"] {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-normal);
	color: var(--headline, #252525);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gp-editorial-comments .comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.gp-editorial-comments .comment-form textarea:focus,
.gp-editorial-comments .comment-form input:focus {
	outline: none;
	border-color: var(--accent, #059669);
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.gp-editorial-comments .form-submit {
	margin: 4px 0 0;
}

.gp-editorial-comments .form-submit .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65em 1.5em;
	border: 0;
	border-radius: 8px;
	background: var(--accent, #059669);
	color: #fff;
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.gp-editorial-comments .form-submit .submit:hover {
	background: #047857;
}

.gp-editorial-comments .form-submit .submit:focus-visible {
	outline: 2px solid var(--accent, #059669);
	outline-offset: 2px;
}

.gp-editorial-comments .comment-list {
	margin: clamp(32px, 4vw, 48px) 0 0;
	padding: 0;
	list-style: none;
}

.gp-editorial-comments .comment-list .comment {
	margin: 0 0 16px;
	padding: clamp(16px, 2.5vw, 18px);
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	background: #fafafa;
	box-shadow: none;
}

.gp-editorial-comments .comment-list .comment .comment-meta {
	margin-bottom: 8px;
	font-size: var(--gpc-text-sm);
	color: var(--muted, #6b7280);
}

.gp-editorial-comments .comment-list .comment .comment-content {
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-relaxed);
	color: var(--text, #4f4f4f);
}

.gp-editorial-comments .comment-list .comment .comment-content p:last-child {
	margin-bottom: 0;
}

/* —— Site footer (GeneratePress copyright bar) —— */

.gp-has-store-hero .site-footer {
	border-top: 1px solid #e5e7eb;
	background: #f9fafb;
}

.gp-site-footer + .site-footer {
	border-top: none;
	background: #f3f4f6;
	margin-top: 0;
}

.gp-has-store-hero .site-footer .inside-footer {
	padding: 0;
}

.gp-has-store-hero .site-footer .site-info {
	position: static;
	display: block;
	width: 100%;
	max-width: var(--gpc-max, 100%);
	margin: 0 auto;
	padding: clamp(16px, 2.5vw, 20px) var(--gpc-gutter, 20px);
	box-sizing: border-box;
	text-align: center;
	font-size: var(--gpc-text-xs);
	line-height: 1.5;
	color: var(--muted, #6b7280);
	letter-spacing: 0.01em;
	border-top: 1px solid #e5e7eb;
}

.gp-has-store-hero .site-footer .site-info a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gp-has-store-hero .site-footer .site-info a:hover {
	color: var(--headline, #252525);
}

/* —— Responsive —— */

@media (min-width: 1025px) {
	.coupon-temp .sidebar--mobile-stack {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.post-template-single-coupon-template .coupon-temp .post-content > .site-container,
	.post-template-single-review-template .gp-editorial-temp .post-content > .site-container,
	.post-template-single-blog-template .gp-editorial-temp .post-content > .site-container {
		flex-direction: column;
		padding-top: 20px;
	}

	.coupon-temp .sidebar .block:not(.gpc-toc--sidebar),
	.gpc-sidebar-sticky {
		position: static;
		top: auto;
		max-height: none;
		overflow: visible;
	}

	.coupon-temp .sidebar--mobile-stack {
		display: block;
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}

	.coupon-temp .sidebar--mobile-stack .gpc-sidebar-insights.block {
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 14px;
		padding: clamp(16px, 3vw, 20px);
		box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
	}

	.post-template-single-coupon-template .coupon-temp .post-content .sidebar.sidebar--desktop {
		display: none;
	}

	.coupon-temp .post-content .sidebar.sidebar--desktop,
	.gp-editorial-temp .gp-editorial-sidebar {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.post-template-single-coupon-template .coupon-temp .post-content > .site-container,
	.post-template-single-review-template .gp-editorial-temp .post-content > .site-container,
	.post-template-single-blog-template .gp-editorial-temp .post-content > .site-container {
		gap: 24px;
		padding-top: 16px;
		padding-bottom: clamp(32px, 5vw, 48px);
	}

	.coupon-temp .sidebar .block,
	.gp-editorial-sidebar .gpc-toc.block,
	.gp-editorial-sidebar .gpc-review-rail.block {
		padding: 14px;
		margin-bottom: 14px;
		border-radius: 10px;
	}

	.coupon-temp .sidebar .block .title,
	.gp-editorial-sidebar .gpc-toc__title {
		font-size: var(--gpc-text-sm);
		margin-bottom: 8px;
	}

	.gp-editorial-comments {
		padding: 14px;
		border-radius: 10px;
	}

	.gp-editorial-comments .comments-title,
	.gp-editorial-comments #reply-title {
		font-size: var(--gpc-text-lg);
		margin-bottom: 12px;
	}

	.gpc-offers-heading {
		font-size: var(--gpc-section-title);
		margin-bottom: 12px;
	}

	.gp-has-store-hero .site-footer .site-info {
		font-size: 0.6875rem;
		padding: 14px var(--gpc-gutter, 16px);
	}

	.gp-store-editorial-wrap {
		margin-top: clamp(28px, 4vw, 40px);
		padding-top: clamp(24px, 3vw, 32px);
	}

	.gp-editorial-comments .comment-form {
		gap: 12px;
	}
}

/* === coupon-cards.css === */
/**
 * GP Coupons — offer cards, tabs, and reveal strip.
 */

/* === Offer cards === */
/**
 * GP Coupons — offer card styles.
 *
 * Self-contained `.gpc-*` namespace. Scoped under `.coupon-temp` for cascade control.
 */

.coupon-temp {
	--gpc-blue: #2563eb;
	--gpc-blue-dark: #1d4ed8;
	--gpc-green: #166534;
	--gpc-green-bright: #15803d;
	--gpc-red-text: #b91c1c;
	/* Coupon reveal / deal CTA — hero-green tones with AA-compliant white text */
	--gpc-mask-green: #1a715d;
	--gpc-mask-green-hover: #124a3e;
	--gpc-ink: #111827;
	--gpc-muted: #4b5563;
	--gpc-line: #e5e7eb;
	--gpc-red: #e5484d;
	/* Readable type scale — inherits global tokens from :root */
	--gpc-cta-h: 44px;
	--gpc-mask-cut: 3rem;
	--gpc-mask-btn-fs: var(--gpc-text-sm);
	--gpc-mask-hint-fs: var(--gpc-text-xl);
	/* Filter pill tokens — segmented control (see tab-switcher block). */
	--gpc-pill-h: 38px;
	--gpc-pill-fs: 0.875rem;
	--gpc-pill-px: 10px;
	--gpc-pill-gap: 4px;
}

.coupon-temp .gpc-card[hidden] {
	display: none !important;
}

/* ---------- Tab switcher (segmented filter — all viewports) ---------- */

.coupon-temp .tab-switcher .tabs-wrapper {
	width: 100%;
	margin-bottom: 16px;
}

.coupon-temp .tab-switcher .tabs {
	display: flex;
	width: 100%;
	padding: 4px;
	gap: var(--gpc-pill-gap);
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-sizing: border-box;
	align-items: stretch;
}

.coupon-temp .tab-switcher .tabs button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	min-height: var(--gpc-pill-h);
	padding: 0 var(--gpc-pill-px);
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #4b5563;
	font-size: var(--gpc-pill-fs);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	-webkit-tap-highlight-color: transparent;
	box-shadow: none;
}

.coupon-temp .tab-switcher .tabs button.active {
	color: var(--gpc-blue);
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.coupon-temp .tab-switcher .tabs button:hover:not(.active) {
	color: #111827;
	background: rgba(255, 255, 255, 0.55);
}

.coupon-temp .tab-switcher .tabs button:focus-visible {
	outline: 2px solid var(--gpc-blue-dark);
	outline-offset: 2px;
}

@media (max-width: 480px) {
	.coupon-temp {
		--gpc-pill-h: 34px;
		--gpc-pill-fs: 0.75rem;
		--gpc-pill-px: 4px;
	}

	.coupon-temp .tab-switcher .tabs {
		padding: 3px;
		gap: 3px;
		border-radius: 9px;
	}

	.coupon-temp .tab-switcher .tabs button {
		border-radius: 7px;
	}
}

/* ---------- Card shell ---------- */

.coupon-temp .gpc-card {
	display: block;
	position: relative;
	background: #fff;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	box-shadow: none;
	padding: 14px 18px;
	margin: 0 0 14px;
	transition: box-shadow 0.2s ease;
}

.coupon-temp .gpc-card.has-details {
	padding-bottom: 20px;
	margin-bottom: 18px;
}

.coupon-temp .gpc-card:hover {
	box-shadow: 0 6px 20px rgba(17, 24, 39, 0.07);
}

.coupon-temp .gpc-card.is-top-pick {
	padding-top: 18px;
	border-color: #bfdbfe;
}

.coupon-temp .gpc-card__ribbon {
	position: absolute;
	top: 0;
	left: 16px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gpc-blue);
	color: #fff;
	font-size: var(--gpc-text-xs);
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 4px 14px 4px 4px;
	border-radius: 999px;
	z-index: 3;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.22);
}

.coupon-temp .gpc-card__ribbon-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	color: #111827;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	flex-shrink: 0;
}

.coupon-temp .gpc-card__ribbon-label {
	padding-right: 2px;
}

.coupon-temp .gpc-card__rank {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid #374151;
	background: #fff;
	color: #111827;
	font-size: var(--gpc-text-sm);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	line-height: 1;
}

.coupon-temp .gpc-card__inner {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 210px;
	gap: 20px;
	align-items: stretch;
}

/* ---------- Left: brand ---------- */

.coupon-temp .gpc-card__brand {
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 100%;
	padding-top: 6px;
}

.coupon-temp .gpc-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	padding: 2px 0;
}

.coupon-temp .gpc-card__logo img {
	display: block;
	max-width: 140px;
	max-height: 46px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.coupon-temp .gpc-card__logo-text {
	font-size: var(--gpc-text-md);
	font-weight: 800;
	color: var(--gpc-ink);
	line-height: 1.25;
	word-break: break-word;
}

.coupon-temp .gpc-card__used {
	margin: 0;
	font-size: var(--gpc-text-xs);
	line-height: 1.45;
	color: var(--gpc-muted);
	max-width: 160px;
}

/* Store pages: logo only in card brand column (usage stats live in sidebar). */
.post-template-single-coupon-template .coupon-temp .gpc-card__used {
	display: none;
}

.post-template-single-coupon-template .coupon-temp .gpc-card__logo img {
	max-height: 40px;
	max-width: 120px;
}

/* ---------- Expandable details (native <details> — crawlable without JS) ---------- */

.coupon-temp .gpc-card.has-details .gpc-card__details-wrap {
	width: 100%;
	clear: both;
}

.coupon-temp .gpc-card__details-wrap {
	border-top: 1px dashed #d1d5db;
	margin-top: 16px;
	padding-top: 12px;
	text-align: center;
}

.coupon-temp .gpc-card__details-wrap summary.gpc-card__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	position: static;
	left: auto;
	bottom: auto;
	transform: none;
	width: auto;
	max-width: 100%;
	min-height: 36px;
	margin: 0 auto;
	padding: 8px 18px;
	cursor: pointer;
	list-style: none;
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	color: var(--gpc-blue);
	background: #eef2fc;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	white-space: nowrap;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.coupon-temp .gpc-card__details-wrap summary.gpc-card__more::-webkit-details-marker {
	display: none;
}

.coupon-temp .gpc-card__details-wrap summary.gpc-card__more::marker {
	content: "";
}

.coupon-temp .gpc-card__details-wrap summary.gpc-card__more svg {
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.coupon-temp .gpc-card__details-wrap[open] summary.gpc-card__more svg {
	transform: rotate(180deg);
}

.coupon-temp .gpc-card__details-wrap summary.gpc-card__more:hover {
	background: #e0e7ff;
	border-color: #bfdbfe;
	color: var(--gpc-blue-dark);
}

.coupon-temp .gpc-card__details {
	display: block;
	padding-top: 16px;
	text-align: left;
	font-size: var(--gpc-text-base);
	line-height: 1.65;
	color: #4b5563;
}

.coupon-temp .gpc-card__details p {
	margin: 0 0 12px;
}

.coupon-temp .gpc-card__details ul {
	margin: 0 0 12px 18px;
}

/* ---------- Middle: body ---------- */

.coupon-temp .gpc-card__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
	padding: 4px 0;
}

.coupon-temp .gpc-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 6px 0 0;
}

.coupon-temp .gpc-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	line-height: 1;
	padding: 7px 13px;
	border-radius: 999px;
	border: 1px solid transparent;
	letter-spacing: 0.01em;
}

.coupon-temp .gpc-badge svg {
	flex-shrink: 0;
}

.coupon-temp .gpc-badge--exclusive {
	background: #fef3d7;
	color: #b45309;
	border-color: #f6dfa6;
}

.coupon-temp .gpc-badge--verified {
	background: #dcfce7;
	color: #15803d;
	border-color: #b6f0c7;
}

.coupon-temp .gpc-badge--expired {
	background: #f3f4f6;
	color: #4b5563;
	border-color: #e5e7eb;
}

/* Expired offers: muted, no hover lift, plain button */
.coupon-temp .gpc-card.is-expired {
	opacity: 0.85;
}

.coupon-temp .gpc-card.is-expired .gpc-card__discount {
	color: #9ca3af;
}

.coupon-temp .gpc-card.is-expired .gpc-mask {
	border-color: #d1d5db;
}

.coupon-temp .gpc-card.is-expired .gpc-mask__btn {
	background: #9ca3af;
}

.coupon-temp .gpc-card.is-expired .gpc-mask:hover .gpc-mask__btn {
	background: #6b7280;
}

.coupon-temp .gpc-card.is-expired .gpc-deal-btn {
	background: #9ca3af;
}

.coupon-temp .gpc-card.is-expired .gpc-deal-btn:hover {
	background: #6b7280;
}

.coupon-temp .gpc-card__title.headline {
	font-size: var(--gpc-card-title);
	font-weight: 700;
	line-height: 1.35;
	color: var(--gpc-ink);
	margin: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.coupon-temp .gpc-card__title.headline a {
	color: inherit;
	text-decoration: none;
}

.coupon-temp .gpc-card__title.headline a:hover {
	color: var(--gpc-blue);
}

.coupon-temp .gpc-card__meta {
	margin: 6px 0 0;
	font-size: var(--gpc-text-sm);
	color: #4b5563;
	line-height: 1.4;
}

.coupon-temp .gpc-card__meta .gpc-card__last-tried {
	font-weight: 600;
	color: #374151;
}

.coupon-temp .gpc-card .gpc-mask__btn:focus-visible,
.coupon-temp .gpc-card .gpc-deal-btn:focus-visible,
.coupon-temp .gpc-card__details-wrap summary.gpc-card__more:focus-visible {
	outline: 2px solid var(--accent, #059669);
	outline-offset: 2px;
}

/* ---------- Right: action ---------- */

.coupon-temp .gpc-card__action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	text-align: center;
	padding-left: 18px;
	border-left: 2px dashed #d1d5db;
	min-width: 0;
	align-self: stretch;
}

.coupon-temp .gpc-card__discount {
	margin: 0 0 10px;
	padding: 0;
	background: none;
	border-radius: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--gpc-green);
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.coupon-temp .gpc-card__discount span {
	display: inline;
	font-size: 24px;
	font-weight: 800;
	color: var(--gpc-green);
	margin-left: 0.15em;
	vertical-align: baseline;
}

.coupon-temp .tab-switcher .tabs-wrapper {
	position: static;
	top: auto;
	z-index: auto;
	margin-top: 0;
	margin-bottom: 24px;
	background: transparent;
}

/* Coupon code mask — diagonal green overlay + striped reveal */
.coupon-temp .gpc-card .gpc-mask {
	position: relative;
	display: block;
	width: 100%;
	height: var(--gpc-cta-h);
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	overflow: hidden;
	background-color: #fff;
	background-image: repeating-linear-gradient(
		135deg,
		#ececec 0,
		#ececec 1px,
		transparent 1px,
		transparent 6px
	);
}

.coupon-temp .gpc-card .gpc-mask__reveal {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 16px 0 50%;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.coupon-temp .gpc-card .gpc-mask__hint {
	font-family: inherit;
	font-size: var(--gpc-mask-hint-fs);
	font-weight: 700;
	line-height: 1;
	color: #1f2937;
	letter-spacing: 0.06em;
	font-variant-numeric: tabular-nums;
}

.coupon-temp .gpc-card .gpc-mask__btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 1rem;
	border: 0;
	background: var(--gpc-mask-green);
	color: #fff;
	font-size: var(--gpc-mask-btn-fs);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	z-index: 2;
	clip-path: polygon(
		0 0,
		calc(100% - var(--gpc-mask-cut)) 0,
		100% 100%,
		0 100%
	);
	transition:
		background 0.2s ease,
		clip-path 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.coupon-temp .gpc-card .gpc-mask:hover .gpc-mask__btn {
	background: var(--gpc-mask-green-hover);
	clip-path: polygon(
		0 0,
		calc(100% - 3.75rem) 0,
		100% 100%,
		0 100%
	);
}

.coupon-temp .gpc-card .gpc-mask:hover .gpc-mask__hint {
	color: #111;
}

.coupon-temp .gpc-card .gpc-mask:active .gpc-mask__btn {
	transform: scale(0.99);
}

@media (prefers-reduced-motion: reduce) {
	.coupon-temp .gpc-card .gpc-mask__btn {
		transition: background 0.2s ease;
	}
}

/* Deal CTA — same footprint as coupon mask, solid green */
.coupon-temp .gpc-card .gpc-deal-wrap {
	width: 100%;
}

.coupon-temp .gpc-card .gpc-deal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--gpc-cta-h);
	margin: 0;
	padding: 0 1rem;
	border: 1px solid #124a3e;
	border-radius: 6px;
	background: var(--gpc-mask-green, #1a715d);
	color: #fff;
	font-size: var(--gpc-mask-btn-fs);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.coupon-temp .gpc-card .gpc-deal-btn:hover {
	background: var(--gpc-mask-green-hover, #124a3e);
	color: #fff;
}

.coupon-temp .gpc-card .gpc-deal-btn:active {
	transform: scale(0.99);
}

.coupon-temp .gpc-timer {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	justify-content: center;
	width: 100%;
}

.coupon-temp .gpc-timer span {
	flex: 0 0 auto;
	min-width: 48px;
	background: var(--gpc-red);
	color: #fff;
	padding: 8px 7px;
	border-radius: 6px;
	font-size: var(--gpc-text-xs);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	text-align: center;
}

.coupon-temp .gpc-card:has(.gpc-card__rank) .gpc-card__brand {
	padding-top: 22px;
}

.coupon-temp .gpc-card.is-top-pick .gpc-card__brand {
	padding-top: 4px;
}

.coupon-temp .gpc-card:has(.gpc-card__rank) .gpc-card__body {
	padding-top: 4px;
}

.coupon-temp .gpc-card.is-top-pick .gpc-card__body {
	padding-top: 2px;
}

/* (Expandable details styles live above the card body block.) */
/* === coupon-modal.css === */
/**
 * GP Coupons — code reveal modal.
 */

/* ---------- Reveal popup (code modal) ---------- */

.gpc-modal {
	--gpc-mask-green: #1a715d;
	--gpc-mask-green-hover: #124a3e;
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gpc-modal[hidden] {
	display: none !important;
}

.gpc-modal.active {
	display: flex;
}

.gpc-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.6);
}

.gpc-modal__box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
	padding: 40px 40px 32px;
	text-align: center;
}

.gpc-modal__close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 32px;
	height: 32px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
}

.gpc-modal__close:hover {
	color: #111827;
}

.gpc-modal__close:focus-visible,
.gp-disclosure-dialog__close:focus-visible,
.gpc-modal__copy:focus-visible {
	outline: 2px solid var(--accent, #059669);
	outline-offset: 2px;
}

.gpc-modal__logo {
	margin-bottom: 18px;
}

.gpc-modal__logo img {
	max-width: 160px;
	max-height: 46px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.gpc-modal__title {
	font-size: var(--gpc-text-2xl);
	font-weight: 800;
	line-height: var(--gpc-leading-snug);
	color: #111827;
	margin: 0 0 16px;
}

.gpc-modal__deal-success {
	margin: 0 0 16px;
	padding: 16px 18px;
	border-radius: 10px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
}

.gpc-modal__deal-success-msg {
	margin: 0 0 6px;
	font-size: var(--gpc-text-lg);
	font-weight: 700;
	line-height: var(--gpc-leading-snug);
	color: var(--gpc-green-text, #166534);
}

.gpc-modal__deal-success-hint {
	margin: 0;
	font-size: var(--gpc-text-sm);
	line-height: var(--gpc-leading-normal);
	color: #4b5563;
}

.gpc-modal__paste {
	font-size: 15px;
	color: #4b5563;
	margin: 0 0 14px;
}

.gpc-modal__store {
	color: #2563eb;
	font-weight: 700;
	text-decoration: none;
}

.gpc-modal__code-loading {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 72px;
	margin: 0 0 18px;
	padding: 12px 16px;
	color: #4b5563;
	font-size: 15px;
	font-weight: 600;
	border: 2px dashed #d1d5db;
	border-radius: 8px;
	background: #f9fafb;
}

.gpc-modal__code-loading.is-loading,
.gpc-modal__code-loading:not([hidden]) {
	display: flex;
}

.gpc-modal__spinner {
	width: 22px;
	height: 22px;
	border: 2px solid #d1d5db;
	border-top-color: var(--accent, #059669);
	border-radius: 50%;
	animation: gpc-spin 0.8s linear infinite;
}

@keyframes gpc-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.gpc-modal__spinner {
		animation: none;
		border-top-color: #d1d5db;
	}
}

.gpc-modal__code {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 2px dashed #b8cdb4;
	border-radius: 8px;
	padding: 16px 18px;
	margin: 0 0 18px;
	background: #f8faf7;
}

.gpc-modal__code-val {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #111827;
	text-transform: uppercase;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gpc-modal__copy {
	flex-shrink: 0;
	background: var(--gpc-mask-green, #1a715d);
	color: #fff;
	border: 0;
	border-radius: 5px;
	padding: 10px 18px;
	font-size: var(--gpc-text-base);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
}

.gpc-modal__copy:hover {
	background: var(--gpc-mask-green-hover, #124a3e);
}

.gpc-modal__redeem {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 5px;
	margin: 0 0 18px;
	transition: background 0.2s ease;
}

.gpc-modal__redeem:hover {
	background: #dbeafe;
	color: #1e40af;
}

.gpc-modal__redeem--deal {
	background: var(--gpc-mask-green, #1a715d);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.gpc-modal__redeem--deal:hover {
	background: var(--gpc-mask-green-hover, #124a3e);
	color: #fff;
}

.gpc-modal__ad {
	display: none;
	margin: 18px 0 0;
	text-align: center;
	min-height: 0;
}

.gpc-modal__ad.is-visible {
	display: block;
}

.gpc-modal__ad-label {
	display: block;
	margin: 0 0 4px;
	text-align: left;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #9aa1ab;
}

.gpc-modal__ad .adsbygoogle {
	display: block;
	width: 100%;
	min-height: 90px;
	margin: 0 auto;
}

/* Collapse the unit (and its label) when AdSense has no ad to serve. */
.gpc-modal__ad ins.adsbygoogle[data-ad-status="unfilled"] {
	display: none !important;
}

.gpc-modal__details {
	text-align: left;
	border-top: 1px solid #eef0f3;
	padding-top: 18px;
}

.gpc-modal__details-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #111827;
}

.gpc-modal__details-body {
	font-size: 14.5px;
	line-height: 1.65;
	color: #4b5563;
}

.gpc-modal__details-body p {
	margin: 0 0 10px;
}

@media (max-width: 767px) {
	.gpc-modal__box {
		padding: 32px 22px 24px;
	}

	.gpc-modal__title {
		font-size: var(--gpc-text-xl);
	}

	.gpc-modal__deal-success {
		padding: 14px 16px;
	}

	.gpc-modal__code {
		flex-direction: column;
		align-items: stretch;
	}

	.gpc-modal__copy {
		width: 100%;
		padding: 12px 18px;
	}
}
/* === coupon-widgets.css === */
/**
 * GP Coupons — sidebar offer stats (insights panel).
 */

.coupon-temp .gpc-sidebar-insights.block {
	margin-bottom: 20px;
	overflow: hidden;
}

.coupon-temp .gpc-sidebar-insights__stats {
	padding: 0;
}

.coupon-temp .gp-skip-link:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0 0 12px;
	padding: 10px 14px;
	clip: auto;
	overflow: visible;
	background: #111827;
	color: #fff;
	border-radius: 6px;
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	text-decoration: none;
	z-index: 2;
}

/* —— Offer stats —— */

.coupon-temp .gpc-offer-stats {
	padding: 0;
}

.coupon-temp .gpc-offer-stats__list {
	margin: 0;
	padding: 0;
}

.coupon-temp .gpc-offer-stats__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px 14px;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #f3f4f6;
}

.coupon-temp .gpc-offer-stats__row:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.coupon-temp .gpc-offer-stats__label {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	margin: 0;
}

.coupon-temp .gpc-offer-stats__label-text {
	font-size: var(--gpc-text-sm);
	font-weight: 500;
	line-height: var(--gpc-leading-snug);
	color: #4b5563;
}

.coupon-temp .gpc-offer-stats__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #f3f4f6;
	color: #6b7280;
}

.coupon-temp .gpc-offer-stats__icon-wrap--offers {
	background: #eff6ff;
	color: #2563eb;
}

.coupon-temp .gpc-offer-stats__icon-wrap--verified {
	background: #ecfdf5;
	color: #059669;
}

.coupon-temp .gpc-offer-stats__icon-wrap--updated {
	background: #fef3c7;
	color: #d97706;
}

.coupon-temp .gpc-offer-stats__icon {
	display: block;
}

.coupon-temp .gpc-offer-stats__value {
	margin: 0;
	font-size: var(--gpc-text-base);
	font-weight: 700;
	color: #111827;
	text-align: right;
	line-height: var(--gpc-leading-snug);
	font-variant-numeric: tabular-nums;
}

.coupon-temp .gpc-offer-stats__value--date {
	font-size: var(--gpc-text-sm);
	font-weight: 600;
	color: #374151;
	white-space: normal;
	max-width: 11rem;
}

.coupon-temp .gpc-offer-stats__today {
	margin-top: 14px;
}

.coupon-temp .gpc-offer-stats__today-card {
	padding: 14px 12px;
	border-radius: 10px;
	background: linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
	border: 1px solid #e5e7eb;
	text-align: center;
}

.coupon-temp .gpc-offer-stats__today-head {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 6px;
}

.coupon-temp .gpc-offer-stats__today-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #fff;
	color: #4b5563;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.coupon-temp .gpc-offer-stats__people {
	display: block;
}

.coupon-temp .gpc-offer-stats__today-num {
	font-size: clamp(1.375rem, 3.5vw, 1.625rem);
	font-weight: 800;
	line-height: 1;
	color: #111827;
	font-variant-numeric: tabular-nums;
}

.coupon-temp .gpc-offer-stats__today-text {
	margin: 0;
	font-size: var(--gpc-text-sm);
	line-height: var(--gpc-leading-normal);
	color: #6b7280;
}

@media (max-width: 767px) {
	.coupon-temp .gpc-offer-stats__row {
		padding: 11px 0;
	}

	.coupon-temp .gpc-offer-stats__value--date {
		max-width: 9.5rem;
		font-size: var(--gpc-text-xs);
	}
}

/* === coupon-cards-responsive.css === */
/**
 * GP Coupons — offer card responsive breakpoints.
 */

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
	.coupon-temp .gpc-card__inner {
		grid-template-columns: 138px minmax(0, 1fr) 190px;
		gap: 16px;
	}

	.coupon-temp .gpc-card__logo img {
		max-width: 128px;
		max-height: 44px;
	}

	.coupon-temp .gpc-card__discount {
		font-size: 22px;
	}

	.coupon-temp .gpc-card__discount span {
		font-size: 22px;
	}
}

@media (max-width: 900px) {
	.coupon-temp .gpc-card__inner {
		grid-template-columns: 126px minmax(0, 1fr) 176px;
		gap: 14px;
	}

	.coupon-temp .gpc-card__action {
		padding-left: 14px;
	}

	.coupon-temp .gpc-card__logo img {
		max-width: 118px;
		max-height: 42px;
	}
}

@media (max-width: 767px) {
	.coupon-temp {
		--gpc-cta-h: 48px;
		--gpc-pill-h: 40px;
		--gpc-pill-fs: 0.8125rem;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}

	.coupon-temp .gpc-offers-heading {
		font-size: var(--gpc-section-title);
		line-height: var(--gpc-leading-tight);
		margin-bottom: 12px;
		letter-spacing: -0.015em;
	}

	.coupon-temp .tab-switcher .tabs-wrapper {
		margin-bottom: 12px;
	}

	.coupon-temp .coupon-block .gpc-card,
	.coupon-temp .gpc-card {
		padding: 14px;
		margin-bottom: 12px;
		overflow: visible;
		border-style: solid;
		border-color: #e5e7eb;
		border-radius: 12px;
		box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
	}

	/* Top pick + rank: in-flow badges (no absolute overlap / clipping). */
	.coupon-temp .gpc-card.is-top-pick,
	.coupon-temp .gpc-card:has(> .gpc-card__rank) {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding-top: 14px;
	}

	.coupon-temp .gpc-card.is-top-pick {
		border-color: #93c5fd;
		background: linear-gradient(180deg, #f8fbff 0%, #fff 52px);
	}

	.coupon-temp .gpc-card__ribbon {
		position: static;
		order: -2;
		align-self: flex-start;
		transform: none;
		margin: 0;
		padding: 4px 12px 4px 4px;
		font-size: 0.75rem;
		box-shadow: 0 1px 2px rgba(37, 99, 235, 0.16);
	}

	.coupon-temp .gpc-card__ribbon-num {
		width: 22px;
		height: 22px;
		font-size: 0.6875rem;
	}

	.coupon-temp .gpc-card__rank {
		position: static;
		order: -1;
		align-self: flex-start;
		width: 26px;
		height: 26px;
		margin: 0;
		border: 1.5px solid #64748b;
		background: #f1f5f9;
		color: #0f172a;
		font-size: 0.75rem;
		font-weight: 700;
	}

	.coupon-temp .gpc-card.has-details {
		padding-bottom: 14px;
		margin-bottom: 14px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.coupon-temp .gpc-card.has-details .gpc-card__inner,
	.coupon-temp .gpc-card.has-details .gpc-card__details-wrap {
		align-self: stretch;
		width: 100%;
	}

	.coupon-temp .gpc-card.has-details .gpc-card__details-wrap {
		flex-shrink: 0;
	}

	.coupon-temp .gpc-card__inner {
		grid-template-columns: 1fr;
		gap: 12px;
		width: 100%;
	}

	.post-template-single-coupon-template .coupon-temp .gpc-card__inner {
		padding-top: 0;
	}

	/* Store pages: compact logo row above offer title. */
	.post-template-single-coupon-template .coupon-temp .gpc-card__brand {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
		padding: 0 0 10px;
		margin-bottom: 0;
		border-bottom: 0;
		min-height: 0;
	}

	.post-template-single-coupon-template .coupon-temp .gpc-card__used {
		display: none;
	}

	.coupon-temp .gpc-card__brand {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		text-align: left;
		gap: 10px;
		padding: 0 0 12px;
		margin-bottom: 0;
		border-bottom: 1px solid #eef0f3;
		min-height: 0;
	}

	.coupon-temp .gpc-card__logo {
		width: auto;
		min-height: 0;
		justify-content: flex-start;
		padding: 0;
		flex-shrink: 0;
	}

	.coupon-temp .gpc-card__logo img {
		max-height: 36px;
		max-width: min(120px, 40vw);
		width: auto;
		height: auto;
		margin: 0;
	}

	.post-template-single-coupon-template .coupon-temp .gpc-card__logo img {
		max-height: 32px;
		max-width: min(100px, 36vw);
	}

	.coupon-temp .gpc-card__logo-text {
		font-size: var(--gpc-text-sm);
		text-align: left;
		max-width: 100%;
	}

	.coupon-temp .gpc-card__used {
		max-width: none;
		margin: 0;
		font-size: var(--gpc-text-xs);
		line-height: 1.4;
		text-align: left;
		color: var(--gpc-muted);
	}

	.coupon-temp .gpc-card__body {
		padding: 0;
		margin: 0;
		border-bottom: 0;
		min-width: 0;
		text-align: left;
	}

	.coupon-temp .gpc-card__title.headline {
		font-size: var(--gpc-card-title);
		font-weight: 700;
		line-height: 1.4;
		text-align: left;
		letter-spacing: -0.01em;
	}

	.coupon-temp .gpc-card__badges {
		gap: 6px;
		justify-content: flex-start;
		margin-top: 8px;
	}

	.coupon-temp .gpc-card__badges .gpc-badge {
		font-size: 0.75rem;
		padding: 4px 8px;
	}

	.coupon-temp .gpc-card__meta {
		font-size: 0.8125rem;
		margin-top: 8px;
		line-height: 1.45;
	}

	.coupon-temp .gpc-card__action {
		padding: 0;
		border-left: 0;
		border-top: 0;
		align-items: stretch;
		justify-content: stretch;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.coupon-temp .gpc-card .gpc-deal-wrap,
	.coupon-temp .gpc-card .gpc-mask {
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
	}

	.coupon-temp .gpc-card__discount {
		display: none;
	}

	.coupon-temp .gpc-card .gpc-deal-btn {
		height: var(--gpc-cta-h);
		border-radius: 8px;
		font-size: 0.8125rem;
	}

	.coupon-temp .gpc-card .gpc-deal-wrap {
		display: block;
	}

	.coupon-temp .gpc-card__details-wrap summary.gpc-card__more {
		min-height: 44px;
		padding: 10px 18px;
	}

	.coupon-temp .gpc-timer {
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-top: 8px;
		gap: 4px;
	}

	.coupon-temp .gpc-timer span {
		min-width: 38px;
		padding: 5px 6px;
		font-size: var(--gpc-text-xs);
	}
}

@media (max-width: 480px) {
	.coupon-temp {
		--gpc-cta-h: 46px;
		--gpc-pill-h: 38px;
		--gpc-pill-fs: 0.75rem;
	}

	.coupon-temp .coupon-block .gpc-card,
	.coupon-temp .gpc-card {
		padding: 12px;
		margin-bottom: 10px;
	}

	.coupon-temp .gpc-card__title.headline {
		font-size: var(--gpc-card-title);
	}

	.coupon-temp .gpc-offers-heading {
		font-size: var(--gpc-section-title);
	}
}
/* === coupon-trust-footer.css === */
/**
 * GP Coupons — EEAT site footer (multi-column).
 */

.gp-site-footer {
	display: block;
	width: 100%;
	clear: both;
	border-top: 1px solid #e5e7eb;
	background: #fff;
	color: var(--text, #4b5563);
	font-size: var(--gpc-text-sm, 0.9375rem);
	line-height: var(--gpc-leading-normal, 1.5);
}

.gp-site-footer__inner {
	max-width: var(--gpc-max, var(--gp-container--max-width, 1200px));
	width: 100%;
	margin: 0 auto;
	padding: clamp(36px, 5vw, 56px) var(--gpc-gutter, 20px) clamp(20px, 3vw, 28px);
	box-sizing: border-box;
}

.gp-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 48px);
	margin-bottom: clamp(24px, 3vw, 36px);
}

.gp-site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	color: var(--headline, #111827);
	text-decoration: none;
}

.gp-site-footer__brand-link:hover {
	color: var(--headline, #111827);
	text-decoration: none;
}

.gp-site-footer__logo {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #e5e7eb;
}

.gp-site-footer__name {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.gp-site-footer__tagline {
	margin: 0 0 18px;
	max-width: 34ch;
	font-size: var(--gpc-text-sm, 0.9375rem);
	line-height: var(--gpc-leading-relaxed, 1.65);
	color: var(--muted, #6b7280);
}

.gp-site-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--muted, #6b7280);
	text-decoration: none;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.gp-site-footer__social-link svg {
	display: block;
	flex-shrink: 0;
}

.gp-site-footer__social-link:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.gp-site-footer__social-link--facebook:hover {
	color: #1877f2;
	background: #eef4fe;
	border-color: #bfdbfe;
}

.gp-site-footer__social-link--x:hover {
	color: #0f1419;
	background: #f3f4f6;
	border-color: #d1d5db;
}

.gp-site-footer__social-link--linkedin:hover {
	color: #0a66c2;
	background: #eef4fb;
	border-color: #bfdbfe;
}

.gp-site-footer__social-link--youtube:hover {
	color: #ff0000;
	background: #fef2f2;
	border-color: #fecaca;
}

.gp-site-footer__social-link--pinterest:hover {
	color: #bd081c;
	background: #fef2f2;
	border-color: #fecaca;
}

.gp-site-footer__social-link--instagram:hover {
	color: #c13584;
	background: #fdf2f8;
	border-color: #fbcfe8;
}

.gp-site-footer__social-link--quora:hover {
	color: #b92b27;
	background: #fef2f2;
	border-color: #fecaca;
}

.gp-site-footer__col-title {
	margin: 0 0 14px;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--muted, #6b7280);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.gp-site-footer__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gp-site-footer__links li + li {
	margin-top: 10px;
}

.gp-site-footer__links a {
	display: inline-block;
	color: var(--headline, #374151);
	text-decoration: none;
	font-weight: 500;
	line-height: 1.4;
	transition: color 0.15s ease;
}

.gp-site-footer__links a:hover {
	color: var(--accent, #059669);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.gp-site-footer__copy {
	margin: 0;
	padding-top: 18px;
	border-top: 1px solid #e5e7eb;
	font-size: var(--gpc-text-xs, 0.8125rem);
	line-height: 1.5;
	color: var(--muted, #9ca3af);
	text-align: center;
}

/* Hide GeneratePress default footer bar when the custom EEAT footer is active */
body.gp-has-site-footer .site-footer,
.gp-site-footer + .site-footer {
	display: none !important;
}

@media (max-width: 1024px) {
	.gp-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gp-site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.gp-site-footer__inner {
		padding-top: 28px;
		padding-bottom: 16px;
	}

	.gp-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 20px;
	}

	.gp-site-footer__tagline {
		max-width: none;
	}

	.gp-site-footer__copy {
		padding-top: 14px;
		font-size: 0.75rem;
	}
}

/* === blocks.css === */
/**
 * GP Coupons — Gutenberg block styles (frontend + editor base).
 *
 * Scoped to .gpc-block-content and standard .entry-content wrappers.
 */

.gpc-block-content,
.gp-store-editorial,
.gpc-offer-details.entry-content,
.gp-has-editorial-hero .entry-content,
.single-post .entry-content,
.single-page .entry-content {
	--gpc-block-gap: clamp(1rem, 2.5vw, 1.5rem);
	--gpc-wide-size: var(--wp--style--global--wide-size, 1200px);
	overflow-wrap: break-word;
	word-wrap: break-word;
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-relaxed);
	color: var(--text, #4f4f4f);
}

.gpc-block-content h2,
.gp-store-editorial h2,
.gpc-offer-details h2,
.entry-content h2 {
	font-size: clamp(var(--gpc-text-xl), 2.4vw, var(--gpc-text-2xl));
	line-height: var(--gpc-leading-tight);
	font-weight: 700;
	color: var(--headline, #252525);
	margin: 1.75em 0 0.65em;
}

.gpc-block-content h3,
.gp-store-editorial h3,
.gpc-offer-details h3,
.entry-content h3 {
	font-size: clamp(var(--gpc-text-lg), 2vw, var(--gpc-text-xl));
	line-height: var(--gpc-leading-snug);
	font-weight: 600;
	color: var(--headline, #252525);
	margin: 1.5em 0 0.5em;
}

.gpc-block-content h4,
.gp-store-editorial h4,
.gpc-offer-details h4,
.entry-content h4 {
	font-size: var(--gpc-text-lg);
	line-height: var(--gpc-leading-snug);
	font-weight: 600;
	color: var(--headline, #252525);
	margin: 1.25em 0 0.45em;
}

.gpc-block-content p,
.gp-store-editorial p,
.gpc-offer-details p,
.entry-content p {
	margin: 0 0 1em;
}

.gpc-block-content > * + *,
.gp-store-editorial > * + *,
.gpc-offer-details.entry-content > * + *,
.entry-content > * + * {
	margin-top: var(--gpc-block-gap);
}

/* —— Alignment (wide / full) —— */

.gpc-block-content .alignwide,
.gp-store-editorial .alignwide,
.gpc-offer-details .alignwide,
.entry-content .alignwide {
	width: min(var(--gpc-wide-size), 100vw - (var(--gpc-gutter, 20px) * 2));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.gpc-block-content .alignfull,
.gp-store-editorial .alignfull,
.gpc-offer-details .alignfull,
.entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.coupon-temp .content-block .alignfull {
	width: calc(100vw - (var(--gpc-gutter, 20px) * 2));
	max-width: calc(100vw - (var(--gpc-gutter, 20px) * 2));
	margin-left: calc(50% - 50vw + var(--gpc-gutter, 20px));
	margin-right: calc(50% - 50vw + var(--gpc-gutter, 20px));
}

@media (max-width: 767px) {
	.gpc-block-content .alignwide,
	.gp-store-editorial .alignwide,
	.gpc-offer-details .alignwide,
	.entry-content .alignwide {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		transform: none;
	}

	.gpc-block-content .alignfull,
	.gp-store-editorial .alignfull,
	.gpc-offer-details .alignfull,
	.entry-content .alignfull,
	.coupon-temp .content-block .alignfull {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

/* —— Core blocks —— */

.gpc-block-content .wp-block-image img,
.gp-store-editorial .wp-block-image img,
.gpc-offer-details .wp-block-image img,
.entry-content .wp-block-image img {
	height: auto;
	max-width: 100%;
}

.gpc-block-content .wp-block-image figcaption,
.gp-store-editorial .wp-block-image figcaption,
.entry-content .wp-block-image figcaption {
	font-size: var(--gpc-text-sm);
	color: var(--gpc-muted, #6b7280);
	text-align: center;
	margin-top: 0.5em;
}

.gpc-block-content .wp-block-gallery,
.gp-store-editorial .wp-block-gallery,
.entry-content .wp-block-gallery {
	gap: 12px;
}

.gpc-block-content .wp-block-columns,
.gp-store-editorial .wp-block-columns,
.gpc-offer-details .wp-block-columns,
.entry-content .wp-block-columns {
	gap: clamp(16px, 3vw, 28px);
}

@media (max-width: 781px) {
	.gpc-block-content .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column,
	.gp-store-editorial .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column,
	.gpc-offer-details .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column,
	.entry-content .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 100% !important;
	}
}

.gpc-block-content .wp-block-button__link,
.gp-store-editorial .wp-block-button__link,
.gpc-offer-details .wp-block-button__link,
.entry-content .wp-block-button__link {
	min-height: 44px;
	padding: 0.65em 1.25em;
}

.gpc-block-content .wp-block-quote,
.gp-store-editorial .wp-block-quote,
.entry-content .wp-block-quote {
	border-left: 4px solid var(--accent, #059669);
	padding-left: 1.25rem;
	margin-left: 0;
}

.gpc-block-content .wp-block-pullquote,
.gp-store-editorial .wp-block-pullquote,
.entry-content .wp-block-pullquote {
	border-top: 3px solid var(--accent, #059669);
	border-bottom: 3px solid var(--accent, #059669);
	padding: 1.5rem 0;
}

.gpc-block-content .wp-block-table,
.gp-store-editorial .wp-block-table,
.gpc-offer-details .wp-block-table,
.entry-content .wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.gpc-block-content .wp-block-table table,
.gp-store-editorial .wp-block-table table,
.gpc-offer-details .wp-block-table table,
.entry-content .wp-block-table table {
	min-width: 480px;
	width: 100%;
	border-collapse: collapse;
}

.gpc-block-content .wp-block-table th,
.gp-store-editorial .wp-block-table th,
.entry-content .wp-block-table th,
.gpc-block-content .wp-block-table td,
.gp-store-editorial .wp-block-table td,
.entry-content .wp-block-table td {
	padding: 0.65rem 0.85rem;
	border: 1px solid #e5e7eb;
}

.gpc-block-content .wp-block-embed,
.gp-store-editorial .wp-block-embed,
.entry-content .wp-block-embed {
	margin-left: 0;
	margin-right: 0;
}

.gpc-block-content .wp-block-embed iframe,
.gp-store-editorial .wp-block-embed iframe,
.entry-content .wp-block-embed iframe {
	max-width: 100%;
}

.gpc-block-content .wp-block-code,
.gp-store-editorial .wp-block-code,
.gpc-offer-details .wp-block-code,
.entry-content .wp-block-code {
	overflow-x: auto;
	padding: 1rem;
	background: #f3f4f6;
	border-radius: 6px;
	font-size: 14px;
}

.gpc-block-content .wp-block-separator,
.gp-store-editorial .wp-block-separator,
.entry-content .wp-block-separator {
	border-color: #e5e7eb;
}

.gpc-block-content .wp-block-group.has-background,
.gp-store-editorial .wp-block-group.has-background,
.entry-content .wp-block-group.has-background {
	padding: clamp(16px, 3vw, 28px);
	border-radius: 8px;
}

.gpc-offer-details.entry-content {
	font-size: var(--gpc-text-base);
	line-height: var(--gpc-leading-relaxed);
}

.gpc-offer-details .wp-block-image {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

/* —— Review block patterns —— */

.gpc-review-verdict {
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #f9fafb;
}

.gpc-review-verdict__score {
	margin: 0 0 12px;
	font-size: clamp(28px, 5vw, 36px);
	line-height: 1.1;
	color: #111827;
}

.gpc-pros-cons {
	gap: clamp(20px, 3vw, 32px);
	width: 100%;
}

.gpc-pros-cons__column {
	position: relative;
	padding: clamp(20px, 3vw, 28px);
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	background: #fff;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 8px 24px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.gpc-pros-cons__column::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.gpc-pros-cons__column--pros {
	background: linear-gradient(180deg, #ecfdf5 0%, #fff 88px);
	border-color: #a7f3d0;
}

.gpc-pros-cons__column--pros::before {
	background: linear-gradient(90deg, #059669, #34d399);
}

.gpc-pros-cons__column--cons {
	background: linear-gradient(180deg, #fef2f2 0%, #fff 88px);
	border-color: #fecaca;
}

.gpc-pros-cons__column--cons::before {
	background: linear-gradient(90deg, #dc2626, #f87171);
}

.gpc-pros-cons__column h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-size: clamp(var(--gpc-text-lg), 2.2vw, var(--gpc-text-xl));
	font-weight: 700;
	color: #111827;
}

.gpc-pros-cons__column h3::before {
	content: "";
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.gpc-pros-cons__column--pros h3::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.gpc-pros-cons__column--cons h3::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.gpc-pros-cons__column ul,
.gpc-pros-cons__column .wp-block-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gpc-pros-cons__column li {
	position: relative;
	margin: 0 0 12px;
	padding-left: 28px;
	font-size: 16px;
	line-height: 1.55;
	color: #374151;
}

.gpc-pros-cons__column li:last-child {
	margin-bottom: 0;
}

.gpc-pros-cons__column--pros li::before,
.gpc-pros-cons__column--cons li::before {
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 18px;
	height: 18px;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
}

.gpc-pros-cons__column--pros li::before {
	content: "✓";
	color: #059669;
	background: #d1fae5;
}

.gpc-pros-cons__column--cons li::before {
	content: "✕";
	color: #dc2626;
	background: #fee2e2;
	font-size: 11px;
}

.gpc-review-summary {
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}

.gpc-review-summary__table table {
	width: 100%;
}

@media (max-width: 781px) {
	.gpc-pros-cons:not(.is-not-stacked-on-mobile) > .gpc-pros-cons__column {
		flex-basis: 100%;
	}

	.gpc-pros-cons__column {
		padding: 18px 20px;
	}
}

.gpc-store-faq__list {
	margin: 1rem 0 0;
	padding: 0;
}

.gpc-store-faq__list dt {
	margin: 1.25rem 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
}

.gpc-store-faq__list dt:first-child {
	margin-top: 0;
}

.gpc-store-faq__list dd {
	margin: 0 0 0.75rem;
	padding: 0;
	color: #374151;
	line-height: 1.65;
}

