:root {
  --bg: #f7f5ee;
  --surface: #ffffff;
  --header-bg: #fcfbf6;
  --bar: #a41935;
  --wine: #7c1230;
  --wine-dark: #5e0d23;
  --crimson: #c1173d;
  --ink: #1b191d;
  --muted: #7d7880;
  --border: #e6e2d9;
  --rose-gold: #e08e9b;
  --pink-soft: #f9e9ec;
  --green: #2e9e5b;
  --dark: #121013;
  --ph-bg-1: #f1f0ee;
  --ph-bg-2: #e4e2df;
  --shadow-card: 0 1px 2px rgba(30, 20, 25, 0.05), 0 6px 18px rgba(30, 20, 25, 0.05);
  --shadow-float: 0 8px 30px rgba(25, 15, 20, 0.16);
  --radius: 16px;
  --mnav-h: 58px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 120px;
}

button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1108px;
  margin: 0 auto;
  padding: 0 16px;
}

.ph {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--ph-bg-1), var(--ph-bg-2));
  border: 1px dashed #c9c4bc;
  border-radius: 12px;
  color: #a29d96;
  font-size: 12px;
  letter-spacing: 0.4px;
  user-select: none;
  text-align: center;
}

.announcement {
  background: var(--bar);
  color: #fff;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 16px;
  text-align: center;
}
.announcement__icon { width: 18px; height: 18px; flex: none; }
.announcement__text {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: opacity 0.4s ease;
}
.announcement__text.is-fading { opacity: 0; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 66px;
}
.header__menu {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.header__menu svg { width: 24px; height: 24px; }
.header__menu:hover { background: rgba(0, 0, 0, 0.04); }

.brand { display: flex; align-items: center; gap: 8px; }
.brand__icon { width: 30px; height: 30px; object-fit: contain; display: block; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: #2a2026;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.brand__sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 4.2px;
  text-transform: lowercase;
  color: #C78479;
  margin-top: 2px;
}

.header__actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.header__icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.header__icon svg { width: 22px; height: 22px; }
.header__icon:hover { background: rgba(0, 0, 0, 0.04); }
.bag-count {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--crimson);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.hero {
  margin-top: 22px;
  background: linear-gradient(115deg, var(--wine-dark) 0%, var(--wine) 55%, #8d1735 100%);
  border-radius: 22px;
  padding: 42px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  box-shadow: var(--shadow-float);
}
.hero__content { max-width: 460px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
}
.hero__badge svg { width: 13px; height: 13px; color: #ffd27d; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.12;
  margin: 16px 0 12px;
}
.hero__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 400px;
}
.hero__cta {
  display: inline-block;
  margin-top: 22px;
  background: #fff;
  color: var(--wine);
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hero__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25); }
.hero__media { flex: none; }
.ph--hero {
  width: 218px;
  height: 228px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fdfdfd, #ececec);
  border: 1px dashed #c9c4bc;
  color: #a29d96;
}
.hero__img {
  width: 218px;
  height: 228px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #fff;
}

