/* Flowers Love — Design System */
@font-face {
  font-family: "Tomato Caps";
  src: url("../fonts/Tomato-Caps.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rasedia";
  src: url("../fonts/Rasedia-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #7fab6e;
  --brand-dark: #5f8a52;
  --brand-soft: #e8f2e4;
  --brand-muted: #a8c79a;
  --ink: #1f2a1c;
  --ink-soft: #4a5a45;
  --muted: #6b7a66;
  --paper: #fcfcfc;
  --white: #ffffff;
  --line: rgba(31, 42, 28, 0.1);
  --sale: #c45c4a;
  --old-price: #8a9686;
  --shadow: 0 12px 40px rgba(31, 42, 28, 0.08);
  --radius: 7px;
  --radius-sm: 7px;
  --max: 1200px;
  --font-display: "Tomato Caps", "Noto Sans Georgian", sans-serif;
  --font-body: "Tomato Caps", "Noto Sans Georgian", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: #fcfcfc;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Mobile call bar — visible only below site breakpoint */
.mobile-call-bar {
  display: none;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.25s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Rasedia", var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--ink);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(127, 171, 110, 0.35);
}

.logo-mark i {
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 120;
  margin-left: auto;
}

.header-search {
  position: relative;
}

.header-search-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.1rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.header-search-toggle:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.header-search-panel {
  position: relative;
}

.header-search-form {
  display: flex;
  align-items: center;
  width: 280px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), width 0.25s var(--ease);
}

.header-search-form:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(127, 171, 110, 0.18);
  background: var(--white);
}

.header-search input,
.header-search-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 0.15rem 0 1rem;
  border: none;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 0.9rem;
}

.header-search input::placeholder,
.header-search-input::placeholder {
  font-family: inherit;
  font-size: inherit;
  opacity: 0.65;
  color: var(--muted);
}

.header-search-input::-webkit-search-decoration,
.header-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.header-search-submit {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.header-search-submit:hover {
  color: var(--brand);
  background: var(--brand-soft);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(360px, calc(100vw - 2rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 130;
}

.header-search-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: min(360px, 55vh);
  overflow-y: auto;
}

.header-search-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  transition: background 0.15s var(--ease);
}

.header-search-item:hover,
.header-search-item:focus,
.header-search-item.is-active {
  background: var(--brand-soft);
  outline: none;
}

.header-search-thumb {
  width: 32px;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--brand-soft);
}

.header-search-thumb--empty {
  display: block;
}

.header-search-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.header-search-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search-price {
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 0.82rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.header-search-empty {
  padding: 0.9rem 1rem;
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
}

.header-search-all {
  display: block;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--line);
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: center;
  background: var(--paper);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.header-search-all:hover {
  background: var(--brand-soft);
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--max));
  height: 68px;
  justify-content: flex-end;
  padding-right: 19.5rem;
  z-index: 110;
  box-sizing: border-box;
  pointer-events: none;
}

.nav > * {
  pointer-events: auto;
}

.nav-close,
.nav-drawer-foot {
  display: none;
}

.nav-drawer-body {
  display: contents;
}

.nav .nav-link,
.nav .nav-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  position: relative;
  padding: 0.35rem 0.15rem;
}

.nav .nav-link > i,
.nav .nav-parent-link > i {
  display: none;
}

.nav .nav-link:hover,
.nav .nav-link.active,
.nav .nav-parent-link:hover,
.nav .nav-parent-link.active {
  color: var(--brand-dark);
}

.nav .nav-link.active::after,
.nav .nav-parent-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-row {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s;
}

.nav-item:hover > .nav-item-row .nav-expand,
.nav-item:focus-within > .nav-item-row .nav-expand {
  color: var(--brand-dark);
  opacity: 1;
}

.nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

/* Top-level Products panel: flush under trigger, no display-toggle gap.
   Desktop size is locked in the min-width:1000px block so nested expand
   does not reflow width/height; mobile drawer resets these below. */
.nav-item.has-dropdown > .nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(31, 42, 28, 0.12);
  padding: 0.45rem;
  z-index: 120;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), visibility 0.15s var(--ease);
}

