/* ══════════════════════════════════════════════════════════════════
   MERIDIAN — shop-dong-ho — Identity: GLASS-MODERN (variant Deep Teal + Silver-Blue)
   Font: Plus Jakarta Sans | Tone: light-dominant, glass panels on gradient
   Nav: Nav-3 Dark Floating | Hero: H2 Split 45/55 + Carousel 4 slide
   Prefix: dh-
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

:root {
  --bg: #f2f6f7;
  --surface: #ffffff;
  --dark: #071b1d;
  --dark2: #0d2b2d;
  --border: #dbe4e5;
  --border-light: #ecf2f2;
  --text: #0e2224;
  --text-2: #52686a;
  --text-3: #8fa2a4;

  --accent: #0d7377;       /* Deep Teal */
  --accent-h: #0a5c5f;
  --accent-light: #e2f2f1;
  --accent-mid: #14969b;
  --accent2: #95a5b8;      /* Silver-Blue phụ */
  --accent2-light: #eef1f5;
  --gold: #c9a24d;
  --danger: #e0554f;

  --glass-bg: rgba(255,255,255,.55);
  --glass-bg-strong: rgba(255,255,255,.78);
  --glass-bg-dark: rgba(9,32,34,.5);
  --glass-bg-dark-strong: rgba(9,32,34,.72);
  --glass-border: rgba(255,255,255,.5);
  --glass-border-dark: rgba(255,255,255,.14);
  --glass-blur: blur(20px);

  --gradient-1: linear-gradient(135deg, #0d7377 0%, #14969b 45%, #95a5b8 100%);
  --gradient-dark: linear-gradient(160deg, #071b1d 0%, #0d2b2d 55%, #123b3e 100%);

  --sans: 'Plus Jakarta Sans', sans-serif;
  --heading: 'Plus Jakarta Sans', sans-serif;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: var(--sans); }
h1, h2, h3, h4, h5 { font-family: var(--heading); line-height: 1.14; color: var(--text); font-weight: 700; letter-spacing: -.01em; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

.dh-container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.dh-sec { padding: clamp(64px, 9vw, 116px) 0; }
.dh-sec-tight { padding: clamp(48px, 6vw, 76px) 0; }

/* ── Section header ── */
.dh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.dh-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.dh-sec-title { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 14px; }
.dh-sec-title em { font-style: normal; color: var(--accent); font-weight: 700; }
.dh-sec-sub { font-size: 16.5px; color: var(--text-2); max-width: 560px; font-weight: 400; }
.dh-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 42px; }

/* ── Reveal animation ── */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-d1] { transition-delay: .08s; }
[data-reveal-d2] { transition-delay: .16s; }
[data-reveal-d3] { transition-delay: .24s; }

/* ══════════════════════════════════════════════════════════════════
   NAV-3 Dark Floating
   ══════════════════════════════════════════════════════════════════ */
#dh-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 1220px;
  z-index: 1000;
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-dark);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(4,16,17,.28);
  transition: background .3s, box-shadow .3s;
}
#dh-nav.scrolled { background: var(--glass-bg-dark-strong); box-shadow: 0 20px 50px rgba(4,16,17,.36); }
.dh-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 70px; padding: 0 22px; }
.dh-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.01em; color: #fff; flex-shrink: 0; }
.dh-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 800;
}
.dh-nav-links { display: flex; align-items: center; gap: 30px; }
.dh-nav-links a { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.72); transition: color .2s; position: relative; }
.dh-nav-links a:hover, .dh-nav-links a.active { color: #fff; }
.dh-nav-links a.active::after { content: ''; position: absolute; bottom: -20px; left: 0; right: 0; height: 2px; background: var(--accent-mid); border-radius: 2px; }
.dh-nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.dh-nav-icon-btn {
  position: relative; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s;
}
.dh-nav-icon-btn:hover { background: rgba(255,255,255,.2); }
.dh-nav-icon-btn svg { width: 18px; height: 18px; }
.dh-cart-count {
  position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--danger); color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--dark2);
}
.dh-nav-cta {
  background: var(--gradient-1); color: #fff; font-weight: 700; font-size: 13.5px;
  padding: 11px 22px; border-radius: 11px; transition: filter .2s, transform .2s;
  box-shadow: 0 8px 22px rgba(13,115,119,.35);
}
.dh-nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

