:root {
	--dg-navy: #071e52;
	--dg-blue: #1264e8;
	--dg-blue-dark: #082a70;
	--dg-text: #101d3d;
	--dg-muted: #667085;
	--dg-bg: #f7f9fc;
	--dg-white: #ffffff;
	--dg-green: #16a66a;
	--dg-orange: #ff5a0a;
	--dg-amber: #f59e0b;
	--dg-border: #e5eaf0;
	--dg-border-strong: #d6dfeb;
	--dg-shadow: 0 14px 34px rgba(8, 28, 58, 0.08);
	--dg-shadow-soft: 0 8px 18px rgba(8, 28, 58, 0.06);
	--dg-radius: 14px;
	--dg-radius-small: 8px;
	--dg-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--dg-bg);
	color: var(--dg-text);
	font-family: var(--dg-font);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--dg-blue);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.dg-container {
	width: min(calc(100% - 32px), 1180px);
	margin-inline: auto;
}

.narrow-container {
	max-width: 760px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	border-radius: var(--dg-radius-small);
	background: var(--dg-navy);
	color: var(--dg-white);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--dg-border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-height: 72px;
}

.site-branding {
	flex: 0 0 auto;
}

.custom-logo-link img {
	max-height: 52px;
	width: auto;
}

.brand-text,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--dg-navy);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.brand-ticket {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 39px;
	height: 30px;
	border-radius: 8px;
	background: linear-gradient(135deg, #1264e8, #173ec7);
	color: var(--dg-white);
	font-size: 13px;
	font-weight: 950;
	box-shadow: 0 8px 14px rgba(18, 100, 232, 0.22);
	transform: rotate(-18deg);
}

.brand-ticket::after {
	content: "";
	position: absolute;
	right: 5px;
	top: 5px;
	width: 5px;
	height: 5px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
}

.brand-word,
.footer-brand {
	color: #071e52;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: 0;
}

.brand-word span:first-child,
.footer-brand span:first-child {
	color: #071e52;
}

.brand-word span:nth-child(2),
.footer-brand span:nth-child(2) {
	color: var(--dg-orange);
}

.brand-word small,
.footer-brand small {
	margin-left: 1px;
	color: #071e52;
	font-size: 13px;
	font-weight: 850;
}

.primary-navigation {
	margin-left: auto;
}

.desktop-header-search {
	position: relative;
	flex: 1 1 340px;
	max-width: 520px;
}

.desktop-header-search input {
	width: 100%;
	height: 44px;
	border: 1px solid var(--dg-border);
	border-radius: 8px;
	background: #fbfdff;
	color: var(--dg-text);
	padding: 0 48px 0 16px;
	outline: none;
}

.desktop-header-search input:focus {
	border-color: var(--dg-blue);
	box-shadow: 0 0 0 3px rgba(18, 100, 232, 0.12);
}

.desktop-header-search button {
	position: absolute;
	right: 5px;
	top: 5px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: var(--dg-navy);
}

.desktop-header-search button:hover {
	background: #edf4ff;
	color: var(--dg-blue);
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	border-radius: var(--dg-radius-small);
	color: var(--dg-navy);
	font-size: 14px;
	font-weight: 700;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-category-ancestor > a {
	background: #edf4ff;
	color: var(--dg-blue);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.icon-button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--dg-border);
	border-radius: 50%;
	background: var(--dg-white);
	color: var(--dg-navy);
	box-shadow: none;
}

.icon-button:hover,
.icon-button[aria-expanded="true"] {
	border-color: #cfe0ff;
	background: #edf4ff;
	color: var(--dg-blue);
}

.menu-toggle {
	display: none;
}

.search-toggle {
	display: none;
}

.header-search-wrap {
	padding: 0 0 16px;
}

.header-search-form,
.not-found-search,
.dg-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.header-search-form input,
.not-found-search input,
.dg-search-form input {
	min-width: 0;
	height: 46px;
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius-small);
	background: var(--dg-white);
	color: var(--dg-text);
	padding: 0 14px;
	outline: none;
}

.header-search-form input:focus,
.not-found-search input:focus,
.dg-search-form input:focus {
	border-color: var(--dg-blue);
	box-shadow: 0 0 0 3px rgba(23, 105, 255, 0.14);
}

