/* ══ SHOP ĐỒ GIA DỤNG — style.css ══ */
/* Font: Fraunces 500 (heading upright) + Karla 400/500 (body) */
/* Tone: Warm-light | Identity: WARM-ARTISAN variant | Prefix: dg- */
/* Màu: Terracotta #b5651d + Sage #87a06b — KHÁC shop-rau-xanh (#a67a3c + #7d7a4a) */

/* ── 1. CSS Custom Properties ── */
:root {
  --bg:            #fdf8f3;
  --surface:       #ffffff;
  --warm:          #f5ede0;
  --warm2:         #ede0ce;
  --dark:          #1c1510;
  --dark2:         #271e16;
  --border:        #e5d8c8;
  --border-light:  #f0e8dc;
  --text:          #1f1714;
  --text-2:        #6b5a4e;
  --text-3:        #a89282;
  --accent:        #b5651d;
  --accent-h:      #9a5418;
  --accent-light:  #fdf0e6;
  --accent-mid:    #c9783a;
  --sage:          #87a06b;
  --sage-h:        #739659;
  --sage-light:    #f2f6ee;
  --serif:         'Fraunces', Georgia, serif;
  --sans:          'Karla', system-ui, sans-serif;
  --nav-h:         68px;
  --topbar-h:      38px;
  --radius-card:   10px;
  --radius-btn:    6px;
  --shadow-card:   0 2px 16px rgba(181,101,29,.07);
  --shadow-hover:  0 8px 32px rgba(181,101,29,.13);
  --transition:    all .22s ease;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--nav-h) + var(--topbar-h));
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--sans); }
input, select, textarea { font-family: var(--sans); }
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); font-weight: 500; line-height: 1.25; color: var(--text); }

/* ── 3. Layout ── */
.dg-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
}
.dg-container--narrow { max-width: 760px; }
.sec-pad { padding: clamp(56px, 8vw, 96px) 0; }

/* ── 4. Topbar ── */
#dg-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .3px;
  gap: 0;
}
.dg-topbar__items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.dg-topbar__item {
  padding: 0 16px;
  position: relative;
  white-space: nowrap;
}
.dg-topbar__item + .dg-topbar__item::before {
  content: '·';
  position: absolute;
  left: 0;
  opacity: .6;
}

/* ── 5. Navigation ── */
#dg-nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--warm);
  border-bottom: 3px solid var(--accent);
  height: var(--nav-h);
}
.dg-nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dg-nav__logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -.3px;
  flex-shrink: 0;
  line-height: 1;
}
.dg-nav__logo span { color: var(--sage); }
.dg-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dg-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.dg-nav__links a:hover,
.dg-nav__links a.active { color: var(--accent); background: var(--accent-light); }
.dg-nav__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.dg-nav__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: var(--transition);
  position: relative;
}
.dg-nav__icon-btn:hover { color: var(--accent); background: var(--accent-light); }
.dg-cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

/* Search panel */
#dg-search-panel {
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0;
  right: 0;
  z-index: 198;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}
#dg-search-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.dg-search-panel__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 8px;
}
.dg-search-panel__input {
  flex: 1;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0 14px;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.dg-search-panel__input:focus { border-color: var(--accent); }
.dg-search-panel__btn {
  height: 42px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.dg-search-panel__btn:hover { background: var(--accent-h); }

/* Mobile nav */
#dg-nav-mob {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--surface);
  z-index: 300;
  padding: 72px 24px 32px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
#dg-nav-mob.open { transform: translateX(0); }
.dg-nav-mob__links { display: flex; flex-direction: column; gap: 4px; }
.dg-nav-mob__links a {
  display: block;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-btn);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.dg-nav-mob__links a:hover,
.dg-nav-mob__links a.active { color: var(--accent); background: var(--accent-light); }
#dg-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.35);
  z-index: 299; opacity: 0; pointer-events: none; transition: opacity .3s;
}
#dg-nav-overlay.open { opacity: 1; pointer-events: all; }
#dg-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
}
#dg-nav-close:hover { background: var(--warm); color: var(--accent); }

