/**
 * DentoMart — main stylesheet.
 *
 * Clean Light design system: white surfaces with a professional teal accent.
 */

/* ---------------------------------------------------------- Tokens */
:root {
	--dm-ink: #0f172a;
	--dm-navy-900: #0f172a;
	--dm-navy-800: #1e293b;
	--dm-navy-700: #334155;
	--dm-slate-500: #64748b;
	--dm-slate-400: #94a3b8;
	--dm-slate-300: #cbd5e1;
	--dm-slate-200: #e2e8f0;
	--dm-slate-100: #f1f5f9;
	--dm-slate-50: #f8fafc;
	--dm-bg: #fafbfc;
	--dm-white: #ffffff;
	--dm-accent: #0d9488;
	--dm-accent-strong: #14b8a6;
	--dm-accent-deep: #0f766e;
	--dm-amber: #f59e0b;
	--dm-success: #10b981;
	--dm-text: #1e293b;
	--dm-muted: #64748b;
	--dm-border: #e2e8f0;

	--dm-font-heading: 'Montserrat', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--dm-font-body: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

	--dm-radius: 12px;
	--dm-radius-sm: 8px;
	--dm-radius-lg: 16px;
	--dm-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
	--dm-shadow-md: 0 6px 16px rgba(15, 23, 42, 0.10);
	--dm-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.16);

	--dm-container: 1280px;
}

/* ---------------------------------------------------------- Reset & base */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	font-family: var(--dm-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--dm-text);
	background: var(--dm-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: var(--dm-accent-deep);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--dm-text);
}

p {
	margin: 0 0 1em;
}

ul {
	margin: 0;
	padding: 0;
}

button {
	font-family: inherit;
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--dm-accent);
	outline-offset: 2px;
}

/* ---------------------------------------------------------- Utilities */
.dm-container {
	max-width: var(--dm-container);
	margin-inline: auto;
	padding-inline: 24px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 10000;
	background: var(--dm-white);
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
}

.skip-link:focus {
	left: 0;
	color: var(--dm-text);
	text-decoration: none;
}

/* ---------------------------------------------------------- Buttons */
.dm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 14px 24px;
	border-radius: var(--dm-radius-sm);
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
	text-decoration: none !important;
	cursor: pointer;
}

.dm-btn:active {
	transform: translateY(1px);
}

.dm-btn--lg {
	padding: 16px 30px;
	font-size: 16px;
}

.dm-btn--accent {
	background: var(--dm-accent);
	color: var(--dm-white);
}

.dm-btn--accent:hover {
	background: var(--dm-accent-strong);
	color: var(--dm-white);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.dm-btn--ghost {
	background: var(--dm-slate-100);
	color: var(--dm-text);
	border-color: var(--dm-border);
}

.dm-btn--ghost:hover {
	background: var(--dm-slate-200);
	color: var(--dm-text);
}

.dm-btn--outline {
	background: transparent;
	color: var(--dm-accent);
	border-color: var(--dm-accent);
}

.dm-btn--outline:hover {
	background: rgba(13, 148, 136, 0.08);
	color: var(--dm-accent);
}

.dm-btn--ink {
	background: var(--dm-ink);
	color: var(--dm-white);
	border-color: var(--dm-ink);
}

.dm-btn--ink:hover {
	background: var(--dm-accent);
	color: var(--dm-white);
	border-color: var(--dm-accent);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.dm-btn--block {
	display: flex;
	width: 100%;
}

/* Icon-only circular button */
.dm-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--dm-white);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.dm-icon-btn:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* ---------------------------------------------------------- Topbar */
.dm-topbar {
	background: var(--dm-ink);
	color: var(--dm-slate-400);
	font-size: 13px;
}

.dm-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
}

.dm-topbar__message {
	margin: 0;
}

.dm-topbar__links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dm-topbar__sep {
	opacity: 0.5;
}

.dm-topbar__link {
	color: var(--dm-slate-300, #cbd5e1);
}

.dm-topbar__link:hover {
	color: var(--dm-white);
}

/* ---------------------------------------------------------- Header layout */
.dm-header-sticky {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--dm-white);
	border-bottom: 1px solid var(--dm-border);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.dm-header-sticky.is-scrolled {
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.dm-masthead__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	padding-block: 8px;
	transition: padding 0.2s ease;
	width: 100%;
}

.dm-masthead__brand {
	display: flex;
	align-items: center;
	justify-self: start;
	flex-shrink: 0;
}

.dm-masthead__search {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
}

.dm-masthead__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	gap: 12px;
	flex-shrink: 0;
}

/* ---------------------------------------------------------- Logo (Homepage, Products, About, Contact) */
.dm-logo,
.custom-logo-link,
a.dm-logo,
a.custom-logo-link {
	display: inline-flex !important;
	align-items: center !important;
	text-decoration: none !important;
	height: 84px !important;
	max-height: 84px !important;
	line-height: 1 !important;
}

.dm-logo-img,
.custom-logo,
.custom-logo-link img,
.dm-logo img,
.site-header .dm-logo-img,
.site-header .custom-logo,
.site-header .custom-logo-link img,
.woocommerce-page .site-header .dm-logo-img,
.woocommerce-page .site-header .custom-logo,
.woocommerce-page .site-header .custom-logo-link img,
.single-product .site-header .dm-logo-img,
.single-product .site-header .custom-logo,
.archive .site-header .dm-logo-img,
.archive .site-header .custom-logo {
	height: 84px !important;
	max-height: 84px !important;
	width: auto !important;
	max-width: 260px !important;
	object-fit: contain !important;
	display: block !important;
	transition: all 0.25s ease !important;
}

.dm-header-sticky.is-scrolled .dm-logo-img,
.dm-header-sticky.is-scrolled .custom-logo,
.dm-header-sticky.is-scrolled .custom-logo-link img,
.dm-header-sticky.is-scrolled .dm-logo,
.dm-header-sticky.is-scrolled .custom-logo-link {
	height: 56px !important;
	max-height: 56px !important;
	max-width: 200px !important;
}

.dm-logo:hover .dm-logo-img,
.custom-logo-link:hover .custom-logo {
	opacity: 0.92;
	transform: scale(1.02);
}

/* Footer Logo (60px larger, transparent & clean without white container box) */
.dm-footer-col--brand .dm-logo,
.dm-footer-col--brand .custom-logo-link {
	height: 104px !important;
	max-height: 104px !important;
	display: inline-flex !important;
	margin-bottom: 8px;
}

.dm-footer-col--brand .dm-logo-img,
.dm-footer-col--brand .custom-logo {
	height: 104px !important;
	max-height: 104px !important;
	max-width: 320px !important;
	background: transparent !important;
	padding: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}






/* Masthead actions */
.dm-masthead__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dm-action {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: var(--dm-radius-sm);
	color: var(--dm-white);
	text-decoration: none !important;
	transition: background-color 0.2s ease;
}

.dm-action:hover {
	background: rgba(255, 255, 255, 0.08);
}

.dm-action__icon {
	position: relative;
	display: inline-flex;
	color: var(--dm-white);
}

.dm-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--dm-accent);
	color: var(--dm-white);
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	font-family: var(--dm-font-body);
}

.dm-cart-count[data-empty] {
	background: var(--dm-navy-700);
}

.dm-action__label {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.dm-action__top {
	font-size: 12px;
	color: var(--dm-slate-500);
}

.dm-action__sub {
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--dm-ink);
}

.dm-action {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: var(--dm-radius-sm);
	color: var(--dm-ink);
	text-decoration: none !important;
	transition: background-color 0.2s ease;
}

.dm-action:hover {
	background: var(--dm-slate-100);
}

.dm-action__icon {
	position: relative;
	display: inline-flex;
	color: var(--dm-ink);
}

.dm-mobile-toggle {
	display: none;
}

/* ---------------------------------------------------------- Nav */
.dm-nav {
	background: var(--dm-white);
	border-top: 1px solid var(--dm-border);
}

.dm-nav__menu {
	display: flex;
	list-style: none;
	gap: 2px;
	margin: 0;
	padding: 0;
}

.dm-nav__menu > li {
	position: relative;
}

.dm-nav__menu > li > a {
	display: block;
	padding: 14px 16px;
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--dm-text);
	text-decoration: none !important;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.dm-nav__menu > li > a:hover,
.dm-nav__menu > li.current-menu-item > a,
.dm-nav__menu > li.current_page_item > a {
	color: var(--dm-accent);
	background: var(--dm-slate-50);
}

/* Dropdown */
.dm-nav__menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--dm-white);
	border-radius: 0 0 var(--dm-radius-sm) var(--dm-radius-sm);
	box-shadow: var(--dm-shadow-lg);
	list-style: none;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 60;
}

.dm-nav__menu li:hover > ul,
.dm-nav__menu li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dm-nav__menu ul a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	color: var(--dm-text);
	font-size: 14px;
	text-decoration: none !important;
}

.dm-nav__menu ul a:hover {
	background: var(--dm-slate-100);
	color: var(--dm-accent-deep);
}

.dm-nav__menu > li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	margin-left: 7px;
}

/* ---------------------------------------------------------- Mobile menu */
.dm-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	pointer-events: none;
}

.dm-mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.dm-mobile-menu__panel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(86vw, 360px);
	background: var(--dm-white);
	color: var(--dm-text);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

body.dm-menu-open .dm-mobile-menu {
	pointer-events: auto;
}

body.dm-menu-open .dm-mobile-menu__overlay {
	opacity: 1;
}

body.dm-menu-open .dm-mobile-menu__panel {
	transform: translateX(0);
}

.dm-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--dm-border);
}

.dm-mobile-menu__nav {
	padding: 12px 16px;
	flex: 1;
}

.dm-mobile-menu__list {
	list-style: none;
	margin: 0;
}

.dm-mobile-menu__list a {
	display: block;
	padding: 13px 10px;
	color: var(--dm-text);
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none !important;
	border-radius: 8px;
}

.dm-mobile-menu__list a:hover {
	background: var(--dm-slate-100);
	color: var(--dm-accent);
}

.dm-mobile-menu__list ul {
	list-style: none;
	padding-left: 16px;
	border-left: 1px solid var(--dm-border);
	margin: 2px 0 4px 12px;
}

.dm-mobile-menu__list ul a {
	font-weight: 500;
	font-size: 14px;
	padding: 10px;
}

.dm-mobile-menu__foot {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px;
	border-top: 1px solid var(--dm-border);
}

.dm-mobile-menu__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 10px;
	color: var(--dm-text);
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none !important;
	border-radius: 8px;
}

.dm-mobile-menu__link:hover {
	background: var(--dm-slate-100);
}

/* ---------------------------------------------------------- Sections (shared) */
.dm-section {
	padding-block: 72px;
}

.dm-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
}

.dm-section__head--center {
	justify-content: center;
	text-align: center;
}

.dm-section__eyebrow {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dm-accent-deep);
	margin: 0 0 10px;
}

.dm-section__title {
	font-size: 34px;
	margin: 0 0 8px;
}

.dm-section__subtitle {
	color: var(--dm-muted);
	margin: 0;
	max-width: 640px;
}

.dm-section__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--dm-accent-deep);
	white-space: nowrap;
	text-decoration: none !important;
}

.dm-section__more:hover {
	color: var(--dm-accent);
}

/* Scroll carousel buttons */
.dm-scroll-controls {
	display: flex;
	gap: 10px;
}

.dm-scroll-btn {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid var(--dm-border);
	background: var(--dm-white);
	color: var(--dm-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.dm-scroll-btn svg {
	transform: scaleX(-1);
}

.dm-scroll-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.dm-scroll-btn:not(:disabled):hover {
	background: var(--dm-ink);
	color: var(--dm-white);
}

/* ---------------------------------------------------------- Hero */
.dm-hero {
	position: relative;
	background: var(--dm-white);
	color: var(--dm-text);
	overflow: hidden;
}

.dm-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 500px at 85% -10%, rgba(13, 148, 136, 0.12), transparent 60%),
		radial-gradient(700px 420px at 0% 110%, rgba(13, 148, 136, 0.08), transparent 55%),
		linear-gradient(135deg, var(--dm-white) 0%, var(--dm-slate-50) 100%);
	pointer-events: none;
}

.dm-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: 0.6;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 75%);
}

.dm-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
	padding-block: 84px 96px;
}

.dm-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(13, 148, 136, 0.12);
	border: 1px solid rgba(13, 148, 136, 0.3);
	color: var(--dm-accent);
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 13px;
	margin: 0 0 20px;
}

.dm-hero__title {
	color: var(--dm-ink);
	font-size: 50px;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
}

.dm-hero__subtitle {
	color: var(--dm-muted);
	font-size: 17px;
	max-width: 520px;
	margin: 0 0 30px;
}

.dm-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 38px;
}

.dm-hero__mini-stats {
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding-top: 28px;
	border-top: 1px solid var(--dm-border);
}

.dm-hero__mini-stats li {
	display: flex;
	flex-direction: column;
}

.dm-hero__mini-stats strong {
	font-family: var(--dm-font-heading);
	font-size: 26px;
	color: var(--dm-ink);
	line-height: 1.1;
}

.dm-hero__mini-stats span {
	font-size: 13px;
	color: var(--dm-muted);
}

.dm-hero__media {
	position: relative;
	display: flex;
	justify-content: center;
}

.dm-hero__img {
	width: 100%;
	max-width: 460px;
	border-radius: 28px;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
	border: 1px solid var(--dm-border);
	background: var(--dm-white);
	object-fit: cover;
	aspect-ratio: 1/1;
}

.dm-hero__float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	box-shadow: var(--dm-shadow-md);
	color: var(--dm-text);
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 13px;
	backdrop-filter: blur(6px);
}
	color: var(--dm-white);
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 13px;
	box-shadow: var(--dm-shadow-md);
	backdrop-filter: blur(6px);
}