.header-search-form button,
.dg-search-form button {
	border: 0;
	border-radius: var(--dg-radius-small);
	background: var(--dg-orange);
	color: var(--dg-white);
	padding: 0 18px;
	font-weight: 800;
}

.site-main {
	min-height: 58vh;
}

.home-hero {
	padding: 46px 0 24px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	align-items: center;
	gap: 34px;
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--dg-blue);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-copy h1,
.archive-hero h1,
.article-header h1 {
	margin: 0;
	color: var(--dg-navy);
	font-weight: 850;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.hero-copy h1 {
	max-width: 680px;
	font-size: 46px;
	line-height: 1.05;
}

.hero-copy h1::first-line {
	color: var(--dg-navy);
}

.hero-description {
	max-width: 620px;
	margin: 18px 0 0;
	color: #34445d;
	font-size: 18px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 11px 18px;
	border: 1px solid transparent;
	border-radius: var(--dg-radius-small);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.button svg {
	width: 18px;
	height: 18px;
}

.button-primary {
	background: var(--dg-blue);
	color: var(--dg-white);
	box-shadow: 0 10px 24px rgba(23, 105, 255, 0.24);
}

.button-primary:hover {
	background: var(--dg-blue-dark);
	color: var(--dg-white);
}

.button-secondary,
.button-outline {
	border-color: var(--dg-border-strong);
	background: var(--dg-white);
	color: var(--dg-navy);
}

.button-secondary:hover,
.button-outline:hover {
	border-color: #cfe0ff;
	background: #edf4ff;
	color: var(--dg-blue);
}

.button-deal {
	background: var(--dg-orange);
	color: var(--dg-white);
	box-shadow: 0 10px 22px rgba(255, 90, 0, 0.2);
}

.button-deal:hover {
	background: #e84f00;
	color: var(--dg-white);
}

.button-full {
	width: 100%;
}

.hero-panel {
	min-height: 340px;
	border: 1px solid #d9e5f4;
	border-radius: 18px;
	background:
		radial-gradient(circle at 25% 20%, rgba(23, 105, 255, 0.12), transparent 26%),
		linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
	box-shadow: var(--dg-shadow);
	overflow: hidden;
}

.hero-illustration {
	position: relative;
	width: 100%;
	height: 340px;
}

.hero-bag {
	position: absolute;
	left: 27%;
	top: 90px;
	width: 146px;
	height: 158px;
	border-radius: 22px 22px 12px 12px;
	background: linear-gradient(145deg, #1769ff, #053a9c);
	box-shadow: 0 20px 28px rgba(8, 28, 58, 0.18);
}

.hero-bag::before {
	content: "";
	position: absolute;
	left: 36px;
	top: -40px;
	width: 70px;
	height: 72px;
	border: 12px solid #9dc1ff;
	border-bottom: 0;
	border-radius: 44px 44px 0 0;
}

.hero-percent {
	position: absolute;
	right: 26%;
	top: 88px;
	display: grid;
	place-items: center;
	width: 88px;
	height: 112px;
	border-radius: 18px;
	background: var(--dg-orange);
	color: var(--dg-white);
	font-size: 56px;
	font-weight: 900;
	box-shadow: 0 18px 28px rgba(255, 90, 0, 0.24);
	transform: rotate(-4deg);
}

.hero-gift {
	position: absolute;
	right: 18%;
	bottom: 64px;
	width: 90px;
	height: 76px;
	border-radius: 10px;
	background: var(--dg-amber);
	box-shadow: inset 38px 0 0 rgba(255, 255, 255, 0.28);
}

.hero-gift::before {
	content: "";
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	height: 18px;
	border-radius: 8px 8px 4px 4px;
	background: var(--dg-orange);
}

.hero-coin {
	position: absolute;
	width: 34px;
	height: 34px;
	border: 6px solid #ffbb45;
	border-radius: 50%;
	background: #fff3d4;
}

.coin-one {
	left: 25%;
	bottom: 70px;
}

.coin-two {
	right: 34%;
	bottom: 40px;
	width: 24px;
	height: 24px;
}

.dg-section {
	padding: 28px 0;
}

.dg-section[id],
.archive-section[id],
.coupon-hub-section[id] {
	scroll-margin-top: 92px;
}

.dg-section-tight {
	padding: 14px 0 10px;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.section-heading h2 {
	margin: 0;
	color: var(--dg-navy);
	font-size: 26px;
	line-height: 1.2;
	letter-spacing: 0;
}

.compact-heading {
	align-items: center;
	margin-bottom: 14px;
}

.compact-heading h2 {
	font-size: 22px;
}

.view-all,
.read-more-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--dg-blue);
	font-size: 14px;
	font-weight: 800;
}

.read-more-link svg {
	width: 17px;
	height: 17px;
}

.icon-strip {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 4px 2px 12px;
	scrollbar-width: thin;
}

.icon-strip-item {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 9px;
	min-height: 52px;
	padding: 9px 13px;
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius-small);
	background: var(--dg-white);
	color: var(--dg-navy);
	font-size: 13px;
	font-weight: 750;
	box-shadow: var(--dg-shadow-soft);
}

.strip-icon,
.category-icon,
.deal-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: #edf4ff;
	color: var(--dg-blue);
}