/* Hamburger */
.dg-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.dg-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── 6. Search Zone (Homepage Hero replacement — Biến thể 2) ── */
#dg-search-zone {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 7vw, 72px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#dg-search-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(181,101,29,.04) 24px, rgba(181,101,29,.04) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(181,101,29,.04) 24px, rgba(181,101,29,.04) 25px);
  pointer-events: none;
}
.dg-search-zone__content { position: relative; }
.dg-search-zone__h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.5px;
}
.dg-search-zone__h1 em { font-style: normal; color: var(--accent); }
.dg-search-zone__sub {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.dg-search-zone__form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 5px 5px 5px 22px;
  box-shadow: 0 4px 20px rgba(181,101,29,.10);
  transition: border-color .2s, box-shadow .2s;
}
.dg-search-zone__form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(181,101,29,.18);
}
.dg-search-zone__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: var(--text);
  min-width: 0;
}
.dg-search-zone__input::placeholder { color: var(--text-3); }
.dg-search-zone__submit {
  background: var(--accent);
  color: #fff;
  border-radius: 40px;
  padding: 0 22px;
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .2s;
  flex-shrink: 0;
}
.dg-search-zone__submit:hover { background: var(--accent-h); }
.dg-search-zone__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.dg-search-zone__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  transition: var(--transition);
}
.dg-search-zone__cat:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ── 7. Homepage Sections ── */
.dg-section { padding: clamp(40px, 6vw, 64px) 0; }
.dg-section + .dg-section { border-top: 1px solid var(--border-light); }
.dg-section--alt { background: var(--warm); }
.dg-section__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dg-section__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.dg-section__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
.dg-section__search {
  margin-left: auto;
  position: relative;
}
.dg-section__search-input {
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 0 36px 0 14px;
  font-size: 13.5px;
  width: 200px;
  background: var(--surface);
  outline: none;
  color: var(--text);
  transition: border-color .2s, width .3s;
}
.dg-section__search-input:focus {
  border-color: var(--accent);
  width: 240px;
}
.dg-section__search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.dg-section__see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dg-section__see-all:hover { color: var(--accent-h); }
.dg-section__empty {
  text-align: center;
  padding: 40px;
  color: var(--text-3);
  font-size: 15px;
  display: none;
}

/* ── 8. Product Grid & Cards ── */
.dg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.dg-grid--4 { grid-template-columns: repeat(4, 1fr); }
.dg-grid--3 { grid-template-columns: repeat(3, 1fr); }

.dg-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--border-light);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
  box-shadow: var(--shadow-card);
}
.dg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent);
}
.dg-card__img-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.dg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.dg-card:hover .dg-card__img { transform: scale(1.05); }
.dg-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.dg-badge--hot { background: var(--accent); color: #fff; }
.dg-badge--sale { background: #e04a2e; color: #fff; }
.dg-badge--new { background: var(--sage); color: #fff; }

.dg-card__body { padding: 14px 16px 16px; }
.dg-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 5px;
}
.dg-card__name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.35;
}
.dg-card__name a { color: var(--text); transition: color .2s; }
.dg-card__name a:hover { color: var(--accent); }
.dg-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.dg-card__stars { color: #e8871e; font-size: 12px; letter-spacing: -1px; }
.dg-card__sold { font-size: 12px; color: var(--text-3); }
.dg-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dg-card__prices { display: flex; flex-direction: column; gap: 1px; }
.dg-price {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}
.dg-price--sale { color: var(--accent); }
.dg-price--old {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  text-decoration: line-through;
}

/* ── 9. Buttons ── */
.dg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-btn);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.dg-btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 11px 22px;
}
.dg-btn--primary:hover { background: var(--accent-h); }
.dg-btn--outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 10px 22px;
}
.dg-btn--outline:hover { background: var(--accent-light); }
.dg-btn--sage {
  background: var(--sage);
  color: #fff;
  padding: 11px 22px;
}
.dg-btn--sage:hover { background: var(--sage-h); }
.dg-btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  padding: 10px 22px;
}
.dg-btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.dg-btn--cart {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--text-2);
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.dg-btn--cart:hover,
.dg-btn--cart.dg-btn--added {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.dg-btn--lg { padding: 13px 30px; font-size: 16px; }
.dg-btn--sm { padding: 7px 14px; font-size: 13px; }

/* ── 10. Filter Toolbar (san-pham.html) ── */
.dg-filter-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.dg-filter-bar__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.dg-filter-bar__row + .dg-filter-bar__row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-light); }