.dm-hero__float svg {
	color: var(--dm-accent);
	flex: none;
}

.dm-hero__float--trust {
	bottom: 26px;
	left: -14px;
}

/* ---------------------------------------------------------- Trust strip */
.dm-trust {
	background: var(--dm-slate-50);
	border-bottom: 1px solid var(--dm-border);
	padding-block: 56px;
}

.dm-trust__title {
	text-align: center;
	font-size: 22px;
	margin-bottom: 34px;
	color: var(--dm-text);
}

.dm-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.dm-trust__item {
	text-align: center;
	padding: 8px 12px;
}

.dm-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 18px;
	background: rgba(13, 148, 136, 0.12);
	color: var(--dm-accent);
	margin-bottom: 16px;
}

.dm-trust__item-title {
	font-size: 17px;
	margin-bottom: 8px;
}

.dm-trust__item-text {
	color: var(--dm-muted);
	font-size: 14px;
	margin: 0;
}

/* ---------------------------------------------------------- Featured Categories with Banners */
.dm-featured-cats {
	background: var(--dm-white);
}

.dm-featured-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dm-featured-cats__grid--1 { grid-template-columns: 1fr; }
.dm-featured-cats__grid--2 { grid-template-columns: repeat(2, 1fr); }
.dm-featured-cats__grid--3 { grid-template-columns: repeat(3, 1fr); }
.dm-featured-cats__grid--4 { grid-template-columns: repeat(4, 1fr); }
.dm-featured-cats__grid--5 { grid-template-columns: repeat(5, 1fr); }
.dm-featured-cats__grid--6 { grid-template-columns: repeat(6, 1fr); }

.dm-featured-cat {
	border-radius: var(--dm-radius-lg);
	overflow: hidden;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-featured-cat:hover {
	transform: translateY(-4px);
	box-shadow: var(--dm-shadow-lg);
	border-color: var(--dm-accent);
}

.dm-featured-cat__link {
	display: block;
	text-decoration: none !important;
	color: var(--dm-white);
}

.dm-featured-cat__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.dm-featured-cat__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.dm-featured-cat:hover .dm-featured-cat__img {
	transform: scale(1.05);
}

.dm-featured-cat__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--dm-slate-100), var(--dm-slate-200));
	color: var(--dm-slate-400);
}

.dm-featured-cat__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.75) 100%);
	transition: opacity 0.3s ease;
}

.dm-featured-cat__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 1;
}

.dm-featured-cat__count {
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}

.dm-featured-cat__name {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	margin: 0;
	color: var(--dm-white);
}

.dm-featured-cat__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--dm-white);
	color: var(--dm-accent);
	margin-top: 4px;
	align-self: flex-start;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.dm-featured-cat:hover .dm-featured-cat__arrow {
	opacity: 1;
	transform: translateX(0);
}

.dm-featured-cat__arrow:hover {
	background: var(--dm-accent);
	color: var(--dm-white);
}

/* ---------------------------------------------------------- Categories */
.dm-categories {
	background: var(--dm-white);
}

.dm-category-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.dm-category-card {
	display: flex;
	flex-direction: column;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	overflow: hidden;
	text-decoration: none !important;
	color: var(--dm-text);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dm-shadow-md);
	border-color: var(--dm-accent);
}

.dm-category-card__media {
	aspect-ratio: 1 / 1;
	display: block;
	background: var(--dm-slate-100);
	overflow: hidden;
}

.dm-category-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.dm-category-card:hover .dm-category-card__img {
	transform: scale(1.05);
}

.dm-category-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 48px;
	color: var(--dm-slate-400);
	background: linear-gradient(135deg, var(--dm-slate-100), var(--dm-slate-200));
}

.dm-category-card__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 16px;
}

.dm-category-card__name {
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 15px;
	color: var(--dm-text);
}

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

/* ---------------------------------------------------------- Products */
.dm-products {
	background: var(--dm-white);
}

.dm-product-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x pan-y pinch-zoom;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
	scrollbar-color: var(--dm-slate-200) transparent;
	padding-bottom: 8px;
	margin-inline: -24px;
	padding-inline: 24px;
}

.dm-product-track::-webkit-scrollbar {
	height: 6px;
}

.dm-product-track::-webkit-scrollbar-thumb {
	background: var(--dm-slate-200);
	border-radius: 999px;
}

.dm-product-card {
	flex: 0 0 280px;
	display: flex;
	flex-direction: column;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dm-product-card:hover {
	box-shadow: var(--dm-shadow-md);
	transform: translateY(-3px);
}

.dm-product-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: 190px;
	max-height: 190px;
	aspect-ratio: 1 / 1;
	background: var(--dm-slate-100);
	overflow: hidden;
}

.dm-product-card__media img,
.dm-product-card img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 190px !important;
	object-fit: contain !important;
	object-position: center !important;
	display: block !important;
	transition: transform 0.3s ease;
}

.dm-product-card:hover .dm-product-card__media img,
.dm-product-card:hover img {
	transform: scale(1.05);
}

.dm-product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--dm-white);
}

.dm-product-card__badge--new {
	background: var(--dm-success);
}

.dm-product-card__badge--sale {
	background: var(--dm-amber);
}

.dm-product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px;
}

.dm-product-card__brand {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dm-slate-500);
	margin-bottom: 4px;
}

.dm-product-card__title {
	font-family: var(--dm-font-body);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}

.dm-product-card__title a {
	color: var(--dm-text);
	text-decoration: none !important;
}

.dm-product-card__title a:hover {
	color: var(--dm-accent-deep);
}

.dm-product-card__price {
	margin-top: auto;
	margin-bottom: 12px;
	font-family: var(--dm-font-heading);
}

.dm-product-card__price .woocommerce-Price-amount {
	font-weight: 700;
	font-size: 16px;
	color: var(--dm-text);
}

.dm-product-card__price del {
	opacity: 0.6;
	margin-right: 6px;
}

.dm-product-card__price del .woocommerce-Price-amount {
	font-weight: 500;
	font-size: 13px;
	color: var(--dm-muted);
}

.dm-product-card__price ins {
	text-decoration: none;
}

.dm-product-card__actions .dm-btn {
	width: 100%;
	padding: 12px 16px;
	font-size: 14px;
}

.dm-btn--accent.dm-add-to-cart {
	background: var(--dm-navy-900);
}

.dm-btn--accent.dm-add-to-cart:hover {
	background: var(--dm-accent);
}

/* ---------------------------------------------------------- Top Brands (image cards) */
.dm-top-brands {
	background: var(--dm-white);
}

.dm-top-brands__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dm-top-brand {
	display: flex;
	flex-direction: column;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	overflow: hidden;
	text-decoration: none !important;
	color: var(--dm-text);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-top-brand:hover {
	transform: translateY(-4px);
	box-shadow: var(--dm-shadow-md);
	border-color: var(--dm-accent);
}

.dm-top-brand__media {
	aspect-ratio: 5 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dm-slate-50);
	padding: 18px;
	overflow: hidden;
}

.dm-top-brand__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.dm-top-brand:hover .dm-top-brand__img {
	transform: scale(1.05);
}

.dm-top-brand__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 42px;
	color: var(--dm-accent);
	background: linear-gradient(135deg, var(--dm-slate-100), var(--dm-slate-200));
}

.dm-top-brand__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 16px;
	text-align: center;
	border-top: 1px solid var(--dm-border);
}

.dm-top-brand__name {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 14px;
	color: var(--dm-text);
	line-height: 1.2;
}

.dm-top-brand__meta {
	font-size: 12px;
	color: var(--dm-muted);
}

/* ---------------------------------------------------------- Brand Archive (/brands) */
.dm-brand-archive {
	background: var(--dm-white);
	padding-block: 56px 80px;
}

.dm-brand-archive__head {
	text-align: center;
	margin-bottom: 32px;
}

.dm-brand-archive__title {
	font-size: 38px;
	margin: 0 0 8px;
}

.dm-brand-archive__subtitle {
	color: var(--dm-muted);
	margin: 0;
}

.dm-brand-alpha {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-bottom: 36px;
	padding: 14px 18px;
	background: var(--dm-slate-50);
	border: 1px solid var(--dm-border);
	border-radius: 999px;
}

.dm-brand-alpha__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border-radius: 999px;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 13px;
	color: var(--dm-text);
	text-decoration: none !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.dm-brand-alpha__btn:hover {
	background: var(--dm-slate-200);
	color: var(--dm-text);
}

.dm-brand-alpha__btn.is-active {
	background: var(--dm-accent);
	color: var(--dm-white);
}

.dm-brand-archive__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}

.dm-brand-archive-card {
	display: flex;
	flex-direction: column;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	overflow: hidden;
	text-decoration: none !important;
	color: var(--dm-text);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-brand-archive-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--dm-shadow-md);
	border-color: var(--dm-accent);
}

.dm-brand-archive-card__media {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dm-slate-50);
	padding: 20px;
	overflow: hidden;
}

.dm-brand-archive-card__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.dm-brand-archive-card:hover .dm-brand-archive-card__img {
	transform: scale(1.05);
}

.dm-brand-archive-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 56px;
	color: var(--dm-accent);
	background: linear-gradient(135deg, var(--dm-slate-100), var(--dm-slate-200));
}

.dm-brand-archive-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 16px;
	text-align: center;
	border-top: 1px solid var(--dm-border);
}

.dm-brand-archive-card__name {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 15px;
	color: var(--dm-text);
	line-height: 1.2;
}

.dm-brand-archive-card__meta {
	font-size: 12px;
	color: var(--dm-muted);
}

.dm-brand-archive__empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--dm-muted);
}

/* ---------------------------------------------------------- Single Brand */
.dm-brand-single {
	background: var(--dm-white);
	padding-block: 32px 80px;
}

.dm-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--dm-muted);
	margin-bottom: 24px;
}

.dm-breadcrumb a {
	color: var(--dm-muted);
	text-decoration: none !important;
}

.dm-breadcrumb a:hover {
	color: var(--dm-accent);
}

.dm-breadcrumb span[aria-hidden] {
	color: var(--dm-slate-400);
}

.dm-brand-single__head {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	align-items: center;
	padding: 32px;
	margin-bottom: 40px;
	background: var(--dm-slate-50);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius-lg);
}

.dm-brand-single__media {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	padding: 24px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.dm-brand-single__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.dm-brand-single__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 96px;
	color: var(--dm-accent);
	background: linear-gradient(135deg, var(--dm-slate-100), var(--dm-slate-200));
}

.dm-brand-single__copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dm-brand-single__title {
	font-size: 38px;
	margin: 0 0 6px;
}

.dm-brand-single__desc {
	color: var(--dm-muted);
	max-width: 640px;
	margin: 0 0 12px;
}

.dm-brand-single__desc p {
	margin: 0 0 8px;
}

.dm-brand-single__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding-top: 18px;
	border-top: 1px solid var(--dm-border);
}

.dm-brand-single__stats li {
	display: flex;
	flex-direction: column;
}

.dm-brand-single__stats strong {
	font-family: var(--dm-font-heading);
	font-size: 22px;
	color: var(--dm-ink);
	line-height: 1.1;
}

.dm-brand-single__stats span {
	font-size: 13px;
	color: var(--dm-muted);
}

.dm-brand-single__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.dm-brand-single__empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--dm-muted);
}

.dm-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.dm-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dm-pagination li {
	display: inline-flex;
}

.dm-pagination a,
.dm-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--dm-radius-sm);
	border: 1px solid var(--dm-border);
	background: var(--dm-white);
	color: var(--dm-text);
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
}

.dm-pagination a:hover {
	background: var(--dm-ink);
	color: var(--dm-white);
	border-color: var(--dm-ink);
}

.dm-pagination .current span,
.dm-pagination span.current {
	background: var(--dm-accent);
	color: var(--dm-white);
	border-color: var(--dm-accent);
}

/* ---------------------------------------------------------- Shop / Category Archive */
.dm-shop {
	background: var(--dm-white);
	padding-block: 28px 80px;
}

.dm-shop__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dm-border);
}

.dm-shop__title {
	font-size: 30px;
	margin: 0 0 6px;
}

.dm-shop__desc {
	color: var(--dm-muted);
	max-width: 720px;
	margin: 0;
}

.dm-shop__count {
	color: var(--dm-muted);
	font-size: 14px;
	margin: 0;
	white-space: nowrap;
}

.dm-shop__layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: flex-start;
}

.dm-shop__sidebar {
	position: sticky;
	top: 90px;
	align-self: flex-start;
	max-height: calc(100vh - 105px);
	overflow-y: auto;
	scrollbar-width: thin;
	z-index: 20;
	padding-right: 4px;
}


.dm-shop__filters {
	background: var(--dm-slate-50);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dm-shop__filter {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dm-shop__filter-title {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--dm-text);
	margin: 0;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--dm-border);
}

.dm-shop__filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-height: 240px;
	overflow-y: auto;
}

.dm-shop__filter-list label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 0;
	font-size: 14px;
	color: var(--dm-text);
	cursor: pointer;
}

.dm-shop__filter-list a {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	color: var(--dm-text);
	font-size: 14px;
	text-decoration: none !important;
}

.dm-shop__filter-list a:hover {
	color: var(--dm-accent);
}

.dm-shop__filter-count {
	color: var(--dm-muted);
	font-size: 12px;
}

.dm-shop__price {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dm-shop__price input {
	flex: 1;
	min-width: 0;
	padding: 8px 10px;
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius-sm);
	font-size: 14px;
	font-family: inherit;
	color: var(--dm-text);
	background: var(--dm-white);
}

.dm-shop__price input:focus {
	outline: none;
	border-color: var(--dm-accent);
}

.dm-shop__stock-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--dm-text);
	cursor: pointer;
}