.strip-icon svg,
.category-icon svg,
.deal-icon svg {
	width: 20px;
	height: 20px;
}

.card-grid,
.category-grid,
.related-grid {
	display: grid;
	gap: 16px;
}

.card-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid-large {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-card,
.top-pick-card,
.deal-card,
.category-card {
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius);
	background: var(--dg-white);
	box-shadow: var(--dg-shadow-soft);
	overflow: hidden;
}

.article-card,
.top-pick-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.article-card-featured,
.deal-card-featured {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
	align-items: stretch;
}

.card-thumbnail {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eaf2ff;
	color: var(--dg-blue);
}

.card-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(23, 105, 255, 0.16), rgba(8, 28, 58, 0.04)),
		#eef5ff;
}

.thumbnail-placeholder svg {
	width: 54px;
	height: 54px;
}

.thumbnail-placeholder-blue {
	background: linear-gradient(135deg, #0f55e8, #061e59);
	color: var(--dg-white);
}

.top-badge {
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 5px 9px;
	border-radius: 7px;
	background: var(--dg-orange);
	color: var(--dg-white);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 9px;
	padding: 16px;
}

.card-category {
	display: inline-flex;
	align-self: flex-start;
	color: var(--dg-blue);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.card-title,
.deal-title {
	margin: 0;
	color: var(--dg-navy);
	font-size: 18px;
	line-height: 1.28;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.card-title a:hover,
.deal-title a:hover {
	color: var(--dg-blue);
}

.card-excerpt {
	margin: 0;
	color: var(--dg-muted);
	font-size: 14px;
	line-height: 1.55;
}

.card-meta,
.deal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: auto;
	color: var(--dg-muted);
	font-size: 12px;
	font-weight: 650;
}

.rating-text,
.rating-pill {
	color: var(--dg-amber);
	font-weight: 850;
}

.article-card-compact {
	display: grid;
	grid-template-columns: 108px minmax(0, 1fr);
	align-items: stretch;
	min-height: 120px;
}

.article-card-compact .card-thumbnail {
	aspect-ratio: auto;
	height: 100%;
}

.article-card-compact .card-body {
	padding: 14px;
}

.article-card-compact .card-title,
.deal-card-compact .deal-title {
	font-size: 16px;
}

.article-card-compact .read-more-link {
	display: none;
}

.category-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 152px;
	padding: 16px;
	color: var(--dg-text);
}

.category-card:hover {
	border-color: #cfe0ff;
	box-shadow: var(--dg-shadow);
}

.category-name {
	color: var(--dg-navy);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.category-count {
	color: var(--dg-muted);
	font-size: 13px;
}

.category-action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	color: var(--dg-blue);
	font-size: 13px;
	font-weight: 850;
}

.category-action svg {
	width: 16px;
	height: 16px;
}

.coupon-hub-section {
	display: grid;
	gap: 22px;
}

.coupon-hub-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.coupon-hub-title {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1 1 0;
	min-width: 0;
}

.coupon-hub-logo {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
}

.coupon-hub-logo .brand-ticket {
	width: 38px;
	height: 31px;
	font-size: 13px;
}

.coupon-hub-logo .brand-word {
	font-size: 24px;
}

.coupon-hub-logo .brand-word small {
	font-size: 13px;
}

.coupon-hub-divider {
	width: 1px;
	height: 50px;
	background: var(--dg-border-strong);
}

.coupon-hub-title h2,
.coupon-hub-block-heading h2,
.coupon-hub-block-heading h3 {
	margin: 0;
	color: var(--dg-navy);
	letter-spacing: 0;
	line-height: 1.16;
}

.coupon-hub-title h2 {
	font-size: 30px;
}

.coupon-hub-title p,
.coupon-hub-block-heading p {
	margin: 7px 0 0;
	color: var(--dg-muted);
	line-height: 1.5;
}

.coupon-flow-pills {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	flex: 0 0 auto;
	flex-wrap: nowrap;
}

.coupon-flow-pills span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	padding: 7px 11px;
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius-small);
	background: var(--dg-white);
	color: var(--dg-navy);
	font-size: 13px;
	font-weight: 850;
	box-shadow: var(--dg-shadow-soft);
	white-space: nowrap;
}