.cats {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 30px auto 6px;
  flex-wrap: wrap;
}
.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 76px;
}
.cat__circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--pink-soft);
  color: var(--crimson);
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cat__circle svg { width: 24px; height: 24px; }
.cat:hover .cat__circle { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(160, 25, 55, 0.15); }
.cat__circle--dark { background: var(--dark); color: #fff; }
.cat__label { font-size: 12px; font-weight: 500; color: #3a353c; }

.guarantee {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.guarantee__icon {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--green);
}
.guarantee__icon svg { width: 26px; height: 26px; }
.guarantee__text { display: flex; flex-direction: column; gap: 1px; }
.guarantee__text strong { font-size: 13.5px; font-weight: 600; }
.guarantee__text span { font-size: 12.5px; color: var(--muted); }

.occasions { margin-top: 26px; }
.occasions__title { font-size: 14.5px; font-weight: 600; margin-bottom: 12px; }
.occasions__row { display: flex; gap: 10px; flex-wrap: wrap; }
.occasion {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.occasion:hover { border-color: var(--crimson); box-shadow: 0 4px 10px rgba(160, 25, 55, 0.08); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 34px 0 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 27px;
  color: #241f26;
}
.section-link { color: var(--crimson); font-size: 13px; font-weight: 500; }
.section-link:hover { text-decoration: underline; }

.featured__row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.featured__row::-webkit-scrollbar { display: none; }
.featured__row .product-card {
  flex: 0 0 172px;
  scroll-snap-align: start;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  scroll-margin-top: 84px;
}
.search {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1.6px solid #26222a;
  border-radius: 999px;
  padding: 9px 16px;
  width: min(320px, 100%);
  background: transparent;
}
.search svg { width: 17px; height: 17px; color: #4c474f; flex: none; }
.search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  width: 100%;
  color: var(--ink);
}
.search input::placeholder { color: #8d8890; }

.sort { position: relative; }
.sort__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
}
.sort__btn svg { width: 15px; height: 15px; }
.sort__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-float);
  list-style: none;
  min-width: 160px;
  overflow: hidden;
  z-index: 40;
}
.sort__menu li { padding: 10px 16px; font-size: 13px; cursor: pointer; }
.sort__menu li:hover { background: #f6f2f3; }
.sort__menu li.is-active { color: var(--crimson); font-weight: 600; }

.chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #3a353c;
  transition: all 0.15s ease;
}
.chip:hover { border-color: #cfc9bf; }
.chip.is-active {
  background: #b01d3f;
  border-color: #b01d3f;
  color: #fff;
}

.catalog-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 30px 0 4px;
}
.catalog-head__count { font-size: 12.5px; color: var(--muted); }

.cat-section { scroll-margin-top: 84px; }
.cat-section__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 26px 0 16px;
}
.cat-section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 23px;
  color: #241f26;
}
.cat-section__count { font-size: 12px; color: var(--muted); }

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

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(30, 20, 25, 0.06), 0 12px 28px rgba(30, 20, 25, 0.09);
}
.product-card--link { cursor: pointer; }
.product-card__media {
  position: relative;
  margin: 7px 7px 0;
}
.product-card__media .ph { aspect-ratio: 1 / 1; width: 100%; }
.product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  background: #ededec;
}
.product-card--sold .product-card__media .ph,
.product-card--sold .product-card__media img {
  opacity: 0.45;
  filter: grayscale(1);
}
.soldout-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.product-card__info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  color: var(--crimson);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.product-card__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #262229;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.product-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card__price {
  color: var(--crimson);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.product-card__add {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease, background 0.12s ease;
}
.product-card__add svg { width: 16px; height: 16px; }
.product-card__add:hover { background: #000; }
.product-card__add:active { transform: scale(0.9); }
.product-card__add.is-added { animation: pop 0.35s ease; }
@keyframes pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); background: var(--crimson); }
  100% { transform: scale(1); }
}
.product-card__unavailable {
  font-size: 12px;
  color: #9a959d;
}

.no-results {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
  font-size: 14px;
}