.dm-shop__apply {
	width: 100%;
	padding: 12px 16px;
}

.dm-shop__reset {
	display: inline-block;
	text-align: center;
	font-size: 13px;
	color: var(--dm-muted);
	text-decoration: none !important;
	padding: 6px 0;
}

.dm-shop__reset:hover {
	color: var(--dm-accent);
}

.dm-shop__main {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dm-shop__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 16px;
	background: var(--dm-slate-50);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius-sm);
}

.dm-shop__showing {
	margin: 0;
	font-size: 13px;
	color: var(--dm-muted);
}

.dm-shop__sort {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.dm-shop__sort label {
	font-size: 13px;
	color: var(--dm-muted);
}

.dm-shop__sort select {
	padding: 6px 10px;
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius-sm);
	background: var(--dm-white);
	font-size: 14px;
	color: var(--dm-text);
	font-family: inherit;
	cursor: pointer;
}

.dm-shop__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.dm-shop__empty {
	text-align: center;
	padding: 80px 20px;
	background: var(--dm-slate-50);
	border: 1px dashed var(--dm-border);
	border-radius: var(--dm-radius);
	color: var(--dm-muted);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* ---------------------------------------------------------- Single Product (Dentalkart Style) */
.dm-product {
	background: #ffffff;
	padding-block: 20px 80px;
}

/* Breadcrumb */
.dm-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: #64748b;
	margin-bottom: 24px;
	line-height: 1.4;
}

.dm-breadcrumb a {
	color: #64748b;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.dm-breadcrumb a:hover {
	color: var(--dm-accent);
}

.dm-breadcrumb__sep {
	color: #94a3b8;
	margin-inline: 4px;
}

.dm-breadcrumb__current {
	color: #0f172a;
	font-weight: 600;
}

/* Main 2-Column Grid */
.dm-product__main-layout {
	display: grid;
	grid-template-columns: 460px 1fr;
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 48px;
}

/* Left: Gallery */
.dm-product__gallery-col {
	min-width: 0;
}

.dm-product__gallery-sticky {
	position: sticky;
	top: 90px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dm-product__gallery-card {
	position: relative;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dm-product__gallery-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 5;
	background: #f59e0b;
	color: #0f172a;
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: 0.04em;
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.dm-product__gallery-main {
	width: 100%;
	height: 100%;
	position: relative;
}

.dm-product__gallery-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.dm-product__gallery-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.dm-product__gallery-slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.dm-product__gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dm-product__gallery-thumb {
	width: 64px;
	height: 64px;
	padding: 4px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.2s ease;
}

.dm-product__gallery-thumb:hover {
	border-color: var(--dm-accent);
}

.dm-product__gallery-thumb.is-active {
	border-color: var(--dm-accent);
	box-shadow: 0 0 0 1.5px var(--dm-accent);
}

.dm-product__gallery-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Right: Info Column */
.dm-product__info-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.dm-product__brand-pill {
	display: inline-flex;
	align-self: flex-start;
}

.dm-product__brand-pill a {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background: rgba(13, 148, 136, 0.08);
	border: 1px solid rgba(13, 148, 136, 0.25);
	border-radius: 999px;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--dm-accent);
	text-decoration: none !important;
	transition: background 0.15s ease;
}

.dm-product__brand-pill a:hover {
	background: rgba(13, 148, 136, 0.16);
}

.dm-product__title {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	font-family: var(--dm-font-heading);
}

.dm-product__subtitle {
	font-size: 14px;
	line-height: 1.5;
	color: #64748b;
	margin: 0;
}

.dm-product__meta-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	padding-bottom: 2px;
}

.dm-product__rating-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	background: #fef3c7;
	border: 1px solid #fde68a;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #92400e;
}

.dm-product__rating-star {
	color: #f59e0b;
	font-size: 13px;
}

.dm-product__rating-count {
	color: #64748b;
	text-decoration: none !important;
	font-weight: 500;
	margin-left: 2px;
}

.dm-product__rating-count:hover {
	color: var(--dm-accent);
	text-decoration: underline !important;
}

.dm-product__sku-tag {
	color: #94a3b8;
	font-size: 12px;
	margin-left: auto;
}

/* Price & Wholesale Card */
.dm-product__price-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dm-product__price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px;
}

.dm-product__selling-price {
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 30px;
	color: #0f172a;
	line-height: 1;
}

.dm-product__selling-price .woocommerce-Price-amount {
	color: #0f172a;
}

.dm-product__mrp-wrap {
	font-family: var(--dm-font-heading);
	font-size: 14px;
	color: #94a3b8;
}

.dm-product__mrp-val {
	text-decoration: line-through;
	color: #94a3b8;
	margin-left: 4px;
}

.dm-product__discount-tag {
	display: inline-flex;
	padding: 3px 8px;
	background: #16a34a;
	color: #ffffff;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 12px;
	border-radius: 6px;
	line-height: 1;
}

.dm-product__tax-coins-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 12px;
	color: #64748b;
	padding-bottom: 2px;
}

.dm-product__coins-note {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #b45309;
	font-weight: 600;
}

/* Wholesale Bulk Order Box */
.dm-product__wholesale-box {
	margin-top: 6px;
	padding: 14px 16px;
	background: #ffffff;
	border: 1.5px solid #ccfbf1;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dm-product__wholesale-head {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dm-product__wholesale-title {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #0f766e;
	font-family: var(--dm-font-heading);
}

.dm-product__wholesale-sub {
	font-size: 11px;
	color: #64748b;
}

.dm-product__wholesale-tiers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.dm-product__tier-item {
	padding: 10px 12px;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	transition: all 0.2s ease;
}

.dm-product__tier-item:hover {
	border-color: var(--dm-accent);
	background: #f0fdfa;
	transform: translateY(-1px);
}

.dm-product__tier-item.is-selected {
	border-color: var(--dm-accent);
	background: #f0fdfa;
	box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.3);
}

.dm-product__tier-qty {
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 13px;
	color: #0f172a;
	display: block;
}

.dm-product__tier-price {
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 16px;
	color: var(--dm-accent);
	display: block;
}

.dm-product__tier-price small {
	font-size: 11px;
	font-weight: 500;
	color: #64748b;
}

.dm-product__tier-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}

.dm-product__tier-badge {
	display: inline-block;
	padding: 2px 6px;
	background: rgba(13, 148, 136, 0.12);
	color: #0f766e;
	font-weight: 700;
	font-size: 10px;
	border-radius: 4px;
}

.dm-product__tier-btn {
	padding: 4px 10px;
	background: var(--dm-accent);
	color: #ffffff;
	border: 0;
	border-radius: 4px;
	font-weight: 700;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.15s ease;
}

.dm-product__tier-btn:hover {
	background: var(--dm-accent-deep);
}

.dm-product__tier-btn.is-selected {
	background: #059669;
	color: #ffffff;
}

.dm-product__tier-applied-notice {
	margin-top: 8px;
	padding: 6px 12px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 6px;
	color: #166534;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

.dm-cart-wholesale-badge {
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 700;
	color: #0d9488;
	background: rgba(13, 148, 136, 0.12);
	border-radius: 12px;
}


/* Delivery & Assurances Strip */
.dm-product__assurances-card {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 14px 16px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-size: 12px;
}

.dm-product__assurance-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dm-product__assurance-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(13, 148, 136, 0.08);
	color: var(--dm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dm-product__assurance-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.dm-product__assurance-text strong {
	color: #0f172a;
	font-weight: 700;
}

.dm-product__assurance-text span {
	color: #64748b;
}

/* Variants */
.dm-product__variants-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dm-product__variant-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dm-product__variant-label {
	display: flex;
	gap: 6px;
	font-size: 13px;
}

.dm-product__variant-name {
	font-weight: 700;
	color: #0f172a;
}

.dm-product__variant-value {
	color: #64748b;
}

.dm-product__variant-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.dm-product__chip {
	padding: 6px 14px;
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	border-radius: 6px;
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 13px;
	color: #0f172a;
	cursor: pointer;
	transition: all 0.15s ease;
}

.dm-product__chip:hover {
	border-color: var(--dm-accent);
	color: var(--dm-accent);
}

.dm-product__chip.is-active {
	background: var(--dm-accent);
	border-color: var(--dm-accent);
	color: #ffffff;
}

/* Actions Row: Quantity & Add to Cart */
.dm-product__actions-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}

.dm-product__actions-row form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	flex-wrap: wrap;
	margin: 0;
}

.dm-product__actions-row .quantity {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid #cbd5e1;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	height: 48px;
}

.dm-product__actions-row .quantity .qty {
	width: 60px;
	height: 100%;
	padding: 0 8px;
	border: 0;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	text-align: center;
	font-size: 16px;
	color: #0f172a;
	background: #ffffff;
	-moz-appearance: textfield;
}