#dh-burger { display: none; width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.1); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
#dh-burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
#dh-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#dh-burger.open span:nth-child(2) { opacity: 0; }
#dh-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search panel dropping from nav */
.dh-search-panel {
  position: fixed; top: 96px; left: 50%; transform: translateX(-50%) translateY(-8px);
  width: calc(100% - 32px); max-width: 1220px; z-index: 999;
  background: var(--glass-bg-dark-strong); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-dark); border-radius: 16px; padding: 18px;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.dh-search-panel.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dh-search-panel form { display: flex; gap: 10px; }
.dh-search-panel input {
  flex: 1; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 10px;
  padding: 12px 16px; color: #fff; font-size: 14.5px;
}
.dh-search-panel input::placeholder { color: rgba(255,255,255,.5); }
.dh-search-panel button { background: var(--gradient-1); color: #fff; border-radius: 10px; padding: 12px 22px; font-weight: 700; font-size: 14px; }

/* Mobile nav drawer */
#dh-nav-mob {
  position: fixed; top: 0; right: -100%; width: min(320px, 86vw); height: 100vh; z-index: 1100;
  background: var(--gradient-dark); padding: 100px 30px 30px;
  display: flex; flex-direction: column; gap: 4px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.35);
}
#dh-nav-mob.open { right: 0; }
#dh-nav-mob a { font-size: 18px; font-weight: 600; color: rgba(255,255,255,.82); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
#dh-nav-mob a.active { color: var(--accent-mid); }
.dh-mob-close { position: absolute; top: 26px; right: 26px; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; }

/* ══════════════════════════════════════════════════════════════════
   HERO — H2 Split 45/55 + Carousel 4 slide
   Chỉ slide 1 dùng <h1>, slide 2-4 dùng <h2>
   ══════════════════════════════════════════════════════════════════ */
.dh-hero { position: relative; min-height: 100vh; max-height: 100vh; overflow: hidden; background: var(--gradient-dark); }
.dh-hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  display: grid; grid-template-columns: 45% 55%;
  transition: opacity .9s ease;
}
.dh-hero-slide.active { opacity: 1; visibility: visible; position: relative; }
.dh-hero-slide:not(.active) { position: absolute; }

.dh-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px clamp(28px, 4vw, 72px) 80px;
  position: relative; z-index: 2;
}
.dh-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 26px; width: fit-content; }
.dh-hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-mid); }
.dh-hero-title { font-size: clamp(34px, 4.2vw, 58px); color: #fff; font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; }
.dh-hero-title span { background: var(--gradient-1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dh-hero-sub { font-size: 16.5px; color: rgba(255,255,255,.68); font-weight: 400; max-width: 420px; margin-bottom: 34px; }
.dh-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.dh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 13px; font-weight: 700; font-size: 14.5px;
  transition: all .25s;
}
.dh-btn-primary { background: var(--gradient-1); color: #fff; box-shadow: 0 10px 28px rgba(13,115,119,.4); }
.dh-btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }
.dh-btn-glass { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(10px); color: #fff; }
.dh-btn-glass:hover { background: rgba(255,255,255,.18); }
.dh-btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.dh-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.dh-btn-solid { background: var(--accent); color: #fff; }
.dh-btn-solid:hover { background: var(--accent-h); }
.dh-btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 10px; }

.dh-hero-visual { position: relative; overflow: hidden; }
.dh-hero-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 100vh; max-height: 100vh; }
.dh-hero-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,29,.55) 0%, rgba(7,27,29,0) 30%); z-index: 1; }
.dh-hero-price-card {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
  background: var(--glass-bg-strong); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  min-width: 190px;
}
.dh-hero-price-card .lbl { font-size: 11.5px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 6px; }
.dh-hero-price-card .val { font-size: 20px; font-weight: 800; color: var(--accent); }

.dh-hero-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.2);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background .2s;
}
.dh-hero-nav-btn:hover { background: rgba(255,255,255,.24); }
.dh-hero-prev { left: 24px; }
.dh-hero-next { right: 24px; }
.dh-hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.dh-hero-dots button { width: 30px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3); transition: background .3s, width .3s; }
.dh-hero-dots button.active { background: var(--accent-mid); width: 44px; }

/* ══════════════════════════════════════════════════════════════════
   STAT-BAR
   ══════════════════════════════════════════════════════════════════ */