.footer {
  margin-top: 56px;
  background: #fbfaf5;
  border-top: 1px solid var(--border);
  padding: 36px 0 44px;
}
.brand--footer { margin-bottom: 20px; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-bottom: 22px;
}
.footer__links a { font-size: 13px; color: #47424a; }
.footer__links a:hover { color: var(--crimson); }
.footer__legal p { font-size: 12.5px; color: #5b565e; margin-bottom: 3px; }
.footer__legal a { color: var(--crimson); }
.footer__legal a:hover { text-decoration: underline; }
.footer__note { color: #8d8890 !important; }

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  width: min(400px, calc(100% - 28px));
  justify-content: space-between;
}
.bottom-nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #55505a;
  font-size: 11px;
  padding: 4px 8px 8px;
}
.bottom-nav__item svg { width: 21px; height: 21px; }
.bottom-nav__item.is-active { color: #b01d3f; font-weight: 500; }
.bottom-nav__dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b01d3f;
}

.cookies {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 88px;
  z-index: 55;
  width: min(620px, calc(100% - 28px));
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookies p { font-size: 12.5px; color: #47424a; }
.cookies a { color: var(--crimson); font-weight: 500; }
.cookies a:hover { text-decoration: underline; }
.cookies__btn {
  flex: none;
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
}
.cookies__btn:hover { background: #000; }

body.modal-open { overflow: hidden; }
.added-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(30, 20, 25, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.added-modal {
  background: #fff;
  border-radius: 22px;
  width: min(440px, 100%);
  padding: 20px 20px 22px;
  box-shadow: 0 24px 60px rgba(20, 10, 15, 0.28);
  animation: added-pop 0.22s ease;
}
@keyframes added-pop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.added-modal__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.added-modal__check {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: #1e9e50;
  color: #fff;
  display: grid;
  place-items: center;
}
.added-modal__check svg { width: 14px; height: 14px; }
.added-modal__head strong {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-right: auto;
}
.added-modal__close {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #8d8890;
}
.added-modal__close:hover { color: var(--ink); background: rgba(0, 0, 0, 0.05); }
.added-modal__close svg { width: 17px; height: 17px; }

.added-modal__items {
  border: 1px solid #eeebe4;
  border-radius: 14px;
  margin: 16px 0 18px;
  overflow: hidden;
}
.added-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border-bottom: 1px solid #f2efe9;
}
.added-item:last-child { border-bottom: none; }
.added-item__img,
.added-item .ph {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 8px;
  object-fit: cover;
  font-size: 8px;
}
.added-item__info { min-width: 0; }
.added-item__name {
  font-size: 14px;
  font-weight: 500;
  color: #262229;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.added-item__price {
  display: block;
  margin-top: 2px;
  color: var(--crimson);
  font-size: 14px;
  font-weight: 600;
}

.added-modal__go {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--dark);
  color: #fff;
  border-radius: 15px;
  font-size: 14.5px;
  font-weight: 600;
}
.added-modal__go:hover { background: #000; }
.added-modal__continue {
  margin-top: 12px;
  width: 100%;
  height: 48px;
  background: #fcedef;
  color: var(--crimson);
  border-radius: 15px;
  font-size: 14.5px;
  font-weight: 600;
}
.added-modal__continue:hover { background: #f9e2e6; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 12, 15, 0.2);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--header-bg);
  z-index: 71;
  transform: translateX(-103%);

  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(25, 15, 20, 0.18);
}
.drawer.is-open {
  transform: none;
  visibility: visible;
  transition: transform 0.3s ease;
}

.drawer__head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.drawer__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.drawer__close svg { width: 20px; height: 20px; }
.drawer__close:hover { background: rgba(0, 0, 0, 0.05); }

.drawer__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 18px 26px;
}
.drawer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8d8890;
  margin: 24px 0 12px;
}
.drawer__label:first-child { margin-top: 0; }

.drawer__list { display: flex; flex-direction: column; gap: 10px; }
.drawer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.drawer__item:hover {
  border-color: #d9d3c9;
  box-shadow: 0 4px 12px rgba(30, 20, 25, 0.06);
}
.drawer__item-icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  background: var(--pink-soft);
  color: var(--crimson);
  display: grid;
  place-items: center;
}
.drawer__item-icon svg { width: 20px; height: 20px; }
.drawer__item-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.drawer__item-count { font-size: 12.5px; color: #8d8890; }
.drawer__item-chev { width: 16px; height: 16px; color: #c6c1ba; flex: none; }

.drawer__chips { display: flex; flex-wrap: wrap; gap: 10px; }

.drawer__account { display: flex; flex-direction: column; }
.drawer__account a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.drawer__account a:hover { color: var(--crimson); }
.drawer__account svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--crimson);
}

.drawer__footer {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 14px;
  font-size: 11.5px;
  color: #8d8890;
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 36px; }
  .hero__title { font-size: 36px; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .hero__title { font-size: 31px; }
  .hero__media { width: 100%; display: flex; justify-content: center; }
  .ph--hero { width: 100%; max-width: 320px; height: 190px; }
  .hero__img { width: 100%; max-width: 320px; height: 190px; }
  .cats { gap: 14px; justify-content: space-between; }
  .cat { width: 62px; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .search { width: 100%; }
  .sort { align-self: flex-end; }
  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip { white-space: nowrap; flex: none; }

  .occasions__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .occasions__row::-webkit-scrollbar { display: none; }
  .occasion { flex: none; white-space: nowrap; }
  .section-title { font-size: 23px; }
  .cat-section__title { font-size: 20px; }
  .featured__row .product-card { flex-basis: 158px; }
  .announcement__text { font-size: 11.5px; }
  .footer__links { gap: 6px 16px; }

  .bottom-nav {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    gap: 0;
    justify-content: space-around;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 12px rgba(25, 15, 20, 0.06);
    padding: 0 4px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 6px);
    min-height: calc(var(--mnav-h) + env(safe-area-inset-bottom, 0px) + 6px);
  }
  .bottom-nav__item {
    flex: 1;
    justify-content: center;
    padding: 8px 4px;
    gap: 3px;
    font-size: 10.5px;
  }
}

@media (max-width: 420px) {
  .brand__name { font-size: 18px; }
  .hero__title { font-size: 27px; }
  .product-card__name { font-size: 12px; }
  .product-card__price { font-size: 13.5px; }
  .product-card__add { width: 32px; height: 32px; border-radius: 10px; }
  .bottom-nav__item { font-size: 10px; }
  .cookies { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookies__btn { align-self: flex-end; }
}