/* Invisible bridge so the pointer never leaves the hover target. */
.nav-item.has-dropdown > .nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.75rem;
}

.nav-submenu a,
.nav-submenu .nav-parent-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav-submenu .nav-parent-link {
  flex: 1;
  min-width: 0;
  position: static;
}

/* Category / subcategory flower icons (desktop dropdown + mobile drawer).
   More specific than .nav .nav-parent-link > i { display: none } on desktop. */
.nav .nav-submenu a > i,
.nav .nav-submenu .nav-parent-link > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav .nav-submenu a:hover > i,
.nav .nav-submenu a.active > i,
.nav .nav-submenu .nav-parent-link:hover > i,
.nav .nav-submenu .nav-parent-link.active > i {
  color: var(--brand);
}

.nav-submenu .nav-parent-link::after,
.nav-submenu a.active::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a.active,
.nav-submenu .nav-parent-link:hover,
.nav-submenu .nav-parent-link.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.nav-submenu .nav-item {
  display: block;
  width: 100%;
  position: relative;
}

.nav-submenu .nav-item-row {
  width: 100%;
}

.nav-submenu .nav-submenu {
  position: static;
  transform: none;
  min-width: 0;
  margin: 0.1rem 0 0.15rem 0.65rem;
  padding: 0.15rem 0 0.15rem 0.55rem;
  border: none;
  border-left: 2px solid var(--brand-soft);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.nav-submenu .nav-submenu::before {
  display: none;
}

/* Desktop: Products dropdown opens on hover/focus.
   Nested category children stay collapsed until chevron click (.expanded). */
@media (min-width: 1000px) {
  /* Full header height keeps label → panel path inside one hover target. */
  .nav-item.has-dropdown {
    align-self: stretch;
  }

  /* Fixed panel size: wide enough for Georgian labels; stable when nested expands. */
  .nav-item.has-dropdown > .nav-submenu {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    min-height: 280px;
    max-height: min(70vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-item.has-dropdown:hover > .nav-submenu,
  .nav-item.has-dropdown:focus-within > .nav-submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Nested indent stays inside the locked panel width (no horizontal reflow). */
  .nav-item.has-dropdown > .nav-submenu .nav-submenu {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 0;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
  }

  .nav-item.has-dropdown > .nav-submenu a,
  .nav-item.has-dropdown > .nav-submenu .nav-parent-link {
    white-space: normal;
  }

  /* Nested subcategories: hidden until accordion expand */
  .nav-submenu .nav-item.has-children > .nav-submenu {
    display: none;
  }

  .nav-submenu .nav-item.has-children.expanded > .nav-submenu {
    display: flex;
  }

  /* Nested chevrons stay visible/clickable; top-level Products uses hover only */
  .nav-item.has-dropdown > .nav-submenu .nav-expand {
    display: inline-flex;
    flex-shrink: 0;
    pointer-events: auto;
    opacity: 0.75;
  }

  .nav-item.has-dropdown > .nav-submenu .nav-expand:hover {
    opacity: 1;
    color: var(--brand-dark);
  }

  .nav-submenu .nav-item.has-children.expanded > .nav-item-row > .nav-expand {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--brand-dark);
  }

  .nav-item.has-dropdown > .nav-item-row .nav-expand {
    pointer-events: none;
  }
}

.empty-state {
  text-align: center;
  color: var(--ink-soft);
  padding: 2.5rem 1rem;
  font-size: 1.05rem;
}

.empty-state a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.product-unavailable {
  grid-column: 1 / -1;
  width: 100%;
}

.product-unavailable .btn {
  margin-top: 1rem;
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.2rem;
  box-shadow: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.menu-toggle:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.nav-overlay {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  max-width: var(--max);
  overflow: hidden;
  margin: 1.25rem auto 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  line-height: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 8px 24px rgba(127, 171, 110, 0.4);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Sections */
.section {
  padding: 1.25rem 0 2rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s var(--ease) both;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

#bestsellers {
  background: #fcfcfc;
}

/* Bestsellers products carousel */
.products-carousel,
.products-carousel-viewport,
.products-carousel-track,
.products-carousel-slide {
  background: #fcfcfc;
}

.products-carousel {
  position: relative;
  padding: 0;
}

.products-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.products-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.products-carousel-slide {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: 0;
  display: flex;
}

.products-carousel-slide .product-card {
  width: 100%;
}

.products-carousel .product-card-media {
  background: #fcfcfc;
}

.products-carousel .product-card {
  box-shadow: none;
}

.products-carousel .product-card:hover {
  box-shadow: none;
}

.products-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.products-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--brand-muted);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.products-carousel-dot.active {
  background: var(--brand);
  transform: scale(1.25);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s var(--ease) both;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.product-card:hover {
  border-color: rgba(127, 171, 110, 0.35);
  box-shadow: 0 16px 40px rgba(31, 42, 28, 0.12);
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

.product-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-soft);
  margin-bottom: 0.85rem;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

/* Photo download protection: real photo as background, decoy <img> is save target */
.fl-protect-media {
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.fl-protect-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}

.product-card:hover .product-card-media .fl-protect-photo {
  transform: scale(1.06);
}

.fl-protect-decoy {
  position: absolute !important;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

.carousel-slide.fl-protect-media,
.thumb.fl-protect-media {
  position: relative;
}

.carousel-slide.fl-protect-media .fl-protect-photo,
.thumb.fl-protect-media .fl-protect-photo {
  border-radius: inherit;
}

.thumb.fl-protect-media {
  position: relative;
}

.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--sale);
  color: white;
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  text-align: center;
  transition: color 0.2s;
  line-height: 1.3;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  word-break: break-word;
}

.product-card:hover .product-card-title {
  color: var(--brand-dark);
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  line-height: 1.25;
}

.product-card .price-row {
  background: #7fab6e;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.55rem;
  margin-top: auto;
}

.price-old {
  color: var(--old-price);
  text-decoration: line-through;
  font-size: 1.15rem;
  order: 2;
}

.product-card .price-old {
  color: #ededed;
  font-size: 1.05rem;
}

.price-new {
  color: var(--sale);
  font-weight: 700;
  font-size: 1.65rem;
  order: 1;
}

.product-card .price-new,
.product-card .price-regular {
  color: #ffffff;
  font-size: 1.55rem;
}

.price-regular {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1.65rem;
}

.product-card-order {
  display: block;
  width: 100%;
  text-align: center;
  background: #6b7a66;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.product-card:hover .product-card-order {
  background: #5a6956;
}

/* Product detail */
.breadcrumb {
  padding: 1.25rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brand-dark);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
  padding: 0 0 3rem;
}

.product-gallery {
  animation: fadeUp 0.7s var(--ease) both;
}

.product-title-main {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.25;
}

.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-soft);
  aspect-ratio: 3 / 4;
  width: 100%;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--brand-muted);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.carousel-dot.active {
  background: var(--brand);
  transform: scale(1.25);
}

.thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.thumb {
  flex: 0 0 64px;
  width: 64px;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: var(--brand);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buy column + urgency (3 separate stacked blocks) */
.product-buy-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.urgency-stock-bar {
  width: 100%;
  text-align: center;
  background: var(--brand);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.65s var(--ease) both;
  box-sizing: border-box;
}

.urgency-stock-bar[hidden] {
  display: none;
}

.urgency-stock {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.urgency-stock strong {
  color: var(--white);
  font-weight: 700;
  display: inline-block;
  min-width: 0.9em;
  text-align: center;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.urgency-stock strong.is-pulse {
  animation: urgencyPulse 0.55s var(--ease);
  color: #fff4c8;
}

.urgency-timer-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  background: linear-gradient(160deg, var(--brand-soft) 0%, #f4faf1 100%);
  border: 1px solid rgba(127, 171, 110, 0.35);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s var(--ease) both;
  box-sizing: border-box;
}

.urgency-timer-card[hidden] {
  display: none;
}

.urgency-heading {
  width: 100%;
  text-align: center;
}

.urgency-label {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.6vw, 1.05rem);
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

.urgency-timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.85rem 0.75rem 0.65rem;
  background: var(--white);
  border: 1px solid rgba(127, 171, 110, 0.28);
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
  box-sizing: border-box;
}

.urgency-unit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 3.4rem;
}

.urgency-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.4rem 0.45rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--brand);
}

