:root {
	--header: #0b1222;
	--navy: #001b44;
	--navy-light: #002b6b;
	--orange: #f59e0b;
	--dark: #1a1a1a;
	--muted: #64748b;
	--border: #e8ecf0;
	--page: #f8fafc;
	--surface: #ffffff;
	--red: #e53935;
	--success: #43a047;
	--shadow: 0 1px 4px rgb(0 0 0 / 0.06);
	--shadow-hover: 0 14px 36px rgb(0 0 0 / 0.12);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--page);
	color: var(--dark);
	font-family: Inter, system-ui, sans-serif;
	line-height: 1.5;
	overflow-x: clip;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

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

.material-icons {
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}

.dh-container {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
}

.dh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--header);
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.18);
}

.dh-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 66px;
}

.dh-logo {
	flex: 0 0 auto;
}

.dh-logo img,
.custom-logo {
	width: auto;
	max-width: 270px;
	max-height: 54px;
	object-fit: contain;
}

.dh-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: 1;
}

.dh-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 12px;
	border-radius: 999px;
	color: rgb(255 255 255 / 0.9);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}

.dh-menu a:hover,
.dh-menu a[aria-current="page"] {
	background: #fff;
	color: var(--header);
}

.dh-menu .material-icons {
	font-size: 18px;
	color: #fbbf24;
}

.dh-search {
	position: relative;
	width: min(360px, 26vw);
}

.dh-search input[type="search"] {
	width: 100%;
	height: 40px;
	border: 0;
	border-radius: 999px;
	padding: 0 44px 0 16px;
	background: #fff;
	outline: none;
	font-size: 13px;
}

.dh-search button {
	position: absolute;
	top: 50%;
	right: 4px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	transform: translateY(-50%);
	cursor: pointer;
}

.dh-mobile-toggle {
	display: none;
	margin-left: auto;
	border: 0;
	background: transparent;
	color: #fff;
}

.dh-mobile-panel {
	display: none;
	padding: 10px 16px 16px;
	border-top: 1px solid rgb(255 255 255 / 0.1);
}

.dh-mobile-panel.is-open {
	display: grid;
	gap: 8px;
}

.dh-mobile-panel a {
	padding: 10px 12px;
	border-radius: 10px;
	color: #fff;
	background: rgb(255 255 255 / 0.06);
	font-weight: 700;
}

.dh-hero {
	padding: 12px 0 4px;
}