.dm-product__actions-row .quantity .qty::-webkit-outer-spin-button,
.dm-product__actions-row .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.dm-product__actions-row button.single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	height: 48px;
	padding: 0 24px;
	font-size: 15px;
	background-color: var(--dm-accent) !important;
	color: #ffffff !important;
	border: 0;
	border-radius: 8px;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.dm-product__actions-row button.single_add_to_cart_button:hover {
	background-color: var(--dm-accent-deep) !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.dm-product__choose-btn {
	width: 100%;
	justify-content: center;
}

/* Pincode Check Card */
.dm-product__pincode-card {
	padding: 14px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dm-product__pincode-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

.dm-product__pincode-title-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #0f172a;
}

.dm-product__pincode-title-wrap svg {
	color: var(--dm-accent);
}

.dm-product__pincode-current {
	font-family: var(--dm-font-heading);
	color: #0f172a;
}

.dm-product__pincode-change-btn {
	background: transparent;
	border: 0;
	color: var(--dm-accent);
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	padding: 0;
}

.dm-product__pincode-change-btn:hover {
	text-decoration: underline;
}

.dm-product__pincode-form {
	display: flex;
	gap: 8px;
}

.dm-product__pincode-form input {
	flex: 1;
	min-width: 0;
	padding: 8px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	background: #ffffff;
	color: #0f172a;
}

.dm-product__pincode-form input:focus {
	outline: none;
	border-color: var(--dm-accent);
}

.dm-product__pincode-submit-btn {
	padding: 8px 16px;
	background: #0f172a;
	color: #ffffff;
	border: 0;
	border-radius: 6px;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.dm-product__pincode-submit-btn:hover {
	background: var(--dm-accent);
}

.dm-product__pincode-result {
	margin: 0;
	font-size: 12px;
	color: #64748b;
}

/* Bulk CTA Card */
.dm-product__bulk-cta-card {
	padding: 14px 18px;
	background: #0f172a;
	border-radius: 10px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.dm-product__bulk-cta-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dm-product__bulk-cta-info strong {
	color: #ffffff;
	font-size: 14px;
}

.dm-product__bulk-cta-info span {
	color: #94a3b8;
	font-size: 12px;
}

.dm-product__bulk-cta-card button {
	padding: 10px 18px;
	background: var(--dm-accent);
	color: #ffffff;
	border: 0;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.15s ease;
}

.dm-product__bulk-cta-card button:hover {
	background: var(--dm-accent-strong);
}

/* Brand Showcase Banner */
.dm-product__brand-banner {
	margin-bottom: 40px;
	padding: 18px 24px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dm-product__brand-banner-media {
	width: 90px;
	height: 52px;
	padding: 6px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dm-product__brand-banner-media img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.dm-product__brand-banner-meta {
	flex: 1;
	min-width: 200px;
}

.dm-product__brand-banner-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 2px;
	color: #0f172a;
}

.dm-product__brand-banner-desc {
	font-size: 13px;
	color: #64748b;
	margin: 0;
}

.dm-product__brand-banner-btn {
	padding: 10px 18px;
	font-size: 13px;
}

/* Tabs Section */
.dm-product__tabs-section {
	margin-bottom: 56px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 28px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dm-product__tab-nav-wrap {
	border-bottom: 1.5px solid #e2e8f0;
	margin-bottom: 24px;
}

.dm-product__tab-nav {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.dm-product__tab-btn {
	padding: 12px 18px;
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: #64748b;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
	margin-bottom: -1.5px;
}

.dm-product__tab-btn:hover {
	color: var(--dm-accent);
}

.dm-product__tab-btn.is-active {
	color: var(--dm-accent);
	border-bottom-color: var(--dm-accent);
	font-weight: 700;
}

.dm-product__tab-panes {
	display: block;
}

.dm-product__tab-pane {
	display: none;
	animation: dm-fade-in 0.2s ease;
}

.dm-product__tab-pane.is-active {
	display: block;
}

.dm-tab-heading {
	font-size: 18px;
	margin: 0 0 14px;
	color: #0f172a;
}

.dm-tab-content-card {
	padding: 4px 0;
}

.dm-product__features-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dm-product__features-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.6;
	color: #334155;
}

.dm-check-icon {
	color: #10b981;
	flex-shrink: 0;
	margin-top: 3px;
}

.dm-product__specs-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}

.dm-product__specs-table th,
.dm-product__specs-table td {
	padding: 12px 16px;
	font-size: 14px;
	border-bottom: 1px solid #e2e8f0;
	text-align: left;
}

.dm-product__specs-table th {
	width: 220px;
	font-weight: 700;
	color: #0f172a;
	background: #f8fafc;
	font-family: var(--dm-font-heading);
}

.dm-product__specs-table td {
	color: #334155;
	background: #ffffff;
}

.dm-product__specs-table tr:nth-child(even) td {
	background: #f8fafc;
}

.dm-formatted-content h3 {
	color: #0f172a;
	font-size: 18px;
	margin: 1.2em 0 0.5em;
}

.dm-formatted-content p {
	font-size: 15px;
	line-height: 1.7;
	color: #334155;
}

.dm-formatted-content ul,
.dm-formatted-content ol {
	padding-left: 1.4em;
	color: #334155;
	font-size: 15px;
	line-height: 1.7;
}

.dm-numbered-list {
	padding-left: 1.4em;
	color: #334155;
	font-size: 15px;
	line-height: 1.8;
}

.dm-bullet-list {
	list-style: disc;
	padding-left: 1.4em;
	color: #334155;
	font-size: 15px;
	line-height: 1.8;
}

/* Benefits Section */
.dm-product__benefits-section {
	margin-bottom: 56px;
	padding: 32px 24px;
	background: #f8fafc;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
}

.dm-product__benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.dm-product__benefit-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 20px 16px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: transform 0.2s ease;
}

.dm-product__benefit-card:hover {
	transform: translateY(-2px);
}

.dm-product__benefit-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(13, 148, 136, 0.1);
	color: var(--dm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.dm-product__benefit-name {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	font-family: var(--dm-font-heading);
}

.dm-product__benefit-sub {
	font-size: 12px;
	color: #64748b;
	margin: 0;
}

/* Questions & Answers Section */
.dm-product__qa-section {
	margin-bottom: 56px;
	padding: 28px 32px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dm-product__section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
	flex-wrap: wrap;
}

.dm-product__section-title {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.dm-product__section-subtitle {
	font-size: 13px;
	color: #64748b;
	margin: 4px 0 0;
}

.dm-product__qa-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dm-product__qa-card {
	padding: 18px 20px;
	background: #f8fafc;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dm-product__qa-q {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.dm-qa-tag {
	font-weight: 800;
	color: var(--dm-accent);
	font-size: 16px;
}

.dm-qa-question {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.dm-product__qa-a {
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dm-qa-badge-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dm-expert-badge {
	display: inline-flex;
	padding: 3px 8px;
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
	font-weight: 700;
	font-size: 11px;
	border-radius: 4px;
}

.dm-qa-date {
	font-size: 12px;
	color: #94a3b8;
}

.dm-qa-answer-text {
	font-size: 14px;
	line-height: 1.6;
	color: #334155;
	margin: 0;
}

/* Payments Section */
.dm-product__payments-section {
	margin-bottom: 56px;
	padding: 28px 32px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dm-product__payments-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
	margin-top: 24px;
}

.dm-pay-card {
	padding: 16px 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	transition: transform 0.15s ease;
}

.dm-pay-card:hover {
	transform: translateY(-2px);
}

.dm-pay-circle {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ffffff;
	border: 1.5px solid var(--dm-accent);
	color: var(--dm-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.dm-pay-card strong {
	font-size: 13px;
	color: #0f172a;
}

.dm-pay-card small {
	font-size: 11px;
	color: #64748b;
}

/* Reviews Section */
.dm-product__reviews-section {
	margin-bottom: 56px;
	padding: 28px 32px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dm-product__reviews-summary-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
	padding: 20px 24px;
	background: #f8fafc;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	margin-bottom: 24px;
	align-items: center;
}

.dm-product__score-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.dm-product__score-num {
	font-size: 44px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1;
	font-family: var(--dm-font-heading);
}

.dm-product__stars-row {
	display: flex;
	gap: 2px;
}

.dm-star-filled {
	color: #f59e0b;
	font-size: 18px;
}

.dm-product__total-reviews {
	font-size: 12px;
	color: #64748b;
}

.dm-product__bars-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dm-rating-bar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #64748b;
}

.dm-rating-bar-row span:first-child {
	width: 28px;
	font-weight: 600;
}

.dm-rating-progress {
	flex: 1;
	height: 8px;
	background: #e2e8f0;
	border-radius: 999px;
	overflow: hidden;
}

.dm-rating-fill {
	height: 100%;
	background: #f59e0b;
	border-radius: 999px;
}

.dm-bar-pct {
	width: 36px;
	font-size: 12px;
	text-align: right;
}

.dm-product__reviews-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.dm-review-card {
	padding: 18px 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dm-review-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dm-review-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--dm-accent);
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dm-review-author-meta {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.dm-review-author {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.dm-review-verified {
	font-size: 11px;
	color: #16a34a;
	font-weight: 600;
}

.dm-review-date {
	margin-left: auto;
	font-size: 12px;
	color: #94a3b8;
}

.dm-review-stars {
	color: #f59e0b;
	font-size: 14px;
	letter-spacing: 2px;
}

.dm-review-body {
	font-size: 13px;
	line-height: 1.6;
	color: #334155;
	margin: 0;
}

/* Recommended Products */
.dm-product__recommended-section {
	margin-bottom: 56px;
}

.dm-product__rec-nav {
	display: flex;
	gap: 8px;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 24px;
}

.dm-product__rec-tab {
	padding: 10px 18px;
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	font-family: var(--dm-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: #64748b;
	cursor: pointer;
	margin-bottom: -2px;
	transition: all 0.2s ease;
}

.dm-product__rec-tab:hover {
	color: var(--dm-accent);
}

.dm-product__rec-tab.is-active {
	color: var(--dm-accent);
	border-bottom-color: var(--dm-accent);
	font-weight: 700;
}

.dm-product__rec-panel {
	display: none;
}

.dm-product__rec-panel.is-active {
	display: block;
}

.dm-product__rec-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* Suggest Product Banner */
.dm-product__suggest-banner {
	padding: 36px 32px;
	background: #0f172a;
	border-radius: 16px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.dm-product__suggest-text-wrap {
	flex: 1;
	min-width: 260px;
}

.dm-product__suggest-title {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 6px;
}

.dm-product__suggest-sub {
	font-size: 14px;
	color: #94a3b8;
	margin: 0;
	max-width: 600px;
}

/* ---------------------------------------------------------- Promos */
.dm-promos__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.dm-promo {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 300px;
	border-radius: var(--dm-radius-lg);
	overflow: hidden;
	text-decoration: none !important;
	color: var(--dm-white);
	box-shadow: var(--dm-shadow-sm);
}

.dm-promo__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.dm-promo:hover .dm-promo__img {
	transform: scale(1.05);
}

.dm-promo__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 20%, rgba(15, 23, 42, 0.88) 100%);
}

.dm-promo--clearance {
	background: linear-gradient(135deg, #7c2d12, #b45309);
}

.dm-promo--arrivals {
	background: linear-gradient(135deg, #0f766e, #0d9488);
}

.dm-promo__content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 28px;
}

.dm-promo__tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--dm-amber);
	color: var(--dm-ink);
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.dm-promo--arrivals .dm-promo__tag {
	background: var(--dm-accent-strong);
	color: var(--dm-white);
}

.dm-promo__title {
	font-family: var(--dm-font-heading);
	font-weight: 800;
	font-size: 28px;
	line-height: 1.1;
}

.dm-promo__text {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	margin: 0;
	max-width: 420px;
}

.dm-promo__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	font-family: var(--dm-font-heading);
	font-weight: 700;
	font-size: 15px;
	color: var(--dm-white);
	border-bottom: 2px solid var(--dm-accent-strong);
	padding-bottom: 2px;
	align-self: flex-start;
}

.dm-promo__cta svg {
	transition: transform 0.2s ease;
}

.dm-promo:hover .dm-promo__cta svg {
	transform: translateX(4px);
}

/* ---------------------------------------------------------- Content features */
.dm-content {
	background: var(--dm-slate-50);
}

.dm-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 960px;
	margin-inline: auto;
}

.dm-feature {
	padding: 28px;
	border-radius: var(--dm-radius);
	border: 1px solid var(--dm-border);
	background: var(--dm-white);
}

.dm-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(13, 148, 136, 0.12);
	color: var(--dm-accent);
	margin-bottom: 16px;
}

.dm-feature__title {
	font-size: 17px;
	margin-bottom: 8px;
}

.dm-feature__text {
	color: var(--dm-muted);
	font-size: 14px;
	margin: 0;
}

/* ---------------------------------------------------------- CTA band */
.dm-cta {
	background: var(--dm-ink);
	color: var(--dm-white);
	overflow: hidden;
	position: relative;
}

.dm-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(700px 300px at 15% 120%, rgba(13, 148, 136, 0.22), transparent 60%);
	pointer-events: none;
}

.dm-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-block: 64px;
}

.dm-cta__title {
	color: var(--dm-white);
	font-size: 30px;
	margin-bottom: 10px;
}

.dm-cta__text {
	color: var(--dm-slate-400);
	margin: 0;
	max-width: 560px;
}

.dm-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	flex: none;
}

/* ---------------------------------------------------------- Footer */
.site-footer {
	background: var(--dm-ink);
	color: var(--dm-slate-400);
	font-size: 14px;
}

.dm-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	padding-block: 64px 48px;
}

.dm-footer-col--brand .dm-logo-text {
	font-size: 24px;
	color: var(--dm-white);
}

.dm-footer-about {
	margin: 18px 0 20px;
	max-width: 320px;
	color: var(--dm-slate-400);
	line-height: 1.7;
}

.dm-footer-social {
	display: flex;
	gap: 10px;
	list-style: none;
}

.dm-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--dm-navy-800);
	color: var(--dm-slate-300);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.dm-footer-social a:hover {
	background: var(--dm-accent);
	color: var(--dm-white);
}

.dm-footer-title {
	color: var(--dm-white);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
}

.dm-footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dm-footer-links a {
	color: var(--dm-slate-400);
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.dm-footer-links a:hover {
	color: var(--dm-white);
}

.dm-footer-contact {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dm-footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dm-footer-contact svg {
	color: var(--dm-accent);
	flex: none;
}

.dm-footer-contact a {
	color: var(--dm-slate-400);
	text-decoration: none !important;
}

.dm-footer-contact a:hover {
	color: var(--dm-white);
}

.dm-footer-hours {
	color: var(--dm-slate-500);
	font-size: 13px;
	margin: 16px 0 0;
}

.dm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dm-footer-copy {
	margin: 0;
	font-size: 13px;
	color: var(--dm-slate-500);
}

.dm-footer-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.dm-pay-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--dm-slate-300);
	font-size: 12px;
	font-family: var(--dm-font-heading);
	font-weight: 600;
}

/* ---------------------------------------------------------- Generic page */
.dm-page {
	padding-block: 48px 80px;
}

.dm-page__title {
	font-size: 34px;
}

.dm-page__content {
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	padding: 40px;
}

.dm-archive {
	padding-block: 48px 80px;
}

.dm-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 28px;
}

.dm-entry {
	background: var(--dm-white);
	border: 1px solid var(--dm-border);
	border-radius: var(--dm-radius);
	padding: 24px;
}

/* ---------------------------------------------------------- Responsive */
@media (max-width: 1100px) {
	.dm-category-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.dm-top-brands__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.dm-brand-archive__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.dm-brand-single__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.dm-brand-single__head {
		grid-template-columns: 200px 1fr;
	}

	.dm-product__main-layout {
		grid-template-columns: 380px 1fr;
		gap: 28px;
	}

	.dm-product__gallery-sticky {
		position: static;
	}

	.dm-product__benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.dm-product__payments-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.dm-product__rec-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.dm-shop__layout {
		grid-template-columns: 240px 1fr;
		gap: 24px;
	}

	.dm-shop__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.dm-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	/* Masthead: hamburger + logo + actions in top row, search strictly in bottom row without overflow */
	.dm-masthead {
		padding: 6px 0 !important;
		overflow: hidden !important;
	}

	.dm-masthead__inner {
		display: grid !important;
		grid-template-columns: 44px 1fr 44px !important;
		grid-template-areas: 'toggle logo actions' 'search search search' !important;
		gap: 8px 10px !important;
		padding-block: 6px !important;
		align-items: center !important;
		width: 100% !important;
		box-sizing: border-box !important;
		max-width: 100% !important;
	}

	.dm-logo-img,
	.custom-logo,
	.custom-logo-link img {
		height: 48px !important;
		max-height: 48px !important;
		max-width: 180px !important;
	}

	.dm-masthead__inner > .dm-mobile-toggle {
		grid-area: toggle !important;
		display: inline-flex !important;
		justify-self: start !important;
		width: 40px !important;
		height: 40px !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.dm-masthead__brand {
		grid-area: logo !important;
		justify-self: center !important;
		text-align: center !important;
		margin: 0 !important;
	}

	.dm-masthead__pincode {
		display: none !important;
	}

	.dm-masthead__search {
		grid-area: search !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
	}

	.dm-search {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
		height: 42px !important;
		padding: 2px 4px 2px 10px !important;
		border-radius: 10px !important;
		overflow: hidden !important;
	}

	.dm-search__icon-wrap {
		display: none !important;
	}

	.dm-search__input {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		width: 100% !important;
		font-size: 13px !important;
		padding: 6px 4px !important;
	}

	.dm-search__submit {
		width: 34px !important;
		height: 34px !important;
		border-radius: 6px !important;
		flex-shrink: 0 !important;
	}

	.dm-masthead__actions {
		grid-area: actions !important;
		justify-self: end !important;
	}

	.dm-action--account {
		display: none !important;
	}

	.dm-action--cart {
		padding: 6px 8px !important;
		border-radius: 8px !important;
	}

	.dm-action--cart .dm-action__label {
		display: none !important;
	}

	.dm-nav {
		display: none !important;
	}

	.dm-hero__inner {
		grid-template-columns: 1fr;
		padding-block: 56px 64px;
		gap: 40px;
	}

	.dm-hero__media {
		order: -1;
	}

	.dm-hero__img {
		max-width: 340px;
	}

	.dm-hero__title {
		font-size: 38px;
	}

	.dm-hero__float--trust {
		left: auto;
		right: 4%;
		bottom: 18px;
	}

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

	.dm-featured-cats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dm-promos__grid {
		grid-template-columns: 1fr;
	}

	.dm-feature-grid {
		grid-template-columns: 1fr;
		max-width: 560px;
	}

	.dm-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding-block: 52px;
	}
}

@media (max-width: 700px) {
	.dm-container {
		padding-inline: 16px;
	}

	.dm-category-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.dm-featured-cats__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.dm-featured-cat__name {
		font-size: 18px;
	}

	.dm-featured-cat__content {
		padding: 18px;
	}

	.dm-top-brands__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.dm-top-brand__media {
		padding: 12px;
	}

	.dm-brand-archive__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.dm-brand-archive__title {
		font-size: 28px;
	}

	.dm-brand-alpha {
		padding: 10px;
		gap: 4px;
	}

	.dm-brand-alpha__btn {
		min-width: 30px;
		height: 30px;
		font-size: 12px;
	}

	.dm-brand-single__head {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
		text-align: center;
	}

	.dm-brand-single__media {
		max-width: 200px;
		margin-inline: auto;
	}

	.dm-brand-single__title {
		font-size: 26px;
	}

	.dm-brand-single__stats {
		gap: 20px;
		justify-content: center;
	}

	.dm-brand-single__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.dm-shop__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.dm-shop__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.dm-shop__sidebar {
		position: static;
	}

	.dm-shop__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.dm-product__main-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.dm-product__title {
		font-size: 20px;
	}

	.dm-product__selling-price {
		font-size: 24px;
	}

	.dm-product__wholesale-tiers {
		grid-template-columns: 1fr;
	}

	.dm-product__assurances-card {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.dm-product__brand-banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.dm-product__tabs-section {
		padding: 18px 16px;
	}

	.dm-product__tab-btn {
		padding: 10px 14px;
		font-size: 13px;
	}

	.dm-product__benefits-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dm-product__payments-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.dm-product__reviews-summary-card {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dm-product__reviews-grid {
		grid-template-columns: 1fr;
	}

	.dm-product__rec-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.dm-product__suggest-banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 24px 20px;
	}

	.dm-product-track {
		margin-inline: -16px;
		padding-inline: 16px;
	}

	.dm-product-card {
		flex-basis: 72vw;
		max-width: 280px;
	}

	.dm-section {
		padding-block: 52px;
	}

	.dm-section__head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 24px;
	}

	.dm-section__title {
		font-size: 27px;
	}

	.dm-footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-block: 48px 36px;
	}

	.dm-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.dm-topbar__links {
		display: none;
	}

	.dm-topbar__inner {
		justify-content: center;
		text-align: center;
	}

	.dm-hero__ctas .dm-btn {
		width: 100%;
	}

	.dm-hero__mini-stats {
		gap: 24px;
	}

	.dm-trust__grid {
		gap: 20px;
	}

	.dm-archive__grid {
		grid-template-columns: 1fr;
	}

	.dm-page__content {
		padding: 24px;
	}
}