.dh-statbar { background: var(--dark); position: relative; overflow: hidden; }
.dh-statbar::before { content: ''; position: absolute; inset: 0; background: var(--gradient-dark); opacity: .9; }
.dh-stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(30px, 6vw, 60px); text-align: center; padding: 54px 0; }
.dh-stat-num { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.dh-stat-num span { color: var(--accent-mid); }
.dh-stat-label { font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 500; }
@media (max-width: 1024px) { .dh-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .dh-stats-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   PRODUCT CARD — Glassmorphism
   ══════════════════════════════════════════════════════════════════ */
.dh-prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dh-prod-grid.dh-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dh-card {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14,34,36,.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.dh-card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(14,34,36,.14); border-color: rgba(13,115,119,.25); }
.dh-card-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--accent2-light); }
.dh-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dh-card:hover .dh-card-thumb img { transform: scale(1.07); }
.dh-card-badge { position: absolute; top: 12px; left: 12px; padding: 5px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; z-index: 2; }
.dh-card-badge.new { background: var(--accent-light); color: var(--accent); }
.dh-card-badge.sale { background: #fdeceb; color: var(--danger); }
.dh-card-badge.hot { background: linear-gradient(135deg, var(--gold), #e3c27f); color: #40310c; }
.dh-card-wish {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-2);
  transition: background .2s, color .2s;
}
.dh-card-wish:hover { background: var(--accent); color: #fff; }
.dh-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dh-card-brand { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-mid); }
.dh-card-name { font-size: 15px; font-weight: 700; line-height: 1.3; }
.dh-card-name a { transition: color .2s; }
.dh-card-name a:hover { color: var(--accent); }
.dh-card-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-2); }
.dh-card-rating { display: flex; align-items: center; gap: 4px; color: #f59e0b; font-weight: 700; }
.dh-card-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 6px; }
.dh-card-price { font-size: 17px; font-weight: 800; color: var(--accent); }
.dh-card-price-old { font-size: 13px; color: var(--text-3); text-decoration: line-through; }
.dh-card-add {
  margin-top: 10px; width: 100%; padding: 10px; border-radius: 10px;
  background: var(--accent-light); color: var(--accent); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s, color .2s;
}
.dh-card-add:hover { background: var(--accent); color: #fff; }
.dh-card-stock-out { opacity: .6; }
.dh-card-stock-out .dh-card-add { pointer-events: none; background: var(--border-light); color: var(--text-3); }

@media (max-width: 1100px) { .dh-prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .dh-prod-grid, .dh-prod-grid.dh-cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 460px) { .dh-prod-grid, .dh-prod-grid.dh-cols-3 { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ══════════════════════════════════════════════════════════════════
   THEMED HOME SECTIONS (Mode B)
   ══════════════════════════════════════════════════════════════════ */
.dh-theme-section { padding: clamp(56px, 7vw, 92px) 0; }
.dh-theme-section.alt { background: var(--surface); }
.dh-theme-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.dh-theme-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.dh-theme-search { position: relative; flex: 1; min-width: 220px; max-width: 320px; }
.dh-theme-search input {
  width: 100%; padding: 11px 16px 11px 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); font-size: 13.5px; color: var(--text);
}
.dh-theme-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-3); }
.dh-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.dh-chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface);
  font-size: 13px; font-weight: 600; color: var(--text-2); transition: all .2s; white-space: nowrap;
}
.dh-chip:hover { border-color: var(--accent); color: var(--accent); }
.dh-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.dh-theme-empty { padding: 40px 20px; text-align: center; color: var(--text-2); font-size: 14.5px; grid-column: 1/-1; }
.dh-theme-viewall { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent); font-size: 14.5px; }
.dh-theme-viewall:hover { gap: 12px; }
.dh-theme-viewall svg { width: 16px; height: 16px; transition: transform .2s; }

/* ══════════════════════════════════════════════════════════════════
   BENTO-GRID — "Vì sao chọn MERIDIAN"
   ══════════════════════════════════════════════════════════════════ */