/* Category pills */
.dg-cat-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.dg-cat-pill {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.dg-cat-pill:hover { border-color: var(--accent); color: var(--accent); }
.dg-cat-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Filter dropdowns */
.dg-filter-dropdown { position: relative; }
.dg-filter-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.dg-filter-dropdown__btn:hover,
.dg-filter-dropdown__btn.open { border-color: var(--accent); color: var(--accent); }
.dg-filter-dropdown__btn .dg-count {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 16px; height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dg-filter-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  z-index: 100;
  padding: 8px 0;
  display: none;
}
.dg-filter-dropdown__menu.open { display: block; }
.dg-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-2);
  transition: background .15s;
}
.dg-filter-option:hover { background: var(--accent-light); color: var(--accent); }
.dg-filter-option input[type="checkbox"] { accent-color: var(--accent); width: 15px; height: 15px; flex-shrink: 0; }
.dg-filter-option input[type="checkbox"]:checked + span { color: var(--accent); font-weight: 600; }

/* Price range */
.dg-price-range { display: flex; align-items: center; gap: 10px; padding: 10px 16px 14px; }
.dg-price-range input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
  height: 4px;
  cursor: pointer;
}
.dg-price-range__vals { font-size: 12.5px; color: var(--text-2); white-space: nowrap; min-width: 80px; text-align: right; }

/* Sort */
.dg-sort-select {
  margin-left: auto;
  padding: 7px 32px 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89282' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  outline: none;
  transition: border-color .2s;
}
.dg-sort-select:focus { border-color: var(--accent); }

/* Result count */
.dg-result-count {
  font-size: 13px;
  color: var(--text-3);
  margin-left: auto;
  white-space: nowrap;
}

/* Active chips */
.dg-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 10px 0 2px;
}
.dg-active-chips:empty { display: none; }
.dg-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--accent-light);
  border: 1px solid rgba(181,101,29,.2);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
}
.dg-chip:hover { background: var(--accent); color: #fff; }
.dg-chip__x { font-size: 14px; line-height: 1; }
.dg-clear-all {
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  cursor: pointer;
  margin-left: 4px;
  transition: color .2s;
  background: none;
  border: none;
  padding: 4px 8px;
}
.dg-clear-all:hover { color: var(--accent); }

/* Mobile filter toggle */
.dg-filter-mob-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
}
.dg-filter-mob-btn .dg-count {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 16px; height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Empty state */
.dg-empty-state {
  text-align: center;
  padding: 60px 20px;
  display: none;
}
.dg-empty-state__icon { font-size: 48px; margin-bottom: 14px; opacity: .4; }
.dg-empty-state__text { font-size: 16px; color: var(--text-2); margin-bottom: 16px; }

/* ── 11. Pagination ── */
.dg-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.dg-pagination ul { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; justify-content: center; }
.dg-pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  cursor: pointer;
  transition: var(--transition);
  padding: 0 10px;
}
.dg-pagination .page-item .page-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.dg-pagination .page-item.active .page-link { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── 12. Offcanvas Mobile Filter ── */
.dg-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--surface);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.dg-offcanvas.open { transform: translateX(0); }
.dg-offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.dg-offcanvas__title { font-family: var(--serif); font-size: 18px; }
.dg-offcanvas__close { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-2); }
.dg-offcanvas__close:hover { background: var(--warm); color: var(--accent); }
.dg-offcanvas__body { flex: 1; padding: 20px; overflow-y: auto; }
.dg-offcanvas__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  bottom: 0;
}
.dg-offcanvas-group { margin-bottom: 24px; }
.dg-offcanvas-group__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.dg-offcanvas-options { display: flex; flex-direction: column; gap: 2px; }
.dg-offcanvas__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 399;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.dg-offcanvas__overlay.open { opacity: 1; pointer-events: all; }