/* ==========================================================================
   DENTALKART HOMEPAGE DESIGN SYSTEM & SLIDERS MATCH
   ========================================================================== */

:root {
	--dm-dk-blue: #1D70CA;
	--dm-dk-blue-dark: #155799;
	--dm-dk-navy: #205375;
	--dm-dk-dark: #1D2B36;
	--dm-dk-orange: #FF6D00;
	--dm-dk-amber: #F58220;
	--dm-dk-teal: #0D9488;
	--dm-dk-light-blue: #E1F2FC;
	--dm-dk-bg-soft: #F4F7FA;
	--dm-dk-border: #E2E8F0;
	--dm-dk-border-subtle: #EDF2F7;
	--dm-dk-radius: 12px;
	--dm-dk-radius-lg: 16px;
}

/* ------------------------------------------------ Header Match */
.dm-masthead {
	background: #ffffff;
	border-bottom: 1px solid var(--dm-dk-border);
	padding: 10px 0;
}

.dm-masthead__brand {
	display: flex;
	align-items: center;
	gap: 20px;
}

.dm-masthead__pincode {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(29, 112, 202, 0.08);
	border: 1px solid rgba(29, 112, 202, 0.2);
	padding: 6px 12px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.dm-masthead__pincode:hover {
	background: var(--dm-dk-light-blue);
	border-color: var(--dm-dk-blue);
}

.dm-masthead__pincode svg {
	color: var(--dm-dk-blue);
}

.dm-masthead__pincode-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.dm-masthead__pincode-label {
	font-size: 11px;
	font-weight: 500;
	color: #64748B;
}

.dm-masthead__pincode-btn {
	background: none;
	border: none;
	padding: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--dm-dk-blue);
	text-decoration: underline;
	cursor: pointer;
	text-align: left;
}