.dh-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 18px; }
.dh-bento-item {
  border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; color: #fff;
}
.dh-bento-item.b1 { grid-column: span 2; grid-row: span 2; background: var(--gradient-dark); }
.dh-bento-item.b2 { grid-column: span 2; background: var(--gradient-1); }
.dh-bento-item.b3 { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.dh-bento-item.b4 { background: var(--dark2); }
.dh-bento-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.dh-bento-item.b3 .dh-bento-icon { background: var(--accent-light); color: var(--accent); }
.dh-bento-item h3 { font-size: 19px; margin-bottom: 8px; }
.dh-bento-item p { font-size: 13.5px; opacity: .82; line-height: 1.5; }
@media (max-width: 900px) {
  .dh-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dh-bento-item.b1, .dh-bento-item.b2 { grid-column: span 2; }
  .dh-bento-item { min-height: 200px; }
}
@media (max-width: 560px) {
  .dh-bento { grid-template-columns: 1fr; }
  .dh-bento-item.b1, .dh-bento-item.b2 { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════════════
   FEATURE-ICON-ROW
   ══════════════════════════════════════════════════════════════════ */
.dh-feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.dh-feature-item { text-align: left; }
.dh-feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.dh-feature-item h4 { font-size: 16.5px; margin-bottom: 8px; }
.dh-feature-item p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 900px) { .dh-feature-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dh-feature-row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   ALTERNATING-STRIPS (Về chúng tôi)
   ══════════════════════════════════════════════════════════════════ */
.dh-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.dh-strip:last-child { margin-bottom: 0; }
.dh-strip.reverse .dh-strip-media { order: 2; }
.dh-strip.reverse .dh-strip-text { order: 1; }
.dh-strip-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.dh-strip-media img { width: 100%; height: 100%; object-fit: cover; }
.dh-strip-text h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 16px; }
.dh-strip-text p { color: var(--text-2); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.dh-strip-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.dh-strip-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.dh-strip-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) {
  .dh-strip { grid-template-columns: 1fr; gap: 26px; }
  .dh-strip.reverse .dh-strip-media, .dh-strip.reverse .dh-strip-text { order: unset; }
}

/* ══════════════════════════════════════════════════════════════════
   TIMELINE — quy trình kiểm định
   ══════════════════════════════════════════════════════════════════ */
.dh-timeline { position: relative; max-width: 760px; margin: 0 auto; }
.dh-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.dh-timeline-item { position: relative; padding-left: 66px; margin-bottom: 40px; }
.dh-timeline-item:last-child { margin-bottom: 0; }
.dh-timeline-dot { position: absolute; left: 0; top: 0; width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-1); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; z-index: 1; box-shadow: 0 6px 18px rgba(13,115,119,.3); }
.dh-timeline-item h4 { font-size: 17px; margin-bottom: 6px; }
.dh-timeline-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   HORIZONTAL-SCROLL — dải thương hiệu
   ══════════════════════════════════════════════════════════════════ */
.dh-brand-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.dh-brand-scroll::-webkit-scrollbar { display: none; }
.dh-brand-pill {
  flex-shrink: 0; padding: 14px 26px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
  font-weight: 800; font-size: 14px; letter-spacing: .04em; color: var(--text-2); transition: all .2s;
}
.dh-brand-pill:hover, .dh-brand-pill.active { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.dh-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dh-testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.dh-testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.dh-testi-card p { font-size: 14.5px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.dh-testi-user { display: flex; align-items: center; gap: 12px; }
.dh-testi-user img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.dh-testi-user strong { font-size: 14px; display: block; }
.dh-testi-user span { font-size: 12.5px; color: var(--text-3); }
@media (max-width: 900px) { .dh-testi-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   FAQ — LIST-ELEGANT accordion
   ══════════════════════════════════════════════════════════════════ */
.dh-faq { max-width: 780px; margin: 0 auto; }
.dh-faq-item { border-bottom: 1px solid var(--border); }
.dh-faq-item:first-child { border-top: 1px solid var(--border); }
.dh-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left; font-size: 16px; font-weight: 700; color: var(--text);
}
.dh-faq-q .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-light); color: var(--accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: transform .3s, background .3s, color .3s; }
.dh-faq-item.open .dh-faq-q .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.dh-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.dh-faq-item.open .dh-faq-a { max-height: 400px; }
.dh-faq-a-inner { padding: 0 4px 24px; font-size: 14.5px; color: var(--text-2); line-height: 1.7; max-width: 680px; }

/* ══════════════════════════════════════════════════════════════════
   NEWSLETTER / CTA BAND
   ══════════════════════════════════════════════════════════════════ */
.dh-cta-band { background: var(--gradient-dark); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden; }
.dh-cta-band h3 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px; }
.dh-cta-band p { color: rgba(255,255,255,.65); font-size: 14.5px; max-width: 420px; }
.dh-cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.dh-cta-form input { padding: 14px 18px; border-radius: 11px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; min-width: 240px; }
.dh-cta-form input::placeholder { color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════════════════════
   FILTER TOOLBAR — horizontal, trên lưới sản phẩm (san-pham.html)
   ══════════════════════════════════════════════════════════════════ */
.dh-catalog-header { background: var(--gradient-dark); padding: 150px 0 60px; color: #fff; }
.dh-catalog-header h1 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 10px; }
.dh-catalog-header p { color: rgba(255,255,255,.65); font-size: 14.5px; }
.dh-breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.dh-breadcrumb a { color: rgba(255,255,255,.75); }
.dh-breadcrumb a:hover { color: #fff; }

.dh-toolbar-wrap { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 98px; z-index: 90; }
.dh-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; flex-wrap: wrap; }
.dh-toolbar-filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dh-toolbar-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.dh-result-count { font-size: 13.5px; color: var(--text-2); white-space: nowrap; }

.dh-fdrop { position: relative; }
.dh-fdrop-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); font-size: 13.5px; font-weight: 600; color: var(--text-2); transition: all .2s;
}
.dh-fdrop-btn:hover, .dh-fdrop-btn.active { border-color: var(--accent); color: var(--accent); }
.dh-fdrop-btn svg { width: 13px; height: 13px; transition: transform .2s; }
.dh-fdrop.open .dh-fdrop-btn svg { transform: rotate(180deg); }
.dh-fdrop-badge { background: var(--accent); color: #fff; border-radius: 999px; font-size: 10.5px; padding: 1px 6px; font-weight: 700; }
.dh-fdrop-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 50; min-width: 240px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 16px 40px rgba(14,34,36,.14);
  padding: 16px; display: none;
}
.dh-fdrop.open .dh-fdrop-panel { display: block; }
.dh-fdrop-check { display: flex; align-items: center; gap: 10px; padding: 8px 4px; font-size: 13.5px; cursor: pointer; }
.dh-fdrop-check input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.dh-fdrop-check span { flex: 1; }
.dh-fdrop-check .cnt { color: var(--text-3); font-size: 12px; }
.dh-fdrop-hr { height: 1px; background: var(--border-light); margin: 10px 0; }