/* ── 13. Product Detail Page ── */
.dg-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.dg-detail-gallery__main {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--warm);
}
.dg-detail-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.dg-detail-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; }
.dg-detail-gallery__thumb {
  width: 68px; height: 68px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
  flex-shrink: 0;
}
.dg-detail-gallery__thumb:hover,
.dg-detail-gallery__thumb.active { border-color: var(--accent); }
.dg-detail-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.dg-detail-info__cat {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.dg-detail-info__name {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.dg-detail-info__meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.dg-detail-info__stars { color: #e8871e; font-size: 14px; }
.dg-detail-info__rating-text { font-size: 13px; color: var(--text-3); }
.dg-detail-info__sold { font-size: 13px; color: var(--text-3); }
.dg-detail-info__prices { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.dg-detail-info__price {
  font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--accent);
}
.dg-detail-info__old {
  font-size: 18px; color: var(--text-3); text-decoration: line-through;
}
.dg-detail-info__desc { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.dg-detail-info__divider { border: none; border-top: 1px solid var(--border-light); margin: 18px 0; }
.dg-detail-info__label { font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.dg-detail-actions { display: flex; gap: 10px; align-items: center; margin-top: 24px; flex-wrap: wrap; }
.dg-qty-control {
  display: flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-btn); overflow: hidden; flex-shrink: 0;
}
.dg-qty-btn {
  width: 38px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-2);
  background: var(--bg);
  transition: var(--transition);
}
.dg-qty-btn:hover { color: var(--accent); background: var(--accent-light); }
.dg-qty-input {
  width: 48px; height: 44px;
  text-align: center;
  border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  font-size: 15px; font-weight: 600; color: var(--text);
  background: var(--surface); outline: none;
}
.dg-detail-trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.dg-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--text-2);
}
.dg-trust-item svg { color: var(--sage); flex-shrink: 0; }

/* Breadcrumb */
.dg-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 0; margin-bottom: 6px;
  font-size: 13px; color: var(--text-3);
  flex-wrap: wrap;
}
.dg-breadcrumb a { color: var(--text-3); transition: color .2s; }
.dg-breadcrumb a:hover { color: var(--accent); }
.dg-breadcrumb__sep { opacity: .5; }