.dh-hero-card {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 24px;
	min-height: 270px;
	padding: 26px;
	border-radius: 22px;
	background: linear-gradient(135deg, #dbeafe 0%, #e8f0fe 42%, #f1f5f9 75%, #fff 100%);
	box-shadow: 0 4px 20px rgb(0 0 0 / 0.06);
	overflow: hidden;
}

.dh-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	padding: 5px 10px;
	border: 1px solid rgb(245 158 11 / 0.2);
	border-radius: 999px;
	background: #fff;
	color: var(--red);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.dh-hero h1 {
	margin: 0;
	color: var(--header);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
}

.dh-hero h1 span {
	color: var(--orange);
}

.dh-hero p {
	max-width: 560px;
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.dh-hero-card > img {
	max-height: 300px;
	margin-left: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
	filter: drop-shadow(0 14px 22px rgb(15 23 42 / 0.1));
}

.dh-hero-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 20px;
}

.dh-hero-features span {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	gap: 8px;
	padding: 9px;
	border: 1px solid rgb(255 255 255 / 0.8);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-hero-features i {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: #fef3c7;
	color: var(--orange);
}

.dh-hero-features b {
	font-size: 12px;
	line-height: 1.1;
}

.dh-hero-features small {
	color: var(--muted);
	font-size: 10px;
}

.dh-discount-row {
	padding: 8px 0 12px;
}

.dh-float-bar {
	display: flex;
	align-items: start;
	justify-content: space-evenly;
	gap: 12px;
	overflow-x: auto;
	padding: 14px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 4px 20px rgb(0 0 0 / 0.06);
}

.dh-social-circle,
.dh-off-circle {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	min-width: 70px;
	color: var(--dark);
	font-size: 10px;
	font-weight: 800;
	text-align: center;
}

.dh-social-circle span,
.dh-off-circle span {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	box-shadow: 0 4px 14px rgb(0 0 0 / 0.14);
	transition: transform 0.25s ease;
}

.dh-social-circle span {
	background: transparent;
	box-shadow: 0 8px 18px rgb(0 0 0 / 0.12);
}

.dh-social-circle span img {
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: contain;
}

.dh-social-circle:hover span,
.dh-off-circle:hover span {
	transform: scale(1.08);
}

.telegram span { background: #0088cc; }
.whatsapp span { background: #25d366; }
.off-50 span { background: #fb8c00; }
.off-60 span { background: #43a047; }
.off-70 span { background: #1e88e5; }
.off-80 span { background: #8e24aa; }
.off-90 span { background: #e53935; }

.dh-categories {
	padding: 28px 0;
	border-block: 1px solid var(--border);
	background: #fff;
}

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

.dh-section-head h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--header);
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 0;
}

.dh-section-head h2 img {
	width: 28px;
	height: 28px;
}

.dh-section-head p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 14px;
}

.dh-section-head a {
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
}

.dh-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.dh-cat-tile {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 120px;
	padding: 16px;
	border: 1px solid #dbeafe;
	border-radius: 16px;
	background: linear-gradient(135deg, #eff6ff, #e0f2fe);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dh-cat-tile:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgb(0 0 0 / 0.08);
}

.dh-cat-tile span {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgb(255 255 255 / 0.86);
}

.dh-cat-tile img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.dh-cat-tile b {
	margin-top: 18px;
	font-size: 16px;
}

.dh-cat-tile small {
	color: var(--muted);
}

.accent-1 { background: linear-gradient(135deg, #fdf2f8, #ffe4e6); border-color: #fce7f3; }
.accent-2 { background: linear-gradient(135deg, #f5f3ff, #ede9fe); border-color: #ede9fe; }
.accent-3 { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border-color: #d1fae5; }
.accent-4 { background: linear-gradient(135deg, #fffbeb, #ffedd5); border-color: #fed7aa; }
.accent-5 { background: linear-gradient(135deg, #f0f9ff, #e0e7ff); border-color: #dbeafe; }
.accent-6 { background: linear-gradient(135deg, #fafaf9, #fef3c7); border-color: #fde68a; }
.accent-7 { background: linear-gradient(135deg, #f0fdfa, #dcfce7); border-color: #ccfbf1; }

.dh-live-deals,
.dh-top-deals,
.dh-hot-category,
.dh-stores,
.dh-coupons-zone {
	padding: 28px 0;
	border-top: 1px solid rgb(232 236 240 / 0.7);
}

.dh-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.dh-toolbar h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--header);
	font-size: 22px;
	font-weight: 900;
}

.dh-toolbar i {
	color: #3b82f6;
}

.dh-toolbar select {
	height: 38px;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0 12px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
}

.dh-deal-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.dh-deal-card {
	display: flex;
	position: relative;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dh-deal-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-hover);
}

.dh-deal-img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 148px;
	padding: 10px;
	background: #fff;
	overflow: hidden;
}

.dh-deal-img img {
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.dh-deal-card:hover .dh-deal-img img {
	transform: scale(1.08);
}

.dh-discount {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 6px 14px rgb(229 57 53 / 0.24);
}

.dh-discount small {
	display: block;
	font-size: 8px;
	text-transform: uppercase;
}

.dh-deal-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 10px;
}

.dh-deal-body h3 {
	min-height: 39px;
	margin: 0 0 8px;
	overflow: hidden;
	color: var(--dark);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.dh-price-row {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
}

.dh-price-row strong {
	font-size: 16px;
	font-weight: 900;
}

.dh-price-row del {
	color: #94a3b8;
	font-size: 11px;
}

.dh-price-row.big strong {
	font-size: 34px;
}

.dh-price-row.big del {
	font-size: 18px;
}

.dh-rating {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-top: 6px;
	color: #f59e0b;
	font-size: 10px;
	font-weight: 800;
}

.dh-rating .material-icons {
	font-size: 13px;
}

.dh-rating em {
	color: #94a3b8;
	font-style: normal;
}

.dh-promo {
	max-width: 100%;
	width: fit-content;
	margin-top: 7px;
	padding: 3px 6px;
	border-radius: 6px;
	background: #fff7ed;
	color: #c2410c;
	font-size: 9px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dh-card-meta {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	margin-top: auto;
	padding-top: 8px;
	color: var(--muted);
	font-size: 10px;
}

.dh-card-meta span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dh-buy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: 38px;
	padding: 9px 10px;
	border: 0;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	transition: background 0.2s ease;
}

.dh-buy:hover {
	background: var(--navy-light);
}

.dh-buy.large {
	width: fit-content;
	min-height: 48px;
	margin-top: 22px;
	padding: 12px 24px;
	border-radius: 12px;
	font-size: 15px;
}

.dh-scroll-row {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}

.dh-scroll-row .dh-deal-card {
	flex: 0 0 285px;
	scroll-snap-align: start;
}

.dh-trust-strip {
	padding: 14px 0;
	background: #fff;
	border-block: 1px solid var(--border);
}

.dh-trust-strip .dh-container {
	display: flex;
	justify-content: space-around;
	gap: 12px;
	overflow-x: auto;
}

.dh-trust-strip span,
.dh-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--header);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.dh-trust-strip i {
	color: var(--orange);
}

.dh-category-rows {
	display: grid;
	gap: 18px;
}

.dh-cat-row {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	align-items: stretch;
	gap: 12px;
}

.dh-cat-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 18px;
	border: 1px solid #dbeafe;
	border-radius: 18px;
	background: linear-gradient(135deg, #eef4ff, #e0edff);
}

.dh-cat-side img {
	width: 54px;
	height: 54px;
	padding: 10px;
	border-radius: 14px;
	background: #fff;
}

.dh-cat-side b {
	font-weight: 900;
}

.dh-cat-side small {
	color: #2563eb;
	font-weight: 800;
}

.dh-mini-scroll {
	display: flex;
	gap: 12px;
	min-width: 0;
	overflow-x: auto;
	padding: 2px 0 8px;
}

.dh-mini-scroll .dh-deal-card {
	flex: 0 0 158px;
}

.dh-store-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.dh-store-card {
	display: grid;
	gap: 8px;
	place-items: center;
	min-height: 140px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dh-store-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
}

.dh-store-card img {
	max-width: 110px;
	max-height: 42px;
	object-fit: contain;
}

.dh-store-card span {
	color: var(--muted);
	font-size: 12px;
}

.dh-deal-day {
	padding: 28px 0;
}

.dh-deal-day-card {
	display: grid;
	grid-template-columns: 320px 1fr;
	align-items: center;
	gap: 28px;
	padding: 28px;
	border-radius: 24px;
	background: linear-gradient(135deg, #0b1222, #002b6b);
	color: #fff;
	overflow: hidden;
}

.dh-deal-day-card img {
	max-height: 260px;
	margin: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 24px rgb(0 0 0 / 0.25));
}

.dh-deal-day-card span {
	color: #fbbf24;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 12px;
}

.dh-deal-day-card h2 {
	margin: 8px 0;
	font-size: 34px;
	line-height: 1.1;
	letter-spacing: 0;
}

.dh-deal-day-card p {
	color: rgb(255 255 255 / 0.78);
}

.dh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 12px;
	background: var(--orange);
	color: #111827;
	font-weight: 900;
}

.dh-coupon-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.dh-coupon-card {
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-coupon-store {
	color: var(--orange);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.dh-coupon-card h3 {
	margin: 4px 0;
	font-size: 18px;
}

.dh-coupon-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.dh-coupon-card strong {
	color: var(--success);
}

.dh-coupon-card a {
	display: inline-flex;
	justify-content: center;
	width: fit-content;
	padding: 9px 14px;
	border: 2px dashed var(--orange);
	border-radius: 10px;
	background: #fffbeb;
	font-weight: 900;
}

.dh-newsletter {
	padding: 34px 0;
}

.dh-newsletter .dh-container {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 22px;
	padding: 28px;
	border-radius: 22px;
	background: linear-gradient(135deg, #fff7ed, #dbeafe);
}

.dh-newsletter h2 {
	margin: 0;
	color: var(--header);
	font-size: 28px;
}

.dh-newsletter p {
	margin: 4px 0 0;
	color: var(--muted);
}

.dh-newsletter form {
	display: grid;
	grid-template-columns: 260px auto;
	gap: 8px;
}

.dh-newsletter input {
	height: 46px;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0 16px;
}

.dh-newsletter button {
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font-weight: 900;
	padding: 0 18px;
}

.dh-newsletter [data-form-message] {
	grid-column: 1 / -1;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.dh-footer {
	margin: 0 24px 24px;
	padding: 18px 0 8px;
	border-radius: 22px;
	background: #000b2e;
	color: #94a3b8;
	overflow: hidden;
}

.dh-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
	gap: 26px;
}

.dh-footer-logo {
	max-width: 260px;
	margin-bottom: 10px;
}

.dh-footer h4 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 14px;
}

.dh-footer p,
.dh-footer li,
.dh-footer a {
	color: #94a3b8;
	font-size: 12px;
}

.dh-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dh-footer a:hover {
	color: #fff;
}

.dh-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dh-socials a {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgb(255 255 255 / 0.2);
	border-radius: 50%;
	background: rgb(255 255 255 / 0.06);
	font-size: 0;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.dh-socials a img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: contain;
}

.dh-socials a:hover {
	transform: translateY(-2px);
	border-color: rgb(255 255 255 / 0.38);
}

.dh-channel {
	display: flex;
	justify-content: center;
	margin-top: 8px;
	padding: 8px 10px;
	border-radius: 10px;
	color: #fff !important;
	font-weight: 800;
}

.dh-channel.telegram { background: #0088cc; }
.dh-channel.whatsapp { background: #25d366; }

.dh-trust-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgb(255 255 255 / 0.1);
}

.dh-trust-row span {
	color: #fff;
}

.dh-trust-row i {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgb(255 255 255 / 0.1);
	border-radius: 10px;
	background: rgb(255 255 255 / 0.05);
}

.dh-copyright {
	margin: 12px 0 0;
	padding-top: 8px;
	border-top: 1px solid rgb(255 255 255 / 0.1);
	color: #64748b;
	font-size: 12px;
	text-align: center;
}

.dh-archive,
.dh-post,
.dh-single-deal,
.dh-empty {
	padding: 36px 0 60px;
}

.dh-archive-head {
	margin-bottom: 22px;
}

.dh-archive-head h1,
.dh-post h1 {
	margin: 0 0 6px;
	color: var(--header);
	font-size: clamp(34px, 5vw, 54px);
	font-weight: 900;
	letter-spacing: 0;
}

.dh-archive-head p {
	margin: 0;
	color: var(--muted);
}

.dh-single-card {
	display: grid;
	grid-template-columns: 46% 1fr;
	gap: 28px;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-single-image {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 420px;
	border-radius: 18px;
	background: #f8fafc;
}

.dh-single-image img {
	max-height: 380px;
	object-fit: contain;
}

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

.dh-single-info h1 {
	margin: 12px 0;
	color: var(--header);
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.12;
	letter-spacing: 0;
}

.dh-save {
	margin: 8px 0 0;
	color: var(--success);
	font-weight: 900;
}

.dh-single-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.dh-single-badges span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #f1f5f9;
	color: var(--header);
	font-size: 12px;
	font-weight: 800;
}

.dh-content {
	max-width: 780px;
	margin: 34px auto;
	color: #334155;
	font-size: 17px;
	line-height: 1.8;
}

.dh-content h2,
.dh-content h3 {
	color: var(--header);
	font-weight: 900;
}

.dh-content a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.dh-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.dh-blog-card {
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-blog-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 12px;
}

.dh-blog-card h2 {
	margin: 0 0 8px;
	color: var(--header);
	font-size: 20px;
}

.dh-blog-card p {
	margin: 0;
	color: var(--muted);
}

.dh-empty {
	text-align: center;
}

.dh-admin-field label {
	display: block;
	margin-bottom: 4px;
}

.dh-admin-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 20px 0;
}

.dh-admin-stat {
	padding: 18px;
	border: 1px solid #ccd0d4;
	border-radius: 10px;
	background: #fff;
}

.dh-admin-stat strong {
	display: block;
	font-size: 28px;
}

.dh-admin-stat span {
	color: #646970;
}

@media (max-width: 1120px) {
	.dh-menu,
	.dh-search {
		display: none;
	}

	.dh-mobile-toggle {
		display: block;
	}

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

@media (max-width: 860px) {
	.dh-hero-card,
	.dh-deal-day-card,
	.dh-single-card,
	.dh-newsletter .dh-container {
		grid-template-columns: 1fr;
	}

	.dh-hero-card > img {
		margin: 0 auto;
	}

	.dh-hero-features,
	.dh-category-grid,
	.dh-store-grid,
	.dh-coupon-grid,
	.dh-footer-grid,
	.dh-trust-row,
	.dh-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dh-cat-row {
		grid-template-columns: 1fr;
	}

	.dh-cat-side {
		min-height: auto;
	}

	.dh-newsletter form {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.dh-container {
		width: min(100% - 24px, 1280px);
	}

	.dh-logo img,
	.custom-logo {
		max-width: 220px;
	}

	.dh-hero {
		display: none;
	}

	.dh-category-grid,
	.dh-deal-grid,
	.dh-store-grid,
	.dh-coupon-grid,
	.dh-footer-grid,
	.dh-trust-row,
	.dh-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dh-hero-features {
		grid-template-columns: 1fr;
	}

	.dh-deal-img {
		height: 140px;
	}

	.dh-section-head {
		align-items: start;
		flex-direction: column;
	}

	.dh-footer {
		margin: 0 12px 12px;
	}
}

.dh-archive-filter {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) 180px auto;
	gap: 10px;
	margin-bottom: 18px;
	padding: 14px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-archive-filter input,
.dh-archive-filter select {
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0 12px;
	background: #fff;
	font-weight: 700;
}

.dh-tech-news {
	padding: 28px 0;
	border-top: 1px solid rgb(232 236 240 / 0.7);
	background: #fff;
}

.dh-tech-news .material-icons {
	color: var(--orange);
}

@media (max-width: 640px) {
	.dh-archive-filter {
		grid-template-columns: 1fr;
	}
}

.dh-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 28px;
	padding: 34px 0 60px;
	align-items: start;
}

.dh-post-main {
	min-width: 0;
	padding: 26px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-post-header h1 {
	margin: 10px 0;
	color: var(--header);
	font-size: clamp(32px, 5vw, 50px);
	line-height: 1.08;
	letter-spacing: 0;
}

.dh-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.dh-post-meta span + span::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--orange);
	vertical-align: middle;
}

.dh-post-featured {
	max-width: 680px;
	margin: 22px auto 0;
}

.dh-post-featured img {
	width: 100%;
	max-height: 360px;
	object-fit: cover;
	border-radius: 18px;
	border: 1px solid var(--border);
}

.dh-post-sidebar {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 16px;
}

.dh-sidebar-card {
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-sidebar-card h2 {
	margin: 0 0 12px;
	color: var(--header);
	font-size: 18px;
	font-weight: 900;
}

.dh-sidebar-article,
.dh-sidebar-deal {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-top: 1px solid var(--border);
}

.dh-sidebar-article:first-of-type,
.dh-sidebar-deal:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.dh-sidebar-article img,
.dh-sidebar-deal img {
	width: 68px;
	height: 68px;
	border-radius: 12px;
	object-fit: cover;
	background: #f8fafc;
}

.dh-sidebar-article span,
.dh-sidebar-deal span {
	color: var(--header);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
}

.dh-sidebar-article small,
.dh-sidebar-deal small {
	display: block;
	margin-top: 5px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}

.dh-license-locked {
	max-width: 620px;
	margin: 70px auto;
	padding: 30px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--shadow);
	text-align: center;
}

@media (max-width: 980px) {
	.dh-post-layout {
		grid-template-columns: 1fr;
	}

	.dh-post-sidebar {
		position: static;
	}
}

.dh-store-card {
	min-height: 150px;
}

.dh-store-card img {
	display: block;
	width: auto;
	max-width: 132px;
	max-height: 54px;
	margin-bottom: 6px;
	object-fit: contain;
}

.dh-cat-tile img,
.dh-cat-side img {
	object-fit: contain;
}

.dh-footer-pro {
	padding-top: 26px;
}

.dh-footer-pro .dh-footer-grid {
	grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr 1.15fr;
	align-items: start;
}

.dh-footer-brand p,
.dh-footer-connect p {
	max-width: 300px;
	line-height: 1.55;
}

.dh-footer-list {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dh-footer-list a {
	display: inline-flex;
	padding: 2px 0;
}

.dh-footer-list a::before {
	content: '';
	width: 4px;
	height: 4px;
	margin: 8px 8px 0 0;
	border-radius: 50%;
	background: var(--orange);
	opacity: 0.75;
}

@media (max-width: 1120px) {
	.dh-footer-pro .dh-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.dh-footer-pro .dh-footer-grid {
		grid-template-columns: 1fr;
	}
}

.dh-search {
	width: min(390px, 30vw);
	padding: 4px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(241,245,249,0.96));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 10px 26px rgba(0,0,0,0.14);
}

.dh-search input[type="search"] {
	height: 42px;
	background: transparent;
	font-weight: 700;
}

.dh-search input[type="search"]::placeholder {
	color: #64748b;
	font-weight: 600;
}

.dh-search button {
	width: 42px;
	height: 42px;
	right: 4px;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	box-shadow: 0 6px 16px rgba(245, 158, 11, 0.34);
}

.dh-product-detail {
	padding-top: 36px;
}

.dh-product-hero {
	grid-template-columns: minmax(320px, 46%) 1fr;
}

.dh-product-promo {
	display: inline-flex;
	width: fit-content;
	margin: 12px 0 0;
	padding: 7px 10px;
	border-radius: 10px;
	background: #fff7ed;
	color: #c2410c;
	font-weight: 900;
}

.dh-product-grid-detail {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 18px;
	margin: 24px 0;
}

.dh-product-panel {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
}

.dh-product-panel h2,
.dh-related-title {
	margin: 0 0 16px;
	color: var(--header);
	font-size: 24px;
	font-weight: 900;
}

.dh-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.dh-spec-grid div {
	padding: 12px;
	border-radius: 14px;
	background: #f8fafc;
}

.dh-spec-grid span {
	display: block;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.dh-spec-grid strong {
	display: block;
	margin-top: 4px;
	color: var(--header);
	font-size: 13px;
}

.dh-feature-list {
	margin: 0;
	padding-left: 18px;
	color: #334155;
	font-weight: 700;
}

.dh-feature-list li {
	margin: 8px 0;
}

.dh-product-copy {
	max-width: 920px;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: #fff;
}

@media (max-width: 860px) {
	.dh-product-grid-detail,
	.dh-product-hero {
		grid-template-columns: 1fr;
	}

	.dh-spec-grid {
		grid-template-columns: 1fr;
	}
}

/* Final responsive polish layer */
body {
	min-width: 320px;
}

.dh-post-layout,
.dh-single-card,
.dh-product-grid-detail,
.dh-footer-grid,
.dh-deal-grid,
.dh-category-grid,
.dh-store-grid,
.dh-coupon-grid,
.dh-blog-grid {
	min-width: 0;
}

.dh-post-main,
.dh-post-sidebar,
.dh-single-info,
.dh-deal-card,
.dh-blog-card {
	min-width: 0;
}

.dh-post-layout {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
	gap: clamp(18px, 3vw, 34px);
}

.dh-post-sidebar {
	top: 88px;
	align-self: start;
}

.dh-sidebar-card {
	position: relative;
	overflow: hidden;
	padding: 18px;
	border-color: rgba(232, 236, 240, 0.95);
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.dh-sidebar-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #38bdf8, var(--navy));
}

.dh-sidebar-highlight {
	background: linear-gradient(135deg, #08142e, #002b6b);
	color: #fff;
}

.dh-sidebar-highlight::before {
	background: linear-gradient(90deg, #fbbf24, #f97316);
}

.dh-sidebar-kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fbbf24;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.dh-sidebar-highlight h2 {
	margin: 12px 0 8px;
	color: #fff;
	font-size: 22px;
	line-height: 1.15;
}

.dh-sidebar-highlight p {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
}

.dh-sidebar-cta {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	padding: 11px 14px;
	border-radius: 12px;
	background: var(--orange);
	color: #111827;
	font-size: 13px;
	font-weight: 900;
}

.dh-sidebar-card h2 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dh-sidebar-card h2 .material-icons {
	color: var(--orange);
	font-size: 20px;
}

.dh-sidebar-article,
.dh-sidebar-deal {
	border-top-color: rgba(232, 236, 240, 0.88);
	transition: transform 0.22s ease, background-color 0.22s ease;
}

.dh-sidebar-article:hover,
.dh-sidebar-deal:hover {
	transform: translateX(3px);
}

.dh-sidebar-placeholder {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fff7ed, #dbeafe);
	color: var(--orange);
}

.dh-content img,
.dh-post-main img,
.dh-product-copy img {
	height: auto;
	max-width: 100%;
}

.dh-content table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

@media (max-width: 1280px) {
	.dh-deal-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.dh-container {
		width: min(100% - 28px, 1180px);
	}
}

@media (max-width: 1120px) {
	.dh-nav {
		gap: 12px;
	}

	.dh-logo img,
	.custom-logo {
		max-width: 230px;
	}

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

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

	.dh-post-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

@media (max-width: 980px) {
	.dh-post-layout {
		grid-template-columns: 1fr;
	}

	.dh-post-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dh-post-sidebar .dh-sidebar-highlight {
		grid-column: 1 / -1;
	}

	.dh-single-card,
	.dh-product-grid-detail,
	.dh-deal-day-card,
	.dh-newsletter .dh-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.dh-container {
		width: min(100% - 24px, 760px);
	}

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

	.dh-category-grid,
	.dh-store-grid,
	.dh-coupon-grid,
	.dh-blog-grid,
	.dh-footer-pro .dh-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dh-hero-card {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.dh-hero-card > img {
		max-height: 240px;
		margin: 0 auto;
	}

	.dh-hero-features {
		grid-template-columns: 1fr;
	}

	.dh-single-image {
		min-height: 300px;
	}

	.dh-single-info h1,
	.dh-post-header h1 {
		font-size: clamp(30px, 7vw, 42px);
	}
}

@media (max-width: 720px) {
	.dh-post-sidebar {
		grid-template-columns: 1fr;
	}

	.dh-post-main {
		padding: 18px;
		border-radius: 18px;
	}

	.dh-post-featured {
		margin-top: 16px;
	}

	.dh-post-featured img {
		max-height: 260px;
		border-radius: 14px;
	}

	.dh-content {
		font-size: 16px;
		line-height: 1.75;
	}
}

@media (max-width: 640px) {
	.dh-container {
		width: min(100% - 20px, 620px);
	}

	.dh-header {
		position: sticky;
	}

	.dh-nav {
		min-height: 62px;
	}

	.dh-logo img,
	.custom-logo {
		max-width: 190px;
		max-height: 46px;
	}

	.dh-hero {
		display: block;
		padding-top: 10px;
	}

	.dh-hero h1 {
		font-size: clamp(32px, 10vw, 44px);
	}

	.dh-deal-grid,
	.dh-category-grid,
	.dh-store-grid,
	.dh-coupon-grid,
	.dh-blog-grid,
	.dh-footer-pro .dh-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.dh-deal-img {
		height: 132px;
	}

	.dh-deal-body h3 {
		font-size: 11px;
	}

	.dh-price-row strong {
		font-size: 15px;
	}

	.dh-buy {
		font-size: 11px;
		min-height: 36px;
	}

	.dh-section-head h2,
	.dh-toolbar h2 {
		font-size: 22px;
	}

	.dh-single-card,
	.dh-product-panel,
	.dh-product-copy,
	.dh-newsletter .dh-container {
		padding: 16px;
		border-radius: 16px;
	}

	.dh-spec-grid {
		grid-template-columns: 1fr;
	}

	.dh-newsletter form,
	.dh-archive-filter {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	.dh-deal-grid,
	.dh-category-grid,
	.dh-store-grid,
	.dh-coupon-grid,
	.dh-blog-grid,
	.dh-footer-pro .dh-footer-grid {
		grid-template-columns: 1fr;
	}

	.dh-float-bar {
		justify-content: flex-start;
	}

	.dh-sidebar-article,
	.dh-sidebar-deal {
		grid-template-columns: 58px 1fr;
	}

	.dh-sidebar-article img,
	.dh-sidebar-deal img,
	.dh-sidebar-placeholder {
		width: 58px;
		height: 58px;
	}

	.dh-single-info h1,
	.dh-post-header h1 {
		font-size: 28px;
	}
}

/* DealHub category page clone */
.dh-category-page {
	background: #f8fafc;
}

.dh-category-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 18px 0 14px;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

.dh-category-breadcrumb a {
	color: #476386;
}

.dh-category-hero-copy {
	display: grid;
	grid-template-columns: 1fr 220px;
	align-items: center;
	gap: 24px;
	min-height: 234px;
	padding: 28px;
	border-radius: 16px;
	background: linear-gradient(110deg, #07142f 0%, #101a35 48%, #f59e0b 100%);
	color: #fff;
	overflow: hidden;
}

.dh-category-hero-copy h1 {
	margin: 14px 0 10px;
	font-size: clamp(34px, 5vw, 46px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.dh-category-hero-copy p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.45;
}

.dh-category-hero-copy > img {
	max-width: 190px;
	max-height: 150px;
	justify-self: center;
	padding: 22px;
	border-radius: 28px;
	background: rgba(255,255,255,0.12);
	object-fit: contain;
}

.dh-category-label,
.dh-category-stats span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border-radius: 999px;
	background: rgba(255,255,255,0.12);
	font-size: 13px;
	font-weight: 900;
}

.dh-category-label {
	padding: 8px 13px;
}

.dh-category-label .material-icons {
	font-size: 18px;
}

.dh-category-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.dh-category-stats span {
	padding: 7px 12px;
}

.dh-subcategory-pills {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 16px 0 20px;
	scrollbar-width: thin;
}

.dh-subcategory-pills a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	padding: 10px 14px;
	border: 1px solid #dbe3ee;
	border-radius: 999px;
	background: #fff;
	color: #0f172a;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}

.dh-subcategory-pills .material-icons {
	font-size: 17px;
	color: #001b44;
}

.dh-category-shop-band {
	padding: 24px 0 54px;
	border-top: 1px solid #e8ecf0;
	background: #f8fafc;
}

.dh-category-shop-grid {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.dh-category-filter {
	position: sticky;
	top: 90px;
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid #e8ecf0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}

.dh-category-filter h2 {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 900;
}

.dh-category-filter input,
.dh-category-filter select {
	width: 100%;
	height: 38px;
	border: 1px solid #dbe3ee;
	border-radius: 9px;
	padding: 0 12px;
	background: #fff;
	color: #0f172a;
}

.dh-category-products-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.dh-category-products-head h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #0b1222;
	font-size: 22px;
	font-weight: 900;
}

.dh-category-products-head .material-icons {
	color: #f59e0b;
}

.dh-category-products-head span {
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
}

.dh-filter-item[hidden] {
	display: none;
}

.dh-filter-item {
	min-width: 0;
}

.dh-filter-item .dh-deal-card {
	height: 100%;
}

@media (max-width: 980px) {
	.dh-category-shop-grid {
		grid-template-columns: 1fr;
	}

	.dh-category-filter {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dh-category-filter h2 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.dh-category-hero-copy {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.dh-category-hero-copy > img {
		justify-self: start;
		max-width: 130px;
		max-height: 110px;
		padding: 14px;
	}

	.dh-category-hero-copy p {
		font-size: 15px;
	}
}

@media (max-width: 520px) {
	.dh-category-filter {
		grid-template-columns: 1fr;
	}

	.dh-category-products-head {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* DealHub polish fixes: cache-busted in 1.0.2 */
html {
	margin-top: 0 !important;
}

body.admin-bar .dh-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .dh-header {
		top: 46px;
	}
}

.dh-header {
	backdrop-filter: blur(14px);
}

.dh-nav {
	min-height: 56px;
}

.dh-logo img,
.custom-logo {
	max-height: 44px;
}

.dh-hero {
	padding-top: 20px;
}

.dh-top-deals,
.dh-hot-category,
.dh-stores {
	position: relative;
	z-index: 1;
}

.dh-top-deals .dh-scroll-row {
	padding: 8px 2px 14px;
	scroll-padding-inline: 2px;
}

.dh-hot-category .dh-cat-row {
	align-items: stretch;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.dh-hot-category .dh-cat-side {
	border-radius: 18px;
	background: linear-gradient(135deg, #07142f, #0a3b80);
	color: #fff;
}

.dh-hot-category .dh-cat-side small {
	color: rgba(255, 255, 255, 0.72);
}

.dh-hot-category .dh-cat-side img {
	width: 54px;
	height: 54px;
	padding: 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.12);
	object-fit: contain;
}

.dh-store-card {
	grid-template-rows: 54px auto auto;
	min-height: 150px;
	padding: 22px 18px;
}

.dh-store-card img {
	display: block;
	width: min(140px, 82%);
	height: 52px;
	max-width: 140px;
	max-height: 52px;
	object-fit: contain;
}

.dh-store-card b {
	font-size: 16px;
	font-weight: 900;
}

.dh-category-page .dh-category-breadcrumb {
	padding: 18px 0 16px;
}

.dh-category-page .dh-category-hero-copy {
	position: relative;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 230px;
	align-items: center;
	gap: 28px;
	min-height: 232px;
	padding: 30px 28px;
	border-radius: 16px;
	background: linear-gradient(110deg, #07142f 0%, #16213d 50%, #f59e0b 100%) !important;
	box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
	color: #fff !important;
	overflow: hidden;
}

.dh-category-page .dh-category-hero-copy::after {
	content: '';
	position: absolute;
	right: -72px;
	bottom: -120px;
	width: 360px;
	height: 360px;
	border: 58px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
}

.dh-category-page .dh-category-hero-copy > * {
	position: relative;
	z-index: 1;
}

.dh-category-page .dh-category-label,
.dh-category-page .dh-category-stats span {
	display: inline-flex !important;
	align-items: center;
	gap: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.13);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.dh-category-page .dh-category-label {
	padding: 8px 13px;
}

.dh-category-page .dh-category-hero-copy h1 {
	margin: 14px 0 10px;
	color: #fff;
	font-size: clamp(34px, 4vw, 46px);
	font-weight: 900;
	line-height: 1.05;
}

.dh-category-page .dh-category-hero-copy p {
	max-width: 800px;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.48;
}

.dh-category-page .dh-category-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.dh-category-page .dh-category-stats span {
	padding: 7px 12px;
}

.dh-category-page .dh-category-hero-copy > img {
	width: 190px;
	height: 150px;
	padding: 22px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.14);
	object-fit: contain;
}

.dh-category-page .dh-subcategory-pills {
	padding-bottom: 24px;
}

.dh-category-page .dh-subcategory-pills a {
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dh-category-page .dh-category-shop-band {
	background: #f8fafc;
}

.dh-category-page .dh-category-filter {
	top: 96px;
}

@media (max-width: 1024px) {
	.dh-category-page .dh-category-hero-copy {
		grid-template-columns: 1fr;
	}

	.dh-category-page .dh-category-hero-copy > img {
		width: 140px;
		height: 112px;
	}
}

@media (max-width: 760px) {
	.dh-nav {
		min-height: 58px;
	}

	.dh-logo img,
	.custom-logo {
		max-width: 210px;
		max-height: 40px;
	}

	.dh-category-page .dh-category-hero-copy {
		padding: 22px;
	}

	.dh-category-page .dh-category-hero-copy h1 {
		font-size: 32px;
	}

	.dh-store-card {
		min-height: 132px;
	}
}