.dh-price-range { padding: 6px 4px 2px; }
.dh-price-vals { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.dh-price-range input[type="range"] { width: 100%; accent-color: var(--accent); }

.dh-sort-select {
  padding: 10px 34px 10px 16px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface);
  font-size: 13.5px; font-weight: 600; color: var(--text-2); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2352686a' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}

.dh-mobile-filter-btn { display: none; position: relative; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 700; font-size: 13.5px; }
.dh-mobile-filter-btn .badge { background: #fff; color: var(--accent); border-radius: 999px; font-size: 10.5px; padding: 1px 6px; font-weight: 800; }

/* Active filter chips row */
.dh-chips-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 12px 0 0; }
.dh-chips-row:empty { padding: 0; }
.dh-active-chip { display: flex; align-items: center; gap: 8px; padding: 7px 8px 7px 14px; border-radius: 999px; background: var(--accent-light); color: var(--accent); font-size: 12.5px; font-weight: 600; }
.dh-active-chip button { width: 18px; height: 18px; border-radius: 50%; background: rgba(13,115,119,.15); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.dh-active-chip button:hover { background: var(--accent); color: #fff; }
.dh-clear-all { font-size: 12.5px; font-weight: 700; color: var(--text-2); text-decoration: underline; }
.dh-clear-all:hover { color: var(--danger); }

/* Empty state */
.dh-empty-state { grid-column: 1/-1; text-align: center; padding: 80px 20px; }
.dh-empty-state .ico { font-size: 44px; margin-bottom: 18px; }
.dh-empty-state h3 { font-size: 20px; margin-bottom: 10px; }
.dh-empty-state p { color: var(--text-2); font-size: 14.5px; margin-bottom: 22px; }

/* Pagination */
.dh-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.dh-pagination button {
  min-width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface);
  font-weight: 700; font-size: 14px; color: var(--text-2); transition: all .2s; padding: 0 12px;
}
.dh-pagination button:hover { border-color: var(--accent); color: var(--accent); }
.dh-pagination button.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.dh-pagination button:disabled { opacity: .4; pointer-events: none; }

/* Offcanvas filter mobile */
.dh-offcanvas .offcanvas-header { border-bottom: 1px solid var(--border); }
.dh-offcanvas .offcanvas-title { font-weight: 800; font-size: 17px; }
.dh-off-section { padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.dh-off-section h6 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--text-2); margin-bottom: 12px; }
.dh-off-apply { position: sticky; bottom: 0; background: var(--surface); padding: 16px 0 4px; }

@media (max-width: 991px) {
  .dh-toolbar-filters .dh-fdrop, .dh-toolbar-filters .dh-sort-select { display: none; }
  .dh-mobile-filter-btn { display: flex; }
  .dh-toolbar-right .dh-sort-select { display: block; }
}
@media (max-width: 560px) {
  .dh-toolbar-right { width: 100%; justify-content: space-between; margin-left: 0; }
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════════════════ */
.dh-pd-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; }
.dh-pd-gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; background: var(--accent2-light); margin-bottom: 14px; }
.dh-pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.dh-pd-thumbs { display: flex; gap: 10px; }
.dh-pd-thumb { width: 84px; height: 84px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; opacity: .7; transition: all .2s; }
.dh-pd-thumb.active { border-color: var(--accent); opacity: 1; }
.dh-pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dh-pd-brand { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-mid); margin-bottom: 10px; }
.dh-pd-title { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 14px; }
.dh-pd-meta-row { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.dh-pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.dh-pd-price { font-size: 30px; font-weight: 800; color: var(--accent); }
.dh-pd-price-old { font-size: 17px; color: var(--text-3); text-decoration: line-through; }
.dh-pd-save { background: #fdeceb; color: var(--danger); padding: 4px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 700; }
.dh-pd-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }
.dh-quickfacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 26px; }
.dh-quickfact { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.dh-quickfact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.dh-quickfact .lbl { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }
.dh-quickfact .val { font-size: 13px; font-weight: 700; color: var(--text); }
.dh-pd-actions { display: flex; gap: 12px; margin-bottom: 20px; }
.dh-qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.dh-qty-box button { width: 44px; height: 50px; font-size: 18px; font-weight: 700; color: var(--text-2); }
.dh-qty-box input { width: 46px; height: 50px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-weight: 700; }
.dh-pd-badges { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-2); }
.dh-pd-badges span { display: flex; align-items: center; gap: 6px; }
.dh-pd-badges svg { width: 14px; height: 14px; color: var(--accent); }