.coupon-flow-pills span svg {
	width: 18px;
	height: 18px;
	color: var(--dg-blue);
}

.coupon-flow-pills b {
	display: inline-grid;
	place-items: center;
	color: var(--dg-navy);
	opacity: 0.8;
}

.coupon-flow-pills b svg {
	width: 15px;
	height: 15px;
}

.coupon-hub-surface,
.coupon-category-flow {
	display: grid;
	gap: 16px;
}

.coupon-category-switcher {
	display: grid;
	gap: 12px;
}

.coupon-category-flow--focused {
	gap: 18px;
}

.coupon-category-flow--focused .coupon-hub-latest-heading {
	margin-top: 0;
}

.coupon-category-flow--focused .coupon-row-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.coupon-category-flow--focused .coupon-mini-card-row {
	grid-template-columns: 64px minmax(0, 1fr) minmax(132px, auto);
	grid-template-areas:
		"logo copy discount"
		"logo code code"
		"meta meta deal";
	align-items: center;
	gap: 12px 14px;
	min-height: 168px;
	padding: 18px 20px;
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(8, 28, 58, 0.07);
}

.coupon-category-flow--focused .coupon-mini-logo {
	grid-area: logo;
	align-self: start;
	margin-top: 2px;
}

.coupon-category-flow--focused .coupon-mini-logo-mark {
	width: 60px;
	height: 60px;
	border-radius: 14px;
}

.coupon-category-flow--focused .coupon-mini-logo-mark svg {
	width: 34px;
	height: 34px;
}

.coupon-category-flow--focused .coupon-mini-brand {
	margin-bottom: 2px;
}

.coupon-category-flow--focused .coupon-mini-copy {
	grid-area: copy;
}

.coupon-category-flow--focused .coupon-mini-copy h3 {
	font-size: 16px;
	line-height: 1.3;
}

.coupon-category-flow--focused .coupon-mini-copy p {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.45;
}

.coupon-category-flow--focused .coupon-mini-discount {
	grid-area: discount;
	justify-self: end;
	min-height: 34px;
	padding: 7px 12px;
	font-size: 13px;
}

.coupon-category-flow--focused .coupon-mini-code {
	grid-area: code;
	width: 100%;
	min-width: 0;
	min-height: 40px;
}

.coupon-category-flow--focused .coupon-mini-deal-button {
	grid-area: deal;
	width: 100%;
	min-width: 132px;
	min-height: 42px;
	box-shadow: 0 12px 24px rgba(255, 90, 10, 0.22);
}

.coupon-category-flow--focused .coupon-mini-meta {
	grid-area: meta;
	align-self: center;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	text-align: left;
}

.coupon-category-brands {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.coupon-hub-block-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.coupon-hub-block-heading h2,
.coupon-hub-block-heading h3 {
	font-size: 20px;
}

.coupon-hub-latest-heading {
	margin-top: 8px;
}

.coupon-industry-grid,
.coupon-brand-grid,
.coupon-feature-grid {
	display: grid;
	gap: 14px;
}

.coupon-industry-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coupon-industry-grid--compact {
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 10px;
}

.coupon-brand-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coupon-feature-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coupon-industry-card,
.coupon-brand-card,
.coupon-mini-card,
.coupon-flow-step {
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius-small);
	background: var(--dg-white);
	box-shadow: var(--dg-shadow-soft);
}

.coupon-industry-card,
.coupon-brand-card {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 8px;
	min-height: 126px;
	padding: 15px 12px;
	color: var(--dg-navy);
	text-align: center;
}