/* Search bar match */
.dm-search {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1.5px solid var(--dm-dk-blue, #1D70CA);
	border-radius: 12px;
	padding: 3px 4px 3px 14px;
	width: 100%;
	height: 46px;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(29, 112, 202, 0.08);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dm-search:focus-within {
	border-color: var(--dm-dk-blue-dark, #1559a6);
	box-shadow: 0 0 0 3.5px rgba(29, 112, 202, 0.18);
}

.dm-search__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dm-dk-blue, #1D70CA);
	margin-right: 10px;
	flex-shrink: 0;
}

.dm-search__icon-wrap svg {
	width: 19px;
	height: 19px;
	stroke: var(--dm-dk-blue, #1D70CA) !important;
	color: var(--dm-dk-blue, #1D70CA) !important;
}

.dm-search__input {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 500;
	color: var(--dm-dk-dark, #1e293b);
	background: transparent;
	padding: 0 6px;
	box-shadow: none;
}

.dm-search__input::placeholder {
	color: #94a3b8;
	font-size: 14px;
	font-weight: 400;
}

.dm-search__submit {
	background: var(--dm-dk-blue, #1D70CA) !important;
	border: none !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	width: 38px !important;
	height: 38px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	flex-shrink: 0 !important;
	transition: background-color 0.2s ease, transform 0.1s ease !important;
}

.dm-search__submit svg {
	stroke: #ffffff !important;
	color: #ffffff !important;
	fill: none !important;
	width: 18px !important;
	height: 18px !important;
}

.dm-search__submit:hover {
	background: var(--dm-dk-blue-dark, #1559a6) !important;
}

.dm-search__submit:active {
	transform: scale(0.96);
}

/* Advanced Woo Search Integration */
.aws-container {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.aws-container .aws-search-form {
	height: 46px !important;
	background: #ffffff !important;
	border: 1.5px solid var(--dm-dk-blue, #1D70CA) !important;
	border-radius: 12px !important;
	box-shadow: 0 2px 8px rgba(29, 112, 202, 0.08) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
	padding: 3px 4px 3px 12px !important;
}

.aws-container .aws-search-form:focus-within {
	border-color: var(--dm-dk-blue-dark, #1559a6) !important;
	box-shadow: 0 0 0 3.5px rgba(29, 112, 202, 0.18) !important;
}

.aws-container .aws-wrapper {
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
}

.aws-container .aws-search-field {
	height: 100% !important;
	border: none !important;
	outline: none !important;
	padding: 0 8px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: var(--dm-dk-dark, #1e293b) !important;
	background: transparent !important;
	box-shadow: none !important;
	flex: 1 1 auto !important;
}

.aws-container .aws-search-field::placeholder {
	color: #94a3b8 !important;
	font-size: 14px !important;
	font-weight: 400 !important;
}

.aws-container .aws-search-btn_wrap {
	height: 100% !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center !important;
}

.aws-container .aws-search-btn {
	background: var(--dm-dk-blue, #1D70CA) !important;
	border: none !important;
	border-radius: 8px !important;
	width: 38px !important;
	height: 38px !important;
	color: #ffffff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: background-color 0.2s ease !important;
}

.aws-container .aws-search-btn:hover {
	background: var(--dm-dk-blue-dark, #1559a6) !important;
}

.aws-container .aws-search-btn_icon,
.aws-container .aws-search-btn_icon svg,
.aws-container .aws-search-btn svg {
	fill: #ffffff !important;
	stroke: #ffffff !important;
	color: #ffffff !important;
	width: 18px !important;
	height: 18px !important;
}

.aws-container .aws-search-clear {
	color: #94a3b8 !important;
	cursor: pointer !important;
	margin-right: 6px !important;
}

.aws-search-result {
	border-radius: 12px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
	border: 1px solid #e2e8f0 !important;
	overflow: hidden !important;
	margin-top: 8px !important;
	z-index: 9999 !important;
}

/* Header action buttons */
.dm-action--account {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	background: #ffffff;
	color: var(--dm-dk-dark);
	transition: all 0.2s ease;
}

.dm-action--account:hover {
	border-color: var(--dm-dk-navy);
	transform: translateY(-1px);
	text-decoration: none;
}

.dm-action--cart {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px;
	border-radius: 12px;
	color: #ffffff;
	transition: all 0.2s ease;
}

.dm-action--cart:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.dm-action--cart .dm-cart-count {
	background: var(--dm-dk-orange);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 99px;
}

/* Primary category navigation strip */
.dm-nav {
	background: #ffffff;
	border-bottom: 1px solid var(--dm-dk-border);
	padding: 4px 0;
	position: relative;
	z-index: 100;
	overflow: visible !important;
}

.dm-nav .dm-container {
	position: relative;
	overflow: visible !important;
}

.dm-nav__menu {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	overflow: visible !important;
}

.dm-nav__menu .menu-item {
	position: relative;
}

.dm-nav__menu .menu-item a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	border-radius: 8px;
	transition: all 0.2s;
	text-decoration: none;
}

.dm-nav__menu .menu-item a:hover {
	color: var(--dm-dk-blue);
	background: var(--dm-dk-light-blue);
}

.dm-nav__menu .menu-item--featured > a {
	background: rgba(29, 112, 202, 0.1);
	color: var(--dm-dk-blue);
	font-weight: 700;
}

.dm-nav__menu .menu-item--deal > a {
	color: var(--dm-dk-orange);
	font-weight: 700;
}

.dm-nav__icon {
	display: inline-flex;
	align-items: center;
}

/* Mega Menu Dropdown */
.dm-mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	width: 480px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.18);
	padding: 16px;
	margin-top: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
}

.dm-nav__menu li:hover > .dm-mega-menu,
.dm-nav__menu li:focus-within > .dm-mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.dm-mega-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 1px solid #f1f5f9;
}

.dm-mega-menu__header strong {
	font-size: 13px;
	color: #0f172a;
	font-weight: 800;
}

.dm-mega-menu__header a {
	font-size: 12px;
	font-weight: 700;
	color: var(--dm-dk-blue, #1D70CA) !important;
	background: none !important;
	padding: 0 !important;
}

.dm-mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.dm-mega-menu__item {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	padding: 8px 10px !important;
	border-radius: 8px !important;
	background: #f8fafc !important;
	border: 1px solid #f1f5f9 !important;
	transition: all 0.15s ease !important;
	text-decoration: none !important;
}

.dm-mega-menu__item:hover {
	background: #f0f9ff !important;
	border-color: #bae6fd !important;
	transform: translateX(2px);
}

.dm-mega-menu__item-name {
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
}

.dm-mega-menu__item-count {
	font-size: 11px;
	color: #64748b;
	font-weight: 500;
	margin-top: 1px;
}


/* ------------------------------------------------ Hero Banner Slider (Full Width, Animated Text, Dotted Pagination) */
.dm-hero-slider-section {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #0B132B;
	margin: 0 0 24px;
	padding: 0;
	touch-action: pan-y pinch-zoom;
}

.dm-hero-slider-container {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 480px;
	background: #0B132B;
	touch-action: pan-y pinch-zoom;
	user-select: none;
	-webkit-user-select: none;
}

.dm-hero-slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.dm-hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: flex;
	align-items: center;
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
	overflow: hidden;
	z-index: 1;
}

.dm-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

/* Full Bleed Edge-to-Edge Background Image */
.dm-hero-slide__full-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	transform: scale(1);
	transition: transform 7s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform;
}

.dm-hero-slide.is-active .dm-hero-slide__full-bg {
	transform: scale(1.08);
}

/* Deep Vignette & High-Contrast Gradient Overlay */
.dm-hero-slide__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(90deg, rgba(11, 19, 43, 0.94) 0%, rgba(11, 19, 43, 0.78) 45%, rgba(11, 19, 43, 0.25) 100%);
	pointer-events: none;
}

.dm-hero-slide__container {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.dm-hero-slide__content {
	max-width: 660px;
	padding: 32px 0;
}

/* Slide Tag / Eyebrow */
.dm-hero-slide__tag-wrap {
	margin-bottom: 18px;
}

.dm-hero-slide__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 7px 16px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.dm-hero-slide__tag svg {
	color: #38BDF8;
	filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.6));
}

/* Slide Heading */
.dm-hero-slide__title {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 24px;
	letter-spacing: -0.025em;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

/* Slide CTA Action */
.dm-hero-slide__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.dm-hero-slide__cta {
	background: linear-gradient(135deg, var(--dm-dk-blue, #1D70CA) 0%, #0284C7 100%) !important;
	color: #ffffff !important;
	font-weight: 800 !important;
	font-size: 15px !important;
	padding: 14px 30px !important;
	border-radius: 12px !important;
	box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	text-decoration: none !important;
	border: none !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	position: relative;
	overflow: hidden;
}

.dm-hero-slide__cta::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transform: skewX(-20deg);
	transition: left 0.6s ease;
}

.dm-hero-slide__cta:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(2, 132, 199, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
	color: #ffffff !important;
}

.dm-hero-slide__cta:hover::after {
	left: 140%;
}

.dm-hero-slide__cta:hover svg {
	transform: translateX(4px);
}

.dm-hero-slide__cta svg {
	transition: transform 0.25s ease;
}

/* Keyframe Animations for Active Slide Text */
@keyframes dmHeroTagFadeIn {
	0% {
		opacity: 0;
		transform: translateY(-16px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dmHeroTitleFadeIn {
	0% {
		opacity: 0;
		transform: translateY(28px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes dmHeroCtaFadeIn {
	0% {
		opacity: 0;
		transform: translateY(24px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.dm-hero-slide.is-active .dm-hero-slide__tag {
	animation: dmHeroTagFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.dm-hero-slide.is-active .dm-hero-slide__title {
	animation: dmHeroTitleFadeIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.dm-hero-slide.is-active .dm-hero-slide__actions {
	animation: dmHeroCtaFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

/* Sleek Dotted Pagination Stage (Inside bottom of Slider) */
.dm-hero-slider-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 8px 16px;
	border-radius: 99px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.dm-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	padding: 0;
}

.dm-hero-dot:hover {
	background: rgba(255, 255, 255, 0.75);
}

.dm-hero-dot.is-active {
	width: 32px;
	background: #ffffff;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
	.dm-hero-slider-container {
		height: 400px;
	}

	.dm-hero-slide__title {
		font-size: 28px;
		margin-bottom: 18px;
	}
}

@media (max-width: 640px) {
	.dm-hero-slider-container {
		height: 280px;
		border-radius: 14px;
	}

	.dm-hero-slide {
		padding: 24px 20px;
	}

	.dm-hero-slide__title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.dm-hero-slide__cta {
		padding: 10px 18px !important;
		font-size: 13px !important;
	}
}



/* ------------------------------------------------ Trust Strip */
.dm-trust-strip {
	padding: 16px 0;
	background: #ffffff;
	border-bottom: 1px solid var(--dm-dk-border);
}

.dm-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.dm-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 12px;
	border-radius: 12px;
	background: var(--dm-dk-bg-soft);
	border: 1px solid var(--dm-dk-border-subtle);
}

.dm-trust-item__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dm-trust-item__icon--blue {
	background: rgba(29, 112, 202, 0.12);
	color: var(--dm-dk-blue);
}

.dm-trust-item__icon--teal {
	background: rgba(13, 148, 136, 0.12);
	color: var(--dm-dk-teal);
}

.dm-trust-item__icon--orange {
	background: rgba(255, 109, 0, 0.12);
	color: var(--dm-dk-orange);
}

.dm-trust-item__icon--navy {
	background: rgba(32, 83, 117, 0.12);
	color: var(--dm-dk-navy);
}

.dm-trust-item__text {
	display: flex;
	flex-direction: column;
}

.dm-trust-item__title {
	font-size: 13px;
	font-weight: 700;
	color: var(--dm-dk-dark);
}

.dm-trust-item__desc {
	font-size: 12px;
	color: #64748B;
}

/* ------------------------------------------------ Universal Sliders Header */
.dm-slider-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 16px;
}

.dm-slider-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dm-dk-blue);
	margin-bottom: 4px;
}

.dm-slider-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--dm-dk-dark);
	margin: 0;
	line-height: 1.2;
}

.dm-slider-subtitle {
	font-size: 14px;
	color: #64748B;
	margin: 4px 0 0;
}

.dm-slider-header__right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.dm-slider-more-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	color: var(--dm-dk-blue);
	text-decoration: none;
	transition: color 0.2s, transform 0.2s;
}

.dm-slider-more-link:hover {
	color: var(--dm-dk-blue-dark);
	transform: translateX(2px);
	text-decoration: underline;
}

.dm-slider-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.dm-slider-nav__btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--dm-dk-border);
	background: #ffffff;
	color: var(--dm-dk-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	transition: all 0.2s ease;
}

.dm-slider-nav__btn:hover:not(:disabled) {
	background: var(--dm-dk-blue);
	color: #ffffff;
	border-color: var(--dm-dk-blue);
	transform: scale(1.05);
}

.dm-slider-nav__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* Track container */
.dm-slider-wrapper {
	position: relative;
	width: 100%;
}

.dm-slider-track,
.dm-categories-track,
.dm-brands-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x pan-y pinch-zoom;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-x: contain;
	padding: 4px 2px 14px 2px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.dm-slider-track::-webkit-scrollbar,
.dm-categories-track::-webkit-scrollbar,
.dm-brands-track::-webkit-scrollbar {
	display: none;
}

.dm-slider-item {
	flex: 0 0 228px;
	flex-shrink: 0;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
}

/* ------------------------------------------------ Top Categories Circle Slider */
.dm-categories-slider-section {
	padding: 36px 0 24px;
	background: #ffffff;
}

.dm-category-circle-card {
	flex: 0 0 130px;
	flex-shrink: 0;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	padding: 8px 4px;
}

.dm-category-circle-card__media {
	width: 100px;
	height: 100px;
	background: #F1F5F9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 10px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dm-category-circle-card:hover .dm-category-circle-card__media {
	transform: scale(1.08);
}

.dm-category-circle-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dm-category-circle-card__icon-fallback {
	color: var(--dm-dk-blue);
}

.dm-category-circle-card__name {
	font-size: 13px;
	font-weight: 700;
	color: var(--dm-dk-dark);
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 2px;
	transition: color 0.2s;
}

.dm-category-circle-card:hover .dm-category-circle-card__name {
	color: var(--dm-dk-blue);
	text-decoration: none;
}

.dm-category-circle-card__count {
	font-size: 11px;
	color: #94A3B8;
	font-weight: 500;
}

/* ------------------------------------------------ Flash Deals Slider */
.dm-deals-slider-section {
	padding: 36px 0;
	background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 100%);
	border-top: 1px solid #FFEDD5;
	border-bottom: 1px solid #FFEDD5;
}

.dm-deals-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 16px;
	flex-wrap: wrap;
}

.dm-deals-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #FFEDD5;
	color: var(--dm-dk-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 4px 10px;
	border-radius: 99px;
	margin-bottom: 6px;
}

.dm-deals-title {
	font-size: 26px;
	font-weight: 800;
	color: #7C2D12;
	margin: 0;
}

.dm-deals-subtitle {
	font-size: 14px;
	color: #9A3412;
	margin: 2px 0 0;
}

/* Countdown widget */
.dm-countdown-widget {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	border: 1.5px solid #FDBA74;
	padding: 8px 16px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(234, 88, 12, 0.08);
}

.dm-countdown-label {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 700;
	color: #C2410C;
	text-transform: uppercase;
}

.dm-countdown-boxes {
	display: flex;
	align-items: center;
	gap: 4px;
}

.dm-countdown-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--dm-dk-orange);
	color: #ffffff;
	padding: 2px 6px;
	border-radius: 6px;
	min-width: 34px;
}

.dm-countdown-box strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.dm-countdown-box small {
	font-size: 9px;
	opacity: 0.85;
	text-transform: uppercase;
}

.dm-countdown-sep {
	font-weight: 800;
	color: var(--dm-dk-orange);
}

/* ------------------------------------------------ DentalKart Product Card */
.dm-product-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--dm-dk-border);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.dm-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
	border-color: #CBD5E1;
}

.dm-product-card--deal {
	border-color: #FED7AA;
}

.dm-product-card--deal:hover {
	border-color: var(--dm-dk-orange);
	box-shadow: 0 12px 28px rgba(255, 109, 0, 0.15);
}

.dm-product-card__top {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
}

.dm-product-card__badge {
	display: inline-block;
	padding: 3px 8px;
	font-size: 11px;
	font-weight: 800;
	border-radius: 6px;
	letter-spacing: 0.02em;
}

.dm-product-card__badge--discount {
	background: #15803D;
	color: #ffffff;
}

.dm-product-card__badge--new {
	background: var(--dm-dk-blue);
	color: #ffffff;
}

.dm-product-card__badge--sale {
	background: var(--dm-dk-orange);
	color: #ffffff;
}

.dm-product-card__media {
	display: block;
	background: #ffffff;
	padding: 14px 14px 6px;
	text-decoration: none;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.dm-product-card__img-wrap {
	width: 100%;
	height: 190px;
	max-height: 190px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #FAFBFD;
	border-radius: 10px;
	position: relative;
}

.dm-product-card__img,
.dm-product-card__img-wrap img,
.dm-product-card__media img,
.dm-product-card img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 190px !important;
	object-fit: contain !important;
	object-position: center !important;
	display: block !important;
	transition: transform 0.35s ease !important;
}

.dm-product-card:hover .dm-product-card__img,
.dm-product-card:hover .dm-product-card__img-wrap img,
.dm-product-card:hover .dm-product-card__media img {
	transform: scale(1.06) !important;
}

.dm-product-card__body {
	padding: 12px 14px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.dm-product-card__meta {
	margin-bottom: 4px;
}

.dm-product-card__brand {
	font-size: 11px;
	font-weight: 700;
	color: #64748B;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.dm-product-card__title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--dm-dk-dark);
	margin: 0 0 8px;
	min-height: 36px;
}

.dm-product-card__title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dm-product-card__title a:hover {
	color: var(--dm-dk-blue);
	text-decoration: underline;
}

/* Rating badge */
.dm-product-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.dm-rating-pill {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background: #15803D;
	color: #ffffff;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.dm-rating-pill__star {
	color: #FEF08A;
	font-size: 11px;
}

.dm-rating-count {
	font-size: 11px;
	color: #94A3B8;
}

/* Price layout */
.dm-product-card__price-row {
	margin-top: auto;
	margin-bottom: 12px;
}

.dm-product-card__price {
	font-size: 16px;
	font-weight: 800;
	color: var(--dm-dk-dark);
	line-height: 1.2;
}

.dm-product-card__price del {
	font-size: 12px;
	color: #94A3B8;
	font-weight: 500;
	margin-left: 6px;
}

.dm-product-card__price ins {
	text-decoration: none;
	color: var(--dm-dk-dark);
}

/* Action button */
.dm-product-card__btn {
	width: 100%;
	justify-content: center;
	padding: 8px 12px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	border-radius: 8px !important;
}

/* ------------------------------------------------ Featured Category Split Banners */
.dm-promo-banners-section {
	padding: 36px 0;
	background: #ffffff;
}

.dm-promo-banners-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.dm-promo-banner-card {
	position: relative;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dm-promo-banner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
	text-decoration: none;
}

.dm-banner--blue {
	background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
	border: 1px solid #7DD3FC;
	color: #0369A1;
}

.dm-banner--teal {
	background: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%);
	border: 1px solid #5EEAD4;
	color: #0F766E;
}

.dm-banner--navy {
	background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
	border: 1px solid #94A3B8;
	color: #1E293B;
}

.dm-banner--orange {
	background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
	border: 1px solid #FDBA74;
	color: #C2410C;
}

.dm-promo-banner-card__badge {
	display: inline-block;
	background: #ffffff;
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
	margin-bottom: 8px;
}

.dm-promo-banner-card__tag {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0.85;
	margin-bottom: 4px;
}

.dm-promo-banner-card__title {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 16px;
}

.dm-promo-banner-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ffffff;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: background 0.2s;
	width: fit-content;
}

.dm-promo-banner-card__media {
	position: absolute;
	right: 3px;
	bottom: 3px;
	max-width: 120px;
	max-height: 120px;
	opacity: 1;
	pointer-events: none;
}

.dm-promo-banner-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ------------------------------------------------ Top Brands Slider */
.dm-brands-slider-section {
	padding: 36px 0;
	background: #FAFBFD;
	border-top: 1px solid var(--dm-dk-border);
}

.dm-brand-card {
	flex: 0 0 160px;
	flex-shrink: 0;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
	background: #ffffff;
	border: 1px solid var(--dm-dk-border);
	border-radius: 12px;
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.dm-brand-card:hover {
	border-color: var(--dm-dk-blue);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(29, 112, 202, 0.12);
}

.dm-brand-card__media {
	width: 80px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.dm-brand-card__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.dm-brand-card__placeholder {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--dm-dk-light-blue);
	color: var(--dm-dk-blue);
	font-weight: 800;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dm-brand-card__name {
	font-size: 13px;
	font-weight: 700;
	color: var(--dm-dk-dark);
	margin-bottom: 2px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dm-brand-card__count {
	font-size: 11px;
	color: #94A3B8;
}

/* ------------------------------------------------ Category-Themed Slider Accents */
.dm-slider--teal .dm-slider-eyebrow {
	color: var(--dm-dk-teal);
}

.dm-slider--teal .dm-slider-nav__btn:hover:not(:disabled) {
	background: var(--dm-dk-teal);
	border-color: var(--dm-dk-teal);
}

.dm-slider--navy .dm-slider-eyebrow {
	color: var(--dm-dk-navy);
}

.dm-slider--navy .dm-slider-nav__btn:hover:not(:disabled) {
	background: var(--dm-dk-navy);
	border-color: var(--dm-dk-navy);
}

.dm-slider--orange .dm-slider-eyebrow {
	color: var(--dm-dk-orange);
}

.dm-slider--orange .dm-slider-nav__btn:hover:not(:disabled) {
	background: var(--dm-dk-orange);
	border-color: var(--dm-dk-orange);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (Mobile, Tablet & Phablet)
   ========================================================================== */

@media (max-width: 1199px) {
	.dm-trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.dm-promo-banners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 992px) {
	.dm-hero-slider-container {
		height: 380px;
	}

	.dm-hero-slide__title {
		font-size: 26px;
		margin-bottom: 16px;
	}

	.dm-slider-header {
		flex-wrap: wrap;
		gap: 12px;
	}
}

@media (max-width: 768px) {
	/* General Container Spacing */
	.dm-container {
		padding-inline: 14px;
	}

	/* Hero Multi-Banner Slider on Mobile */
	.dm-hero-slider-section {
		margin: 0 0 14px;
	}

	.dm-hero-slider-container {
		height: 340px;
		border-radius: 0;
	}

	.dm-hero-slide {
		padding: 0;
		display: flex;
		align-items: center;
	}

	.dm-hero-slide__container {
		padding: 0 16px;
		width: 100%;
	}

	.dm-hero-slide__content {
		max-width: 100%;
		padding: 16px 0;
		text-align: left;
	}

	.dm-hero-slide__tag-wrap {
		margin-bottom: 10px;
	}

	.dm-hero-slide__tag {
		font-size: 9.5px;
		padding: 4px 10px;
		letter-spacing: 0.04em;
		border-radius: 99px;
	}

	.dm-hero-slide__title {
		font-size: 20px;
		line-height: 1.26;
		margin: 0 0 14px;
		max-width: 320px;
		font-weight: 800;
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
	}

	.dm-hero-slide__actions {
		justify-content: flex-start;
		gap: 10px;
	}

	.dm-hero-slide__cta {
		padding: 10px 18px !important;
		font-size: 13px !important;
		border-radius: 9px !important;
		gap: 6px;
	}

	.dm-hero-slider-dots {
		bottom: 12px;
		padding: 5px 12px;
		gap: 6px;
	}

	.dm-hero-dot {
		width: 7px;
		height: 7px;
	}

	.dm-hero-dot.is-active {
		width: 22px;
	}

	/* Trust Strip on Mobile (2x2 Compact Grid) */
	.dm-trust-strip {
		padding: 10px 0 12px;
		background: #ffffff;
		border-bottom: 1px solid #E2E8F0;
	}

	.dm-trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.dm-trust-item {
		padding: 8px 10px;
		gap: 10px;
		border-radius: 10px;
		background: #F8FAFC;
		border: 1px solid #E2E8F0;
	}

	.dm-trust-item__icon {
		width: 34px;
		height: 34px;
		border-radius: 8px;
	}

	.dm-trust-item__icon svg {
		width: 17px;
		height: 17px;
	}

	.dm-trust-item__title {
		font-size: 11.5px;
		font-weight: 700;
		line-height: 1.2;
		color: #0F172A;
	}

	.dm-trust-item__desc {
		font-size: 10px;
		color: #64748B;
		line-height: 1.2;
	}

	/* Top Categories Circle Slider on Mobile */
	.dm-categories-slider-section {
		padding: 18px 0 12px;
	}

	.dm-categories-track {
		gap: 12px;
		padding: 2px 2px 10px 2px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x pan-y pinch-zoom;
	}

	.dm-category-circle-card {
		flex: 0 0 76px;
		flex-shrink: 0;
		scroll-snap-align: start;
		scroll-snap-stop: normal;
		padding: 2px;
	}

	.dm-category-circle-card__media {
		width: 66px;
		height: 66px;
		border-width: 1.5px;
		margin-bottom: 6px;
	}

	.dm-category-circle-card__img {
		width: 42px;
		height: 42px;
	}

	.dm-category-circle-card__name {
		font-size: 10.5px;
		line-height: 1.2;
		font-weight: 600;
		max-width: 76px;
	}

	/* Section Headings on Mobile */
	.dm-slider-header,
	.dm-section__head {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 12px;
		gap: 8px;
	}

	.dm-slider-title,
	.dm-section__title {
		font-size: 17px;
		font-weight: 800;
		line-height: 1.2;
		color: #0F172A;
		margin: 0;
	}

	.dm-slider-eyebrow,
	.dm-section__eyebrow {
		font-size: 9.5px;
		font-weight: 800;
		letter-spacing: 0.05em;
		margin-bottom: 2px;
	}

	.dm-slider-subtitle,
	.dm-section__subtitle {
		display: none;
	}

	.dm-slider-nav {
		display: none;
	}

	.dm-slider-viewall,
	.dm-slider-more-link {
		display: inline-flex;
		align-items: center;
		gap: 3px;
		font-size: 12px;
		font-weight: 700;
		color: var(--dm-dk-blue, #1D70CA);
		white-space: nowrap;
		text-decoration: none;
	}

	/* Flash Deals Section on Mobile */
	.dm-deals-slider-section {
		padding: 18px 0 14px;
	}

	.dm-deals-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 12px;
	}

	.dm-countdown-widget {
		width: 100%;
		justify-content: flex-start;
		gap: 6px;
		padding: 6px 10px;
		border-radius: 8px;
	}

	.dm-countdown-box {
		min-width: 26px;
		height: 26px;
		font-size: 12px;
		font-weight: 800;
		border-radius: 6px;
	}

	/* Product Slider Tracks & Cards on Mobile */
	.dm-slider-track,
	.dm-brands-track {
		gap: 12px;
		padding: 2px 2px 10px 2px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x pan-y pinch-zoom;
	}

	.dm-slider-item {
		flex: 0 0 162px;
		flex-shrink: 0;
		scroll-snap-align: start;
		scroll-snap-stop: normal;
	}

	.dm-product-card {
		border-radius: 12px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	}

	.dm-product-card__top {
		top: 6px;
		left: 6px;
	}

	.dm-product-card__badge {
		font-size: 9px;
		padding: 2px 6px;
		border-radius: 4px;
		font-weight: 800;
	}

	.dm-product-card__media {
		height: 136px;
		max-height: 136px;
		padding: 8px 8px 4px;
	}

	.dm-product-card__img-wrap {
		height: 124px;
		max-height: 124px;
		border-radius: 8px;
	}

	.dm-product-card__img,
	.dm-product-card__img-wrap img,
	.dm-product-card img {
		max-height: 118px !important;
	}

	.dm-product-card__body {
		padding: 8px 10px 10px;
	}

	.dm-product-card__brand {
		font-size: 9.5px;
		font-weight: 700;
		margin-bottom: 2px;
	}

	.dm-product-card__title {
		font-size: 12px;
		line-height: 1.3;
		height: 31px;
		margin-bottom: 4px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.dm-product-card__title a {
		font-size: 12px;
		line-height: 1.3;
	}

	.dm-product-card__rating {
		gap: 4px;
		margin-bottom: 6px;
	}

	.dm-rating-pill {
		padding: 1px 5px;
		font-size: 10px;
	}

	.dm-rating-count {
		font-size: 10px;
	}

	.dm-product-card__price-row {
		margin-bottom: 8px;
		min-height: 20px;
	}

	.dm-product-card__price {
		font-size: 13.5px;
		font-weight: 800;
	}

	.dm-product-card__price del {
		font-size: 10.5px;
	}

	.dm-product-card__btn {
		padding: 6px 8px !important;
		font-size: 11px !important;
		border-radius: 6px !important;
		width: 100%;
		justify-content: center;
	}

	/* Featured Category Banners & Promo Cards on Mobile */
	.dm-promo-banners-grid,
	.dm-featured-cats-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dm-promo-card,
	.dm-featured-cat-card {
		height: 160px;
		border-radius: 12px;
	}

	.dm-featured-cat-card__content {
		padding: 16px;
	}

	.dm-featured-cat-card__title {
		font-size: 17px;
	}

	/* Top Brands on Mobile */
	.dm-brand-card {
		flex: 0 0 100px;
		flex-shrink: 0;
		scroll-snap-align: start;
		scroll-snap-stop: normal;
		height: 56px;
		padding: 6px 10px;
		border-radius: 10px;
	}

	/* Authority / Why Choose Us & CTA on Mobile */
	.dm-authority-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.dm-authority-card {
		padding: 16px;
		border-radius: 12px;
	}

	.dm-cta-box {
		padding: 24px 16px;
		border-radius: 14px;
		text-align: center;
	}

	.dm-cta-title {
		font-size: 20px;
	}

	.dm-cta-actions {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}

	.dm-cta-actions .dm-btn {
		width: 100%;
		justify-content: center;
	}

	/* Footer on Mobile */
	.dm-footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.dm-footer-col--brand {
		text-align: left;
	}

	.dm-footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   ABOUT US & CONTACT US PAGE DESIGN SYSTEM
   ========================================================================== */

/* ------------------------------------------------ About Us Hero */
.dm-about-hero {
	background: linear-gradient(135deg, #0F4C81 0%, #1D70CA 60%, #3B82F6 100%);
	color: #ffffff;
	padding: 56px 0 72px;
	position: relative;
	text-align: center;
}

.dm-about-hero__inner {
	max-width: 820px;
	margin: 0 auto;
}

.dm-about-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	padding: 6px 14px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.dm-about-hero__title {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.dm-about-hero__subtitle {
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

/* Stats Ribbon */
.dm-about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 24px 32px;
	margin-top: 48px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
	text-align: center;
}

.dm-about-stat-item strong {
	display: block;
	font-size: 32px;
	font-weight: 800;
	color: var(--dm-dk-blue, #1D70CA);
	line-height: 1.1;
	margin-bottom: 4px;
}

.dm-about-stat-item span {
	font-size: 13px;
	font-weight: 600;
	color: #64748B;
}

/* About Sections & Grid */
.dm-about-section {
	padding: 64px 0;
	background: #ffffff;
}

.dm-about-section--alt {
	background: #F8FAFC;
	border-top: 1px solid #E2E8F0;
	border-bottom: 1px solid #E2E8F0;
}

.dm-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.dm-about-grid--reverse {
	grid-template-columns: 1fr 1fr;
}

.dm-about-grid--reverse .dm-about-text {
	order: 1;
}

.dm-about-grid--reverse .dm-about-media {
	order: 2;
}

.dm-about-heading {
	font-size: 30px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	line-height: 1.25;
	margin: 8px 0 20px;
}

.dm-about-text p {
	font-size: 15.5px;
	line-height: 1.65;
	color: #475569;
	margin-bottom: 16px;
}

.dm-about-features-list {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dm-about-feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.dm-about-feature svg {
	color: #10B981;
	flex-shrink: 0;
	margin-top: 2px;
}

.dm-about-feature strong {
	display: block;
	font-size: 15px;
	color: var(--dm-dk-dark, #1D2B36);
	margin-bottom: 2px;
}

.dm-about-feature p {
	font-size: 13.5px;
	color: #64748B;
	margin: 0;
}

/* Media Cards */
.dm-about-media__card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
	border: 1px solid #E2E8F0;
}

.dm-about-img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.dm-about-media__card:hover .dm-about-img {
	transform: scale(1.03);
}

.dm-about-media__badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.dm-about-media__badge svg {
	color: #38BDF8;
	flex-shrink: 0;
}

.dm-about-media__badge strong {
	display: block;
	font-size: 14px;
}

.dm-about-media__badge span {
	font-size: 12px;
	opacity: 0.85;
}

/* 4 Pillars */
.dm-about-pillars {
	padding: 64px 0;
	background: #ffffff;
}

.dm-pillars-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.dm-pillar-card {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 28px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dm-pillar-card:hover {
	transform: translateY(-4px);
	border-color: var(--dm-dk-blue, #1D70CA);
	box-shadow: 0 12px 28px rgba(29, 112, 202, 0.12);
}

.dm-pillar-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.dm-pillar-card__icon--blue {
	background: rgba(29, 112, 202, 0.12);
	color: var(--dm-dk-blue, #1D70CA);
}

.dm-pillar-card__icon--teal {
	background: rgba(13, 148, 136, 0.12);
	color: #0D9488;
}

.dm-pillar-card__icon--orange {
	background: rgba(255, 109, 0, 0.12);
	color: #FF6D00;
}

.dm-pillar-card__icon--navy {
	background: rgba(32, 83, 117, 0.12);
	color: #205375;
}

.dm-pillar-card h3 {
	font-size: 17px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	margin: 0 0 10px;
}

.dm-pillar-card p {
	font-size: 13.5px;
	line-height: 1.55;
	color: #64748B;
	margin: 0;
}

/* ------------------------------------------------ Contact Us Page */
.dm-contact-hero {
	background: linear-gradient(135deg, #0F172A 0%, #205375 65%, #1D70CA 100%);
	color: #ffffff;
	padding: 56px 0 64px;
	text-align: center;
}

.dm-contact-hero__inner {
	max-width: 760px;
	margin: 0 auto;
}

.dm-contact-hero__title {
	font-size: 38px;
	font-weight: 800;
	color: #ffffff;
	margin: 10px 0 14px;
}

.dm-contact-hero__subtitle {
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

/* Contact Cards Strip */
.dm-contact-cards-section {
	margin-top: -36px;
	position: relative;
	z-index: 5;
	margin-bottom: 48px;
}

.dm-contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dm-contact-card {
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	text-align: center;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.dm-contact-card:hover {
	transform: translateY(-4px);
	border-color: var(--dm-dk-blue, #1D70CA);
	box-shadow: 0 14px 32px rgba(29, 112, 202, 0.14);
}

.dm-contact-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dm-contact-card__icon--blue {
	background: rgba(29, 112, 202, 0.12);
	color: var(--dm-dk-blue, #1D70CA);
}

.dm-contact-card__icon--teal {
	background: rgba(13, 148, 136, 0.12);
	color: #0D9488;
}

.dm-contact-card__icon--orange {
	background: rgba(255, 109, 0, 0.12);
	color: #FF6D00;
}

.dm-contact-card h3 {
	font-size: 16px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	margin: 0 0 6px;
}

.dm-contact-card__detail {
	font-size: 16px;
	color: var(--dm-dk-blue, #1D70CA);
	margin: 0 0 6px;
}

.dm-contact-card__sub {
	font-size: 12.5px;
	color: #64748B;
	line-height: 1.4;
	margin: 0;
}

/* Contact Layout (Form + Sidebar) */
.dm-contact-form-section {
	padding-bottom: 64px;
}

.dm-contact-layout {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
	align-items: flex-start;
}

.dm-contact-form-card {
	background: #ffffff;
	border: 1.5px solid #E2E8F0;
	border-radius: 20px;
	padding: 36px 32px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.dm-contact-form-header {
	margin-bottom: 24px;
}

.dm-contact-form-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	margin: 4px 0 6px;
}

.dm-contact-form-desc {
	font-size: 14px;
	color: #64748B;
	margin: 0;
}

/* Form controls */
.dm-form-row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.dm-form-row--2col {
	grid-template-columns: 1fr 1fr;
}

.dm-form-group {
	margin-bottom: 16px;
}

.dm-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 6px;
}

.dm-form-group .required {
	color: #DC2626;
}

.dm-form-input {
	width: 100%;
	border: 1.5px solid #CBD5E1;
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14px;
	color: var(--dm-dk-dark, #1D2B36);
	background: #ffffff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: inherit;
}

.dm-form-input:focus {
	border-color: var(--dm-dk-blue, #1D70CA);
	box-shadow: 0 0 0 3px rgba(29, 112, 202, 0.15);
}

.dm-contact-submit-btn {
	width: 100%;
	justify-content: center;
	margin-top: 8px;
}

/* Contact Sidebar */
.dm-contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.dm-contact-media-card {
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.dm-contact-hub-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.dm-contact-media-info {
	padding: 20px;
}

.dm-contact-media-info h4 {
	font-size: 16px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	margin: 0 0 6px;
}

.dm-contact-media-info p {
	font-size: 13px;
	line-height: 1.5;
	color: #64748B;
	margin: 0;
}

.dm-contact-hours-card {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 20px;
}

.dm-contact-hours-card__header {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--dm-dk-navy, #205375);
	font-size: 14px;
	margin-bottom: 12px;
}

.dm-contact-hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dm-contact-hours-list li {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #475569;
	border-bottom: 1px solid #EDF2F7;
	padding-bottom: 6px;
}

.dm-contact-hours-list li strong {
	color: var(--dm-dk-dark, #1D2B36);
}

.dm-contact-hours-list li em {
	color: #EA580C;
	font-style: normal;
	font-weight: 600;
}

/* ------------------------------------------------ Responsive About & Contact */
@media (max-width: 1024px) {
	.dm-about-stats {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.dm-about-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.dm-contact-cards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.dm-contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.dm-about-hero__title,
	.dm-contact-hero__title {
		font-size: 28px;
	}

	.dm-about-stats {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.dm-pillars-grid {
		grid-template-columns: 1fr;
	}

	.dm-form-row--2col {
		grid-template-columns: 1fr;
	}

	.dm-contact-form-card {
		padding: 24px 18px;
	}
}

/* ==========================================================================
   ENHANCED HERO SLIDER PRODUCT VISUALS & CHIPS
   ========================================================================== */
.dm-hero-slide__chips {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.dm-hero-chip {
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 99px;
	letter-spacing: 0.02em;
}

.dm-hero-slide__img-wrapper {
	max-width: 440px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
	transition: transform 0.4s ease;
}

.dm-hero-slide:hover .dm-hero-slide__img-wrapper {
	transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.dm-hero-slide__img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   REDESIGNED AUTHORITY SECTION ("Why Doctors Choose DentaHaus")
   ========================================================================== */
.dm-authority-section {
	background: #F8FAFC;
	padding: 72px 0 80px;
	border-top: 1px solid #E2E8F0;
	border-bottom: 1px solid #E2E8F0;
}

.dm-authority-header {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 48px;
}

.dm-authority-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #EFF6FF;
	color: var(--dm-dk-blue, #1D70CA);
	border: 1px solid #BFDBFE;
	padding: 6px 16px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.dm-authority-main-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	line-height: 1.25;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
}

.dm-authority-main-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #64748B;
	margin: 0;
}

/* 4 Modern Authority Cards Grid */
.dm-authority-modern-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-bottom: 48px;
}

.dm-auth-card {
	background: #ffffff;
	border: 1.5px solid #E2E8F0;
	border-radius: 20px;
	padding: 32px;
	display: flex;
	gap: 24px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.dm-auth-card:hover {
	transform: translateY(-4px);
	border-color: var(--dm-dk-blue, #1D70CA);
	box-shadow: 0 16px 36px rgba(29, 112, 202, 0.12);
}

.dm-auth-card__icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dm-auth-card--blue .dm-auth-card__icon-wrap {
	background: #EFF6FF;
	color: var(--dm-dk-blue, #1D70CA);
}

.dm-auth-card--teal .dm-auth-card__icon-wrap {
	background: #F0FDFA;
	color: #0D9488;
}

.dm-auth-card--orange .dm-auth-card__icon-wrap {
	background: #FFF7ED;
	color: #FF6D00;
}

.dm-auth-card--navy .dm-auth-card__icon-wrap {
	background: #F0F4F8;
	color: #205375;
}

.dm-auth-card__content {
	flex: 1;
}

.dm-auth-card__pill {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #64748B;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.dm-auth-card__title {
	font-size: 18px;
	font-weight: 800;
	color: var(--dm-dk-dark, #1D2B36);
	margin: 0 0 10px;
	line-height: 1.3;
}

.dm-auth-card__text {
	font-size: 14px;
	line-height: 1.6;
	color: #475569;
	margin: 0 0 16px;
}

.dm-auth-card__feature-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #F1F5F9;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--dm-dk-dark, #1D2B36);
}

.dm-auth-card__feature-tag svg {
	color: #10B981;
	flex-shrink: 0;
}

/* Trust Metrics Ribbon */
.dm-authority-metrics-strip {
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 24px 32px;
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.dm-auth-metric-item {
	text-align: center;
}

.dm-auth-metric-val {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--dm-dk-blue, #1D70CA);
	line-height: 1.1;
	margin-bottom: 4px;
}

.dm-auth-metric-lbl {
	font-size: 12.5px;
	font-weight: 600;
	color: #64748B;
}

.dm-auth-metric-sep {
	width: 1px;
	height: 36px;
	background: #E2E8F0;
}

@media (max-width: 992px) {
	.dm-authority-modern-grid {
		grid-template-columns: 1fr;
	}

	.dm-authority-metrics-strip {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center;
	}

	.dm-auth-metric-sep {
		display: none;
	}
}

@media (max-width: 768px) {
	.dm-auth-card {
		flex-direction: column;
		padding: 24px;
		gap: 16px;
	}

	.dm-authority-main-title {
		font-size: 24px;
	}
}

/* ==========================================================================
   Bulk Quote Modal & Attached Product Card
   ========================================================================== */
body.dm-modal-open {
	overflow: hidden !important;
}

.dm-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	padding: 16px;
}

.dm-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.dm-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(4px);
}

.dm-modal__dialog {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	padding: 24px 28px;
	transform: scale(0.95);
	transition: transform 0.25s ease;
}

.dm-modal.is-open .dm-modal__dialog {
	transform: scale(1);
}

.dm-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 0;
	background: #f1f5f9;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #475569;
	transition: all 0.15s ease;
}

.dm-modal__close:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.dm-modal__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: rgba(13, 148, 136, 0.12);
	color: #0d9488;
	font-size: 12px;
	font-weight: 700;
	border-radius: 20px;
	margin-bottom: 8px;
}

.dm-modal__title {
	font-family: var(--dm-font-heading);
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 4px;
}

.dm-modal__subtitle {
	font-size: 13px;
	color: #64748b;
	margin: 0 0 16px;
}

/* Attached Product Card inside Modal */
.dm-quote-product-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	margin-bottom: 20px;
}

.dm-quote-product-card__thumb {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dm-quote-product-card__thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.dm-quote-product-card__meta {
	flex: 1;
	min-width: 0;
}

.dm-quote-product-card__brand {
	font-size: 11px;
	font-weight: 700;
	color: #0d9488;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
}

.dm-quote-product-card__title {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin: 2px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dm-quote-product-card__details {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: #64748b;
	margin-top: 2px;
}

.dm-quote-product-card__price {
	font-weight: 800;
	color: var(--dm-accent, #0d9488);
	font-size: 14px;
}

/* Modal Form Controls */
.dm-quote-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.dm-quote-form__group {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dm-quote-form__group--full {
	grid-column: 1 / -1;
	margin-top: 4px;
}

.dm-quote-form__group label {
	font-size: 12px;
	font-weight: 700;
	color: #334155;
}

.dm-quote-form__group input,
.dm-quote-form__group textarea {
	padding: 9px 12px;
	border: 1.5px solid #cbd5e1;
	border-radius: 8px;
	font-size: 13px;
	font-family: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	width: 100%;
}

.dm-quote-form__group input:focus,
.dm-quote-form__group textarea:focus {
	outline: none;
	border-color: var(--dm-accent, #0d9488);
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.dm-quote-form__footer {
	margin-top: 20px;
}

.dm-quote-form__submit {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Success View inside Modal */
.dm-quote-success {
	text-align: center;
	padding: 24px 12px;
}

.dm-quote-success__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #dcfce7;
	color: #166534;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.dm-quote-success__title {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px;
}

.dm-quote-success__text {
	font-size: 14px;
	color: #475569;
	margin: 0 0 20px;
	line-height: 1.5;
}

@media (max-width: 640px) {
	.dm-quote-form__grid {
		grid-template-columns: 1fr;
	}
	.dm-modal__dialog {
		padding: 20px;
	}
}

/* Small Modal Variant & Pincode Modal Controls */
.dm-modal__dialog--sm {
	max-width: 440px;
}

.dm-pincode-modal-input-wrap {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.dm-pincode-modal-input-wrap input {
	flex: 1;
	padding: 10px 14px;
	border: 1.5px solid #cbd5e1;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.dm-pincode-modal-input-wrap input:focus {
	outline: none;
	border-color: var(--dm-accent, #0d9488);
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.dm-pincode-modal-result {
	margin-top: 12px;
	padding: 8px 12px;
	background: #f8fafc;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.dm-pincode-modal-footer {
	margin-top: 16px;
	text-align: center;
}

.dm-pincode-reset-btn {
	background: none;
	border: 0;
	color: #64748b;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: underline;
	transition: color 0.15s ease;
}

.dm-pincode-reset-btn:hover {
	color: #ef4444;
}

/* ==========================================================================
   GLOBAL SECTION & CARD ANIMATIONS (High Performance, Hardware Accelerated)
   ========================================================================== */

/* ------------------------------------------------ Product Cards & Carousel Cards */
.dm-product-card,
.dm-deals-slider__card,
.dm-product-slider__card,
.dm-deal-card {
	transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.32s ease !important;
	will-change: transform, box-shadow;
}

.dm-product-card:hover,
.dm-deals-slider__card:hover,
.dm-product-slider__card:hover,
.dm-deal-card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.14), 0 4px 10px rgba(15, 23, 42, 0.04) !important;
	border-color: rgba(29, 112, 202, 0.35) !important;
}

.dm-product-card__thumb,
.dm-deals-slider__thumb,
.dm-deal-card__thumb,
.dm-product-slider__thumb {
	overflow: hidden;
}

.dm-product-card__thumb img,
.dm-deals-slider__thumb img,
.dm-deal-card__thumb img,
.dm-product-slider__thumb img {
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
	will-change: transform;
}

.dm-product-card:hover .dm-product-card__thumb img,
.dm-deals-slider__card:hover .dm-deals-slider__thumb img,
.dm-deal-card:hover .dm-deal-card__thumb img,
.dm-product-slider__card:hover .dm-product-slider__thumb img {
	transform: scale(1.06) !important;
}

/* ------------------------------------------------ Category & Promo Cards */
.dm-cat-card,
.dm-featured-cat-card,
.dm-promo-card,
.dm-brand-card,
.dm-authority-card {
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
	will-change: transform, box-shadow;
}

.dm-cat-card:hover,
.dm-featured-cat-card:hover,
.dm-promo-card:hover,
.dm-brand-card:hover,
.dm-authority-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.12) !important;
}

.dm-cat-card__img img,
.dm-featured-cat-card__img img,
.dm-brand-card img {
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dm-cat-card:hover .dm-cat-card__img img,
.dm-featured-cat-card:hover .dm-featured-cat-card__img img,
.dm-brand-card:hover img {
	transform: scale(1.08) !important;
}

/* ------------------------------------------------ Trust Badges & Benefits */
.dm-trust-card,
.dm-about-stat-item,
.dm-product__benefit-card,
.dm-contact-method-card {
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
	will-change: transform;
}

.dm-trust-card:hover,
.dm-about-stat-item:hover,
.dm-product__benefit-card:hover,
.dm-contact-method-card:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.08) !important;
}

.dm-trust-card:hover svg,
.dm-product__benefit-card:hover svg,
.dm-contact-method-card:hover svg {
	transform: scale(1.12);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ------------------------------------------------ Badges & Micro Pulsing */
@keyframes dmBadgePulseSoft {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.dm-badge--deal,
.dm-deals-slider__badge,
.dm-product-card__discount-tag {
	animation: dmBadgePulseSoft 3s ease-in-out infinite;
	transform-origin: center;
}

/* ------------------------------------------------ Universal Scroll Reveal */
.dm-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) !important;
	will-change: opacity, transform;
}

.dm-reveal.is-in-view {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* Stagger delays for child grid items */
.dm-reveal.is-in-view:nth-child(2) { transition-delay: 0.06s !important; }
.dm-reveal.is-in-view:nth-child(3) { transition-delay: 0.12s !important; }
.dm-reveal.is-in-view:nth-child(4) { transition-delay: 0.18s !important; }
.dm-reveal.is-in-view:nth-child(5) { transition-delay: 0.24s !important; }
.dm-reveal.is-in-view:nth-child(6) { transition-delay: 0.30s !important; }

/* ------------------------------------------------ Interactive Button Click Feedback */
.dm-btn:active,
.dm-search__submit:active,
.dm-product-card__cta:active,
.dm-hero-dot:active {
	transform: scale(0.97) !important;
}

/* ------------------------------------------------ Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.dm-reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}