.dh-spec-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.dh-spec-table tr { border-bottom: 1px solid var(--border-light); }
.dh-spec-table td { padding: 13px 6px; font-size: 14px; }
.dh-spec-table td:first-child { color: var(--text-2); width: 40%; }
.dh-spec-table td:last-child { font-weight: 700; }

.dh-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--border); margin-bottom: 26px; }
.dh-tab-btn { padding: 14px 4px; font-weight: 700; font-size: 14.5px; color: var(--text-3); position: relative; margin-right: 26px; }
.dh-tab-btn.active { color: var(--text); }
.dh-tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--accent); }
.dh-tab-panel { display: none; }
.dh-tab-panel.active { display: block; }

@media (max-width: 900px) { .dh-pd-wrap { grid-template-columns: 1fr; gap: 30px; } }

/* ══════════════════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════════════════ */
.dh-cart-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: flex-start; }
.dh-cart-item { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.dh-cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 12px; }
.dh-cart-item h4 { font-size: 15px; margin-bottom: 6px; }
.dh-cart-item .meta { font-size: 12.5px; color: var(--text-3); }
.dh-cart-remove { color: var(--text-3); font-size: 18px; }
.dh-cart-remove:hover { color: var(--danger); }
.dh-cart-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; position: sticky; top: 100px; }
.dh-cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.dh-cart-summary-row.total { font-size: 18px; font-weight: 800; color: var(--text); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 14px; }
.dh-cart-empty { text-align: center; padding: 80px 20px; }
.dh-cart-empty .ico { font-size: 50px; margin-bottom: 20px; }
@media (max-width: 860px) { .dh-cart-wrap { grid-template-columns: 1fr; } .dh-cart-item { grid-template-columns: 70px 1fr; grid-template-rows: auto auto; } .dh-cart-item img { width: 70px; height: 70px; } }