.coupon-industry-card:hover,
.coupon-brand-card:hover,
.coupon-mini-card:hover {
	border-color: #cfe0ff;
	box-shadow: var(--dg-shadow);
	transform: translateY(-1px);
}

.coupon-industry-card.is-active {
	border-color: #8fb8ff;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
	box-shadow: 0 14px 30px rgba(18, 100, 232, 0.13);
}

.coupon-industry-icon,
.coupon-brand-tile-logo,
.coupon-mini-logo-mark {
	display: inline-grid;
	place-items: center;
	border-radius: 12px;
	background: #edf4ff;
	color: var(--dg-blue);
}

.coupon-industry-icon {
	width: 50px;
	height: 50px;
}

.coupon-industry-icon svg {
	width: 28px;
	height: 28px;
}

.coupon-industry-grid--compact .coupon-industry-card {
	min-height: 88px;
	padding: 10px 8px;
}

.coupon-industry-grid--compact .coupon-industry-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
}

.coupon-industry-grid--compact .coupon-industry-icon svg {
	width: 24px;
	height: 24px;
}

.coupon-industry-name,
.coupon-brand-card-name {
	color: var(--dg-navy);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.coupon-industry-count,
.coupon-brand-card-count {
	color: var(--dg-muted);
	font-size: 12px;
	font-weight: 700;
}

.coupon-brand-tile-logo {
	width: 54px;
	height: 54px;
}

.coupon-brand-tile-logo svg {
	width: 30px;
	height: 30px;
}

.coupon-brand-tile-logo__image,
.coupon-mini-logo-mark__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.coupon-brand-tile-logo--image,
.coupon-mini-logo-mark--image {
	background: var(--dg-white);
	overflow: hidden;
}

.coupon-brand-tile-logo--image {
	padding: 5px;
}

.coupon-row-list {
	display: grid;
	gap: 10px;
}

.coupon-mini-card {
	min-width: 0;
	color: var(--dg-text);
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.coupon-mini-card-card {
	display: grid;
	justify-items: center;
	gap: 8px;
	min-height: 220px;
	padding: 16px;
	text-align: center;
}

.coupon-mini-card-row {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto minmax(142px, auto) minmax(108px, auto) minmax(94px, auto);
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
}

.coupon-mini-logo {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
}

.coupon-mini-logo-mark {
	width: 54px;
	height: 54px;
}

.coupon-mini-logo-mark svg {
	width: 30px;
	height: 30px;
}

.coupon-mini-logo-mark--image {
	padding: 5px;
}

.coupon-mini-copy {
	min-width: 0;
}

.coupon-mini-brand {
	display: block;
	color: var(--dg-blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.coupon-mini-copy h3 {
	margin: 2px 0 0;
	color: var(--dg-navy);
	font-size: 14px;
	line-height: 1.28;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.coupon-mini-copy h3 a:hover {
	color: var(--dg-blue);
}

.coupon-mini-copy p {
	margin: 4px 0 0;
	color: var(--dg-muted);
	font-size: 12px;
	line-height: 1.4;
}

.coupon-mini-discount {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 7px;
	background: #eafbf2;
	color: var(--dg-green);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.coupon-mini-card-card .coupon-mini-discount {
	background: transparent;
	color: var(--dg-orange);
	font-size: 18px;
}

.coupon-mini-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 36px;
	padding: 7px 12px;
	border: 1px dashed #8fb8ff;
	border-radius: 7px;
	background: #f7fbff;
	color: var(--dg-blue);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

.coupon-mini-code svg {
	width: 15px;
	height: 15px;
}

.coupon-mini-deal-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	padding: 7px 12px;
	border-radius: 7px;
	background: var(--dg-orange);
	color: var(--dg-white);
	box-shadow: 0 8px 18px rgba(255, 90, 10, 0.18);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.coupon-mini-deal-button:hover {
	background: #e84f00;
	color: var(--dg-white);
}

.coupon-mini-deal-button svg {
	width: 15px;
	height: 15px;
}

.coupon-mini-card-card .coupon-mini-deal-button {
	width: 100%;
}

.coupon-mini-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 10px;
	color: var(--dg-muted);
	font-size: 11px;
	font-weight: 700;
}

.coupon-mini-card-row .coupon-mini-meta {
	justify-content: flex-end;
	text-align: right;
}

.coupon-category-flow--physical .coupon-row-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.coupon-mini-card-product,
.coupon-category-flow--physical .coupon-mini-card-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-areas: none;
	align-content: start;
	gap: 12px;
	min-height: 360px;
	padding: 14px;
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(8, 28, 58, 0.07);
}

.coupon-category-flow--physical .coupon-mini-card-product > * {
	grid-area: auto;
}

.coupon-mini-product-media {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--dg-border);
	border-radius: 10px;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
	overflow: hidden;
}

.coupon-mini-product-image,
.coupon-mini-product-image__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.coupon-mini-product-image--placeholder {
	display: grid;
	place-items: center;
	padding: 28px;
	color: var(--dg-blue);
}

.coupon-mini-product-image svg {
	width: 72px;
	height: 72px;
}

.coupon-mini-card-product .coupon-mini-brand {
	margin-bottom: 4px;
}

.coupon-mini-card-product .coupon-mini-copy h3 {
	font-size: 17px;
	line-height: 1.25;
}

.coupon-mini-card-product .coupon-mini-copy p {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 7px;
	color: #34445d;
	font-size: 13px;
	line-height: 1.48;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.coupon-mini-card-product .coupon-mini-discount {
	justify-self: start;
	min-height: 32px;
	background: #fff1ea;
	color: var(--dg-orange);
	font-size: 13px;
}

.coupon-mini-price-row {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 7px;
	color: var(--dg-orange);
	font-weight: 900;
	line-height: 1.2;
}

.coupon-mini-price-row strong {
	font-size: 18px;
}

.coupon-mini-price-row del {
	color: var(--dg-muted);
	font-size: 12px;
	font-weight: 750;
}

.coupon-mini-card-product .coupon-mini-code,
.coupon-mini-card-product .coupon-mini-deal-button {
	width: 100%;
}

.coupon-mini-card-product .coupon-mini-deal-button {
	min-height: 42px;
	box-shadow: 0 12px 24px rgba(255, 90, 10, 0.22);
}

.coupon-mini-card-product .coupon-mini-meta {
	justify-content: flex-start;
	text-align: left;
}

.coupon-flow-guide {
	display: grid;
	grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-top: 6px;
	padding: 18px;
	border: 1px solid #cfe0ff;
	border-radius: 10px;
	background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
}

.coupon-flow-intro {
	display: flex;
	align-items: center;
	gap: 14px;
}

.coupon-flow-intro > span {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	border: 1px solid var(--dg-border);
	border-radius: 50%;
	background: var(--dg-white);
	color: var(--dg-blue);
	box-shadow: var(--dg-shadow-soft);
}

.coupon-flow-intro svg {
	width: 27px;
	height: 27px;
}

.coupon-flow-intro h3 {
	margin: 0;
	color: var(--dg-navy);
	font-size: 18px;
	line-height: 1.2;
}

.coupon-flow-intro p,
.coupon-flow-step p {
	margin: 4px 0 0;
	color: var(--dg-muted);
	font-size: 13px;
	line-height: 1.38;
}

.coupon-flow-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.coupon-flow-step {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 82px;
	padding: 12px;
}

.coupon-flow-step-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: #edf4ff;
	color: var(--dg-blue);
}

.coupon-flow-step:nth-child(2) .coupon-flow-step-icon,
.coupon-flow-step:nth-child(2) strong {
	color: var(--dg-orange);
}

.coupon-flow-step:nth-child(2) .coupon-flow-step-icon {
	background: #fff1ea;
}

.coupon-flow-step:nth-child(3) .coupon-flow-step-icon,
.coupon-flow-step:nth-child(3) strong {
	color: var(--dg-green);
}

.coupon-flow-step:nth-child(3) .coupon-flow-step-icon {
	background: #eafbf2;
}

.coupon-flow-step:nth-child(4) .coupon-flow-step-icon,
.coupon-flow-step:nth-child(4) strong {
	color: #6d28d9;
}

.coupon-flow-step:nth-child(4) .coupon-flow-step-icon {
	background: #f3e8ff;
}

.coupon-flow-step-icon svg {
	width: 19px;
	height: 19px;
}

.coupon-flow-step strong {
	display: block;
	color: var(--dg-blue);
	font-size: 13px;
	line-height: 1.2;
}

.deal-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 14px;
}

.deal-card-body {
	min-width: 0;
}

.deal-offer {
	margin: 4px 0 0;
	color: var(--dg-muted);
	font-size: 14px;
	line-height: 1.45;
}

.deal-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.coupon-chip,
.coupon-copy {
	border: 1px dashed #9ac3ff;
	border-radius: var(--dg-radius-small);
	background: #edf4ff;
	color: var(--dg-blue);
	font-weight: 850;
}

.coupon-chip {
	min-height: 34px;
	padding: 6px 10px;
	font-size: 12px;
}

.coupon-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-height: 44px;
	margin: 12px 0;
	padding: 8px 10px;
}

.coupon-copy span {
	color: var(--dg-muted);
	font-size: 12px;
}

.stacked-list {
	display: grid;
	gap: 12px;
}

.split-latest {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.empty-state {
	margin: 0;
	padding: 18px;
	border: 1px dashed var(--dg-border-strong);
	border-radius: var(--dg-radius);
	background: rgba(255, 255, 255, 0.68);
	color: var(--dg-muted);
}

.archive-hero {
	padding: 34px 0 22px;
	background:
		linear-gradient(180deg, rgba(237, 244, 255, 0.9), rgba(247, 249, 252, 0)),
		var(--dg-bg);
}

.archive-hero-coupon-category {
	padding: 28px 0 14px;
}

.archive-hero-coupon-category + .archive-layout {
	padding-top: 8px;
}

.archive-hero h1 {
	max-width: 860px;
	font-size: 38px;
	line-height: 1.12;
}

.archive-description {
	max-width: 760px;
	margin-top: 12px;
	color: #34445d;
	font-size: 17px;
	line-height: 1.7;
}

.archive-description p {
	margin: 0 0 10px;
}

.archive-layout {
	padding: 14px 0 56px;
}

.archive-section {
	margin-top: 30px;
}

.first-section {
	margin-top: 0;
}

.featured-article {
	margin-bottom: 28px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--dg-border);
	border-radius: 999px;
	background: var(--dg-white);
	color: var(--dg-navy);
	font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--dg-blue);
	background: var(--dg-blue);
	color: var(--dg-white);
}