.urgency-unit-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1;
}

.urgency-sep {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.65rem;
  padding: 0.35rem 0.05rem 0;
  line-height: 1;
}

@keyframes urgencyPulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.22);
  }
  100% {
    transform: scale(1);
  }
}

/* Order panel */
.order-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.order-panel .price-row {
  margin-bottom: 1.25rem;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  text-align: left;
}

.order-panel .price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.order-panel .price-new {
  font-size: 2.1rem;
}

.order-panel .price-old {
  font-size: 1.25rem;
}

.order-panel .badge-sale {
  position: static;
  top: auto;
  left: auto;
  flex-shrink: 0;
}

.product-desc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s var(--ease) both;
}

.product-desc-card[hidden] {
  display: none;
}

.product-desc-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--brand-soft);
}

.product-short {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
}

.product-short:empty {
  display: none;
}

.product-description {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  white-space: pre-line;
}

.product-description:empty {
  display: none;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(127, 171, 110, 0.2);
  background: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-submit.is-loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.btn-submit.is-loading i {
  margin-right: 0.4em;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.85rem;
}

.form-success {
  display: none;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.4s var(--ease);
}

/* Comments */
.comments-section {
  padding: 1rem 0 3rem;
  animation: fadeUp 0.7s var(--ease) both;
}

.comments-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comments-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: #f0f2f5;
}

.fb-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1877f2;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
}

.comments-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.comment {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.comment:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-bubble {
  background: #f0f2f5;
  border-radius: 18px;
  padding: 0.55rem 0.9rem;
  display: inline-block;
  max-width: 100%;
}

.comment-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #050505;
  margin-bottom: 0.1rem;
}

.comment-text {
  font-size: 0.92rem;
  color: #050505;
  line-height: 1.45;
}

.comment-meta {
  padding: 0.35rem 0.9rem 0;
  font-size: 0.75rem;
  color: #65676b;
  font-weight: 600;
}

/* Related */
.related-section {
  padding: 0 0 4rem;
}

.related-section .section-title {
  margin-bottom: 1.5rem;
}

.products-page-section {
  padding-top: 0;
}

.page-intro-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 0 0 4rem;
}

.contact-layout-single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

a.contact-channel:hover {
  border-color: var(--brand);
  background: var(--white);
}

.contact-channel-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-channel-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.contact-channel-hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-block {
  padding: 0 0 2.75rem;
}

.contact-block .section-sub {
  margin-bottom: 1.5rem;
}

.contact-block-last {
  padding-bottom: 4rem;
}

.contact-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.contact-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-steps h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-steps p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-delivery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.contact-delivery-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--brand-dark);
}

.contact-delivery-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-faq {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.contact-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.85rem 1.1rem;
}

.contact-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-faq summary::-webkit-details-marker {
  display: none;
}