/* ══════════════════════════════════════════════════════════════════
   COLLECTIONS PAGE (bo-suu-tap.html)
   ══════════════════════════════════════════════════════════════════ */
.dh-collection-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/9; margin-bottom: 30px; }
.dh-collection-banner img { width: 100%; height: 100%; object-fit: cover; }
.dh-collection-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,27,29,.72) 10%, rgba(7,27,29,.1) 70%); }
.dh-collection-info { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 5vw, 60px); max-width: 560px; }
.dh-collection-info .tag { color: var(--accent-mid); font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.dh-collection-info h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.dh-collection-info p { color: rgba(255,255,255,.72); font-size: 14.5px; margin-bottom: 20px; }
.dh-collection-block { margin-bottom: 80px; }
.dh-collection-block:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER — Dark gradient, glass panel
   ══════════════════════════════════════════════════════════════════ */
#dh-footer { background: var(--gradient-dark); color: rgba(255,255,255,.68); padding: 90px 0 0; position: relative; overflow: hidden; }
.dh-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.dh-footer-brand .dh-logo { color: #fff; margin-bottom: 18px; }
.dh-footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.dh-footer-social { display: flex; gap: 10px; }
.dh-footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.dh-footer-social a:hover { background: var(--accent); }
.dh-footer-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.dh-footer-col a { display: block; font-size: 13.5px; margin-bottom: 12px; transition: color .2s; }
.dh-footer-col a:hover { color: #fff; }
.dh-footer-maps { height: 300px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.1); margin: 44px 0; border: 1px solid rgba(255,255,255,.1); }
.dh-footer-maps iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }
.dh-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; }
.dh-footer-bottom a { margin-left: 18px; }
.dh-footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .dh-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dh-footer-top { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════════
   Zalo float
   ══════════════════════════════════════════════════════════════════ */
.dh-zalo-float { position: fixed; bottom: 26px; right: 26px; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #0068FF; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,104,255,.4); animation: dh-pulse 2.4s infinite; }
.dh-zalo-float svg { width: 28px; height: 28px; }
@keyframes dh-pulse { 0%,100% { box-shadow: 0 10px 26px rgba(0,104,255,.4); } 50% { box-shadow: 0 10px 26px rgba(0,104,255,.7), 0 0 0 10px rgba(0,104,255,.08); } }

/* ══════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════════ */
.dh-legal-header { background: var(--gradient-dark); padding: 150px 0 60px; text-align: center; }
.dh-legal-header h1 { color: #fff; }
.dh-legal-header p { color: rgba(255,255,255,.6); margin-top: 10px; }
.dh-legal-content { max-width: 820px; margin: 0 auto; }
.dh-legal-content h2 { font-size: 21px; margin: 40px 0 14px; }
.dh-legal-content h2:first-child { margin-top: 0; }
.dh-legal-content p { color: var(--text-2); font-size: 14.5px; line-height: 1.8; margin-bottom: 14px; }
.dh-legal-content ul { margin: 12px 0 12px 20px; }
.dh-legal-content li { list-style: disc; color: var(--text-2); font-size: 14.5px; line-height: 1.8; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════ */
.dh-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.dh-contact-form .form-control, .dh-contact-form .form-select { border-radius: 12px; border: 1px solid var(--border); padding: 13px 16px; font-size: 14px; }
.dh-contact-form .form-control:focus, .dh-contact-form .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.dh-contact-form label { font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 8px; display: block; }
.dh-contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; display: flex; gap: 16px; margin-bottom: 16px; }
.dh-contact-info-card svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.dh-contact-info-card h5 { font-size: 14.5px; margin-bottom: 6px; }
.dh-contact-info-card p { font-size: 13.5px; color: var(--text-2); }
@media (max-width: 860px) { .dh-contact-wrap { grid-template-columns: 1fr; } }

/* Generic form control alignment w/ Bootstrap in filter offcanvas */
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.form-check-input:focus { box-shadow: 0 0 0 3px var(--accent-light); border-color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — nav
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .dh-nav-links, .dh-nav-cta { display: none; }
  #dh-burger { display: flex; }
}
@media (max-width: 760px) {
  .dh-hero-slide { grid-template-columns: 1fr; }
  .dh-hero-visual { min-height: 260px; order: -1; }
  .dh-hero-text { padding: 120px 20px 40px; }
  .dh-hero-price-card { bottom: 16px; right: 16px; }
}