.search-results-list {
	display: grid;
	gap: 12px;
	max-width: 900px;
}

.article-header {
	padding: 34px 0 0;
	background: linear-gradient(180deg, #ffffff 0%, var(--dg-bg) 100%);
}

.article-header-inner {
	max-width: 900px;
}

.article-category {
	display: inline-flex;
	margin-top: 12px;
	color: var(--dg-blue);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
}

.article-header h1 {
	max-width: 880px;
	margin-top: 10px;
	font-size: 44px;
	line-height: 1.08;
}

.article-subtitle {
	max-width: 760px;
	margin: 16px 0 0;
	color: #34445d;
	font-size: 19px;
	line-height: 1.65;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 16px;
	margin-top: 17px;
	color: var(--dg-muted);
	font-size: 14px;
	font-weight: 700;
}

.article-meta span {
	display: inline-flex;
	align-items: center;
}

.article-featured-image {
	margin: 24px 0 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--dg-shadow);
}

.article-featured-image img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
}

.article-shell {
	width: min(calc(100% - 32px), 1320px);
	display: grid;
	grid-template-columns: minmax(170px, 210px) minmax(0, 820px);
	justify-content: center;
	gap: 30px;
	padding: 28px 0 64px;
}

.article-shell.has-deal-box {
	grid-template-columns: minmax(170px, 210px) minmax(0, 800px) minmax(230px, 270px);
}