/* ── 14. Cart Page ── */
.dg-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.dg-cart-table { width: 100%; border-collapse: collapse; }
.dg-cart-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 0 14px;
  border-bottom: 1.5px solid var(--border);
}
.dg-cart-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 14px;
  align-items: center;
}
.dg-cart-item__img {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--warm);
  flex-shrink: 0;
}
.dg-cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.dg-cart-item__name { font-family: var(--serif); font-size: 15px; font-weight: 500; }
.dg-cart-item__cat { font-size: 12px; color: var(--text-3); margin-top: 3px; }
.dg-cart-item__remove {
  font-size: 13px; color: var(--text-3);
  cursor: pointer; padding: 4px 8px;
  border-radius: 4px; transition: var(--transition);
  background: none; border: none;
}
.dg-cart-item__remove:hover { color: #e04a2e; background: #fdf0f0; }
.dg-cart-summary {
  background: var(--warm);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--nav-h) + var(--topbar-h) + 20px);
}
.dg-cart-summary__title { font-family: var(--serif); font-size: 20px; margin-bottom: 18px; }
.dg-cart-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-2);
}
.dg-cart-summary__row:last-of-type { border-bottom: none; }
.dg-cart-summary__row--total {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.dg-coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.dg-coupon-input {
  flex: 1; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0 12px;
  font-size: 14px;
  background: var(--surface);
  outline: none;
  transition: border-color .2s;
}
.dg-coupon-input:focus { border-color: var(--accent); }

/* ── 15. Collection Page (bo-suu-tap.html) ── */
.dg-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.dg-bento__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm);
  aspect-ratio: 1;
  cursor: pointer;
}
.dg-bento__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.dg-bento__item--tall { grid-row: span 2; aspect-ratio: auto; }
.dg-bento__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dg-bento__item:hover .dg-bento__img { transform: scale(1.06); }
.dg-bento__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,21,16,.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  transition: background .3s;
}
.dg-bento__item:hover .dg-bento__overlay { background: linear-gradient(to top, rgba(28,21,16,.8) 0%, transparent 50%); }
.dg-bento__label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 4px;
}
.dg-bento__title { font-family: var(--serif); font-size: 20px; color: #fff; margin-bottom: 8px; }
.dg-bento__cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
  transition: color .2s;
}
.dg-bento__item:hover .dg-bento__cta { color: #fff; }

/* ── 16. About Page (ve-chung-toi.html) ── */
.dg-about-hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: flex-end;
  padding: clamp(48px, 8vw, 80px) 0;
  overflow: hidden;
  background: var(--dark2);
}
.dg-about-hero__bg {
  position: absolute; inset: 0;
}
.dg-about-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.dg-about-hero__content { position: relative; }
.dg-about-hero__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent-mid); margin-bottom: 10px;
}
.dg-about-hero__h1 { font-size: clamp(30px, 5vw, 52px); color: #fff; margin-bottom: 16px; }
.dg-about-hero__sub { font-size: 16px; color: rgba(255,255,255,.7); max-width: 560px; }

.dg-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.dg-story--reverse .dg-story__img { order: 2; }
.dg-story--reverse .dg-story__text { order: 1; }
.dg-story__img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.dg-story__img img { width: 100%; height: 100%; object-fit: cover; }
.dg-story__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.dg-story__title { font-size: clamp(22px, 3vw, 32px); margin-bottom: 14px; }
.dg-story__text-body { font-size: 15px; color: var(--text-2); line-height: 1.75; }

.dg-stat-bar {
  background: var(--accent);
  padding: clamp(40px, 6vw, 64px) 0;
}
.dg-stat-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.dg-stat-bar__num {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.dg-stat-bar__label { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 500; }

.dg-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dg-value-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--sage);
  padding: 24px 20px;
  text-align: center;
}
.dg-value-icon {
  width: 56px; height: 56px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.dg-value-title { font-family: var(--serif); font-size: 17px; margin-bottom: 8px; }
.dg-value-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

.dg-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dg-testimonial {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.dg-testimonial__stars { color: #e8871e; margin-bottom: 12px; font-size: 15px; }
.dg-testimonial__text { font-size: 14.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.dg-testimonial__author { display: flex; align-items: center; gap: 10px; }
.dg-testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--warm);
}
.dg-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.dg-testimonial__name { font-size: 14px; font-weight: 600; color: var(--text); }
.dg-testimonial__role { font-size: 12px; color: var(--text-3); }

.dg-policy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dg-policy-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 20px;
  border: 1px solid var(--border-light);
}
.dg-policy-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 20px;
}
.dg-policy-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.dg-policy-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.dg-about-cta {
  background: var(--dark);
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
}
.dg-about-cta__title { font-size: clamp(24px, 4vw, 38px); color: #fff; margin-bottom: 14px; }
.dg-about-cta__sub { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 28px; }

/* ── 17. Contact Page ── */
.dg-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 64px); }
.dg-contact-info__title { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 14px; }
.dg-contact-info__sub { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.dg-contact-items { display: flex; flex-direction: column; gap: 18px; }
.dg-contact-item { display: flex; align-items: flex-start; gap: 14px; }
.dg-contact-item__icon {
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.dg-contact-item__title { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.dg-contact-item__value { font-size: 15px; color: var(--text); }

.dg-contact-form { background: var(--surface); border-radius: var(--radius-card); padding: clamp(24px, 4vw, 40px); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.dg-form-title { font-family: var(--serif); font-size: 22px; margin-bottom: 22px; }
.dg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dg-form-group { margin-bottom: 16px; }
.dg-form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.dg-form-input,
.dg-form-select,
.dg-form-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-size: 14.5px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}
.dg-form-input:focus,
.dg-form-select:focus,
.dg-form-textarea:focus { border-color: var(--accent); }
.dg-form-textarea { min-height: 130px; resize: vertical; }

/* ── 18. Legal Pages ── */
.dg-legal { max-width: 760px; margin: 0 auto; }
.dg-legal h2 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; color: var(--text); }
.dg-legal h3 { font-size: 17px; margin-top: 22px; margin-bottom: 10px; color: var(--text); }
.dg-legal p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.dg-legal ul { padding-left: 20px; margin-bottom: 14px; list-style: disc; }
.dg-legal ul li { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 6px; }
.dg-legal a { color: var(--accent); }
.dg-legal a:hover { text-decoration: underline; }
.dg-legal__date { font-size: 13px; color: var(--text-3); margin-bottom: 28px; }

/* ── 19. Page Hero (generic, for inner pages) ── */
.dg-page-hero {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 5vw, 52px) 0;
}
.dg-page-hero__label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.dg-page-hero__title { font-size: clamp(26px, 4vw, 40px); font-weight: 500; margin-bottom: 8px; }
.dg-page-hero__sub { font-size: 15px; color: var(--text-2); max-width: 540px; }

/* ── 20. Footer ── */
#dg-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  margin-top: clamp(48px, 8vw, 96px);
}
.dg-footer__main {
  padding: clamp(48px, 7vw, 72px) 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.dg-footer__brand .dg-nav__logo { color: rgba(255,255,255,.92); font-size: 24px; margin-bottom: 14px; }
.dg-footer__brand .dg-nav__logo span { color: var(--sage); }
.dg-footer__tagline { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 18px; max-width: 240px; }
.dg-footer__socials { display: flex; gap: 8px; }
.dg-footer__social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: var(--transition);
}
.dg-footer__social:hover { background: var(--accent); color: #fff; }
.dg-footer__col-title {
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.dg-footer__links { display: flex; flex-direction: column; gap: 8px; }
.dg-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.dg-footer__links a:hover { color: #fff; }
.dg-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.dg-footer__copy { color: rgba(255,255,255,.4); }
.dg-footer__legal { display: flex; gap: 20px; }
.dg-footer__legal a { color: rgba(255,255,255,.4); transition: color .2s; }
.dg-footer__legal a:hover { color: rgba(255,255,255,.75); }

/* ── 21. Zalo Float ── */
.dg-zalo-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 52px; height: 52px;
  background: #0068FF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,104,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.dg-zalo-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,104,255,.45); }
.dg-zalo-float img { width: 32px; height: 32px; }
.dg-zalo-float svg { color: #fff; }

/* ── 22. Reveal animations ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ── 23. Utility ── */
.text-accent { color: var(--accent); }
.text-sage { color: var(--sage); }
.text-muted { color: var(--text-3); }
.bg-warm { background: var(--warm); }
.bg-surface { background: var(--surface); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* ── 24. Responsive ── */
@media (max-width: 1024px) {
  .dg-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .dg-footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .dg-stat-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .dg-values { grid-template-columns: repeat(2, 1fr); }
  .dg-policy-row { grid-template-columns: repeat(2, 1fr); }
  .dg-testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .dg-nav__links { display: none; }
  .dg-hamburger { display: flex; }
  .dg-grid--4,
  .dg-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .dg-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dg-filter-bar .dg-filter-bar__row.desktop-filters { display: none; }
  .dg-filter-mob-btn { display: flex; }
  .dg-sort-select { display: block; }
  .dg-cart-layout { grid-template-columns: 1fr; }
  .dg-detail-grid { grid-template-columns: 1fr; }
  .dg-story { grid-template-columns: 1fr; gap: 24px; }
  .dg-story--reverse .dg-story__img { order: 0; }
  .dg-story--reverse .dg-story__text { order: 0; }
  .dg-contact-grid { grid-template-columns: 1fr; }
  .dg-form-row { grid-template-columns: 1fr; }
  .dg-bento { grid-template-columns: 1fr 1fr; }
  .dg-bento__item--wide { grid-column: span 2; }
  .dg-bento__item--tall { grid-row: span 1; aspect-ratio: 1; }
  .dg-footer__main { grid-template-columns: 1fr; gap: 28px; }
  .dg-testimonials { grid-template-columns: 1fr; }
  .dg-section__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dg-section__search { margin-left: 0; }
  .dg-section__search-input { width: 100%; }
  .dg-section__search-input:focus { width: 100%; }
  .dg-cart-item { grid-template-columns: 60px 1fr; }
  .dg-search-zone__cats { display: none; }
}

@media (max-width: 480px) {
  .dg-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dg-detail-gallery__thumbs { flex-wrap: nowrap; overflow-x: auto; }
  .dg-values { grid-template-columns: 1fr; }
  .dg-policy-row { grid-template-columns: 1fr; }
  .dg-topbar__items { gap: 0; }
  .dg-topbar__item:nth-child(3) { display: none; }
  .dg-bento { grid-template-columns: 1fr; }
  .dg-bento__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .dg-stat-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