.contact-faq summary::after {
  content: "+";
  color: var(--brand-dark);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.contact-faq details[open] summary::after {
  content: "−";
}

.contact-faq details p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s var(--ease) both;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-list a,
.contact-list span:not(.contact-label) {
  color: var(--ink);
  font-size: 0.95rem;
}

.contact-list a:hover {
  color: var(--brand-dark);
}

.contact-form-panel {
  position: static;
  animation: fadeUp 0.8s var(--ease) 0.08s both;
}

.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(127, 171, 110, 0.2);
  background: white;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  font-family: "Rasedia", var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-text {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-delivery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 999px) {
  body {
    padding-bottom: calc(2.75rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 140;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--brand);
    box-shadow: 0 -4px 20px rgba(31, 42, 28, 0.12);
  }

  .mobile-call-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 1rem;
    background: var(--brand);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    transition: background 0.2s var(--ease);
  }

  .mobile-call-bar-link:hover,
  .mobile-call-bar-link:focus-visible {
    background: var(--brand-dark);
    color: var(--white);
  }

  .mobile-call-bar-link i {
    font-size: 0.9rem;
  }

  .products-carousel-slide {
    flex: 0 0 calc((100% - 0.75rem) / 2);
  }

  .products-carousel-track {
    gap: 0.75rem;
  }

  .header-search-toggle {
    display: inline-flex;
  }

  .header-search-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    padding: 0.65rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    z-index: 130;
  }

  .header-search.is-open .header-search-panel {
    display: block;
  }

  .header-search-form {
    width: 100%;
  }

  .header-search-results {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--line);
  }

  .header-search-results:not([hidden]) {
    margin-top: 0.55rem;
    padding-top: 0.15rem;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 120;
  }

  .nav {
    padding-right: 0;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 42, 28, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 150;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(290px, 90vw);
    height: 100dvh;
    margin: 0;
    padding: 3.25rem 1.35rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    border: none;
    box-shadow: -2px 0 16px rgba(31, 42, 28, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 160;
    display: flex;
    overflow: hidden;
    pointer-events: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav > * {
    pointer-events: auto;
  }

  .nav-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }

  .nav-close:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
  }

  .nav .nav-link,
  .nav .nav-parent-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.78rem 0.65rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }

  .nav .nav-link > i,
  .nav .nav-parent-link > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    flex-shrink: 0;
    font-size: 0.92rem;
    color: var(--muted);
  }

  .nav .nav-link > span,
  .nav .nav-parent-link > span {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
  }

  .nav .nav-link.active::after,
  .nav .nav-parent-link.active::after {
    display: none;
  }

  .nav .nav-link:hover,
  .nav .nav-link.active,
  .nav .nav-parent-link:hover,
  .nav .nav-parent-link.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
  }

  .nav .nav-link:hover > i,
  .nav .nav-link.active > i,
  .nav .nav-parent-link:hover > i,
  .nav .nav-parent-link.active > i {
    color: var(--brand);
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-item-row {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-item-row .nav-parent-link {
    flex: 1;
    min-width: 0;
  }

  .nav-expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 0.72rem;
    border-radius: 8px;
    opacity: 0.7;
    color: var(--ink-soft);
    pointer-events: auto;
    transition: transform 0.2s ease, background 0.2s var(--ease), color 0.2s, opacity 0.2s;
  }

  .nav-expand:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
    opacity: 1;
  }

  .nav-item.expanded > .nav-item-row > .nav-expand {
    transform: rotate(180deg);
    color: var(--brand-dark);
    opacity: 1;
  }

  .nav-item.has-dropdown > .nav-submenu,
  .nav-submenu .nav-submenu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0.25rem 0 0.4rem 0.85rem;
    margin: 0 0 0.15rem 0.85rem;
    border-left: 2px solid var(--brand-soft);
    flex-direction: column;
    gap: 0.1rem;
    transition: none;
  }

  .nav-item.has-dropdown > .nav-submenu::before {
    display: none;
  }

  /* Drawer: submenu only when .expanded (chevron click). No :hover open. */
  .nav-item.expanded > .nav-submenu {
    display: flex;
  }

  .nav-submenu a,
  .nav-submenu .nav-parent-link {
    padding: 0.65rem 0.7rem;
    border-radius: 8px;
    white-space: normal;
    font-size: 0.9rem;
  }

  .nav-submenu a:hover,
  .nav-submenu a.active,
  .nav-submenu .nav-parent-link:hover,
  .nav-submenu .nav-parent-link.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
  }

  .nav-drawer-foot {
    display: block;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.65rem;
    border-radius: 8px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s var(--ease);
  }

  .nav-phone i {
    color: var(--brand);
    font-size: 0.95rem;
  }

  .nav-phone:hover {
    background: var(--brand-soft);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    pointer-events: none;
  }

  body.menu-open .menu-toggle,
  body.menu-open .header-search {
    visibility: hidden;
  }

  .hero {
    margin-top: 1rem;
    border-radius: 14px;
  }

  .hero-image {
    max-height: 220px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .products-carousel {
    padding: 0;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