.article-sidebar {
	align-self: start;
}

.toc-sidebar,
.deal-sidebar {
	position: sticky;
	top: 96px;
}

.article-content-wrap {
	min-width: 0;
}

.entry-content {
	border: 1px solid var(--dg-border);
	border-radius: 16px;
	background: var(--dg-white);
	padding: 34px;
	box-shadow: var(--dg-shadow-soft);
	color: #182338;
	font-size: 18px;
	line-height: 1.78;
	overflow-wrap: break-word;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content p {
	margin: 0 0 1.35em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--dg-navy);
	letter-spacing: 0;
	line-height: 1.25;
}

.entry-content h2 {
	margin: 1.75em 0 0.75em;
	font-size: 30px;
}

.entry-content h3 {
	margin: 1.5em 0 0.65em;
	font-size: 23px;
}

.entry-content h4 {
	margin: 1.25em 0 0.55em;
	font-size: 19px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.35em 1.2em;
	padding: 0;
}

.entry-content li + li {
	margin-top: 0.42em;
}

.entry-content a {
	color: var(--dg-blue);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content blockquote,
.wp-block-quote {
	margin: 1.6em 0;
	padding: 18px 20px;
	border-left: 4px solid var(--dg-blue);
	border-radius: 0 var(--dg-radius-small) var(--dg-radius-small) 0;
	background: #f0f6ff;
	color: var(--dg-navy);
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content table,
.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.entry-content table {
	display: block;
	overflow-x: auto;
	margin: 1.5em 0;
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius-small);
}

.entry-content th,
.entry-content td {
	min-width: 130px;
	padding: 12px;
	border-bottom: 1px solid var(--dg-border);
	text-align: left;
}

.entry-content th {
	background: #f3f7fd;
	color: var(--dg-navy);
	font-weight: 850;
}

.entry-content tr:last-child td {
	border-bottom: 0;
}

.entry-content img {
	border-radius: var(--dg-radius-small);
}

.entry-content figure {
	margin: 1.6em 0;
}

.entry-content figcaption {
	margin-top: 8px;
	color: var(--dg-muted);
	font-size: 13px;
	text-align: center;
}

.wp-block-image img,
.wp-block-gallery img {
	border-radius: var(--dg-radius-small);
}

.wp-block-button__link {
	border-radius: var(--dg-radius-small);
	background: var(--dg-blue);
	color: var(--dg-white);
	font-weight: 850;
	text-decoration: none;
}

.wp-block-columns {
	gap: 20px;
}

.wp-block-embed {
	overflow: hidden;
	border-radius: var(--dg-radius-small);
}

.page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	font-weight: 800;
}

.article-toc {
	border: 1px solid var(--dg-border);
	border-radius: var(--dg-radius);
	background: var(--dg-white);
	box-shadow: var(--dg-shadow-soft);
}

.toc-toggle {
	display: none;
	width: 100%;
	min-height: 46px;
	align-items: center;
	justify-content: space-between;
	border: 0;
	background: transparent;
	color: var(--dg-navy);
	padding: 13px 14px;
	font-weight: 850;
	text-align: left;
}

.toc-list {
	margin: 0;
	padding: 14px;
	list-style: none;
}

.toc-list li + li {
	margin-top: 8px;
}

.toc-list a {
	display: block;
	border-radius: 7px;
	color: var(--dg-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	padding: 7px 8px;
}

.toc-list .toc-level-3 a {
	padding-left: 18px;
	font-size: 12px;
}

.toc-list a:hover,
.toc-list a.is-active {
	background: #edf4ff;
	color: var(--dg-blue);
}

.deal-box {
	border: 1px solid #cfe0ff;
	border-radius: 16px;
	background: var(--dg-white);
	padding: 18px;
	box-shadow: var(--dg-shadow);
}

.deal-box-offer {
	display: block;
	color: var(--dg-green);
	font-size: 30px;
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.deal-box-meta {
	display: grid;
	gap: 6px;
	margin: 12px 0;
	padding: 0;
	color: var(--dg-muted);
	font-size: 13px;
	list-style: none;
}

.deal-box-meta li {
	position: relative;
	padding-left: 16px;
}

.deal-box-meta li::before {
	content: "";
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--dg-green);
}

.related-section {
	margin-top: 28px;
}

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

.cross-links-section {
	padding-top: 4px;
}

.mobile-deal-bar {
	display: none;
}

.dg-breadcrumbs {
	color: var(--dg-muted);
	font-size: 13px;
	font-weight: 700;
}

.dg-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dg-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.dg-breadcrumbs li + li::before {
	content: "/";
	color: #a8b5c6;
}

.dg-breadcrumbs a {
	color: var(--dg-blue);
}

.site-footer {
	border-top: 1px solid var(--dg-border);
	background: var(--dg-white);
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 28px 0;
}

.footer-brand {
	font-size: 22px;
}

.footer-inner p {
	margin: 8px 0 0;
	color: var(--dg-muted);
	font-size: 14px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: var(--dg-navy);
	font-size: 14px;
	font-weight: 800;
}
