:root {
  --leaf: #1f6b45;
  --leaf-dark: #12432d;
  --mint: #e8f4ec;
  --cream: #f7f0df;
  --paper: #fffdf8;
  --ink: #1d2a22;
  --muted: #607068;
  --line: #dde8df;
  --rose: #d84d77;
  --sun: #d9a62c;
  --shadow: 0 18px 50px rgba(30, 70, 46, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.6;
  overflow-x: clip;
}

html.cart-open,
body.cart-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html.order-choice-open,
body.order-choice-open {
  overflow: hidden;
}

body.cart-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.announcement-bar {
  position: relative;
  z-index: 55;
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 5px 16px;
  color: white;
  background: var(--leaf-dark);
  text-align: center;
  font-weight: 900;
  font-size: 0.86rem;
}

.announcement-bar span {
  display: inline-block;
}

.announcement-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announcement-emoji {
  font-size: 0.95rem;
  line-height: 1;
}

.announcement-message.is-changing {
  animation: announcementBounce 0.65s ease;
}

@keyframes announcementBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-5px) scale(1.03);
  }
  65% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(221, 232, 223, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--leaf-dark);
  font-weight: 850;
  font-size: 1.35rem;
  letter-spacing: 0;
  max-height: 50px;
  overflow: visible;
}

.logo-image {
  width: clamp(112px, 10vw, 142px);
  height: auto;
  margin: -32px 0;
  display: block;
  object-fit: contain;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-block;
  flex: 0 0 auto;
  color: transparent;
  background: url("site-icon.png") center / contain no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-links a {
  padding: 7px 8px;
  color: #34483d;
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--leaf-dark);
  background: var(--mint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex: 0 0 auto;
}

.header-search {
  position: relative;
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  flex: 0 1 235px;
  width: min(26vw, 235px);
  min-width: 170px;
  height: 34px;
  margin: 0;
  background: #f6fbf7;
  border: 2px solid var(--leaf);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(31, 107, 69, 0.08);
}

.header-search:focus-within {
  border-color: var(--leaf);
  box-shadow: 0 10px 28px rgba(31, 107, 69, 0.1);
}

.header-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.header-search input {
  min-height: 30px;
  padding-left: 14px;
  padding-right: 10px;
  border: 0;
  outline: none;
  border-radius: 0;
  background: transparent;
  font-size: 0.92rem;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.header-search button {
  width: 38px;
  height: 30px;
  border: 0;
  outline: none;
  color: var(--leaf-dark);
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-weight: 850;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  overflow: auto;
  max-height: min(330px, 70vh);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-result-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.18;
}

.search-result-item:hover {
  background: var(--mint);
}

.search-result-item img {
  width: 44px;
  height: 38px;
  object-fit: cover;
  border-radius: var(--radius);
}

.search-result-item span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-empty {
  padding: 12px;
  color: var(--muted);
  font-weight: 800;
}

.cart-toggle {
  position: relative;
  width: 84px;
  min-width: 84px;
  height: 54px;
  padding: 0;
  color: var(--leaf-dark);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.cart-toggle:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.cart-line-icon {
  width: 78px;
  height: 50px;
  display: inline-block;
  background: url("cart.png") center / contain no-repeat;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  color: white;
  background: var(--rose);
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 900;
}

.menu-toggle {
  position: relative;
  z-index: 140;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--leaf-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--leaf);
  box-shadow: 0 12px 24px rgba(31, 107, 69, 0.24);
}

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

.btn-disabled,
.btn-disabled:disabled,
.btn-disabled:hover {
  color: var(--rose);
  background: #fff0f4;
  border-color: rgba(216, 77, 119, 0.28);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-secondary {
  color: var(--leaf-dark);
  background: white;
  border-color: var(--line);
}

.btn-secondary:hover {
  box-shadow: 0 12px 24px rgba(30, 70, 46, 0.1);
}

.btn-ghost {
  color: var(--leaf-dark);
  background: var(--mint);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #163d2c;
}

.home-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2061 / 763;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: #eff7e8;
}

.home-banner-text-box {
  position: absolute;
  bottom: clamp(35px, 12%, 80px);
  left: 5%;
  z-index: 15;
  text-align: left;
  max-width: 80%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.home-banner-text-box.is-active {
  pointer-events: auto;
}
.home-banner-text-box > * {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.home-banner-text-box.is-active > * {
  opacity: 1;
  transform: translateX(0);
}
.home-banner-text-box.is-active > *:nth-child(1) { transition-delay: 0.1s; }
.home-banner-text-box.is-active > *:nth-child(2) { transition-delay: 0.2s; }
.home-banner-text-box.is-active > *:nth-child(3) { transition-delay: 0.3s; }
.home-banner-text-box.is-active > *:nth-child(4) { transition-delay: 0.4s; }
.home-banner-text-box .banner-badge {
  display: inline-block;
  background: var(--leaf);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.home-banner-text-box h2 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: #fff;
  margin: 0 0 10px 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  line-height: 1.1;
}
.home-banner-text-box p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: #fff;
  margin: 0 0 20px 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.home-banner-text-box .banner-shop-btn {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  color: #ffffff;
  background: var(--leaf);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-banner-text-box .banner-shop-btn:hover {
  background: var(--leaf-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.home-banner-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.65s ease, opacity 0.3s ease;
  will-change: transform;
}

.home-banner-image-primary {
  position: absolute;
  height: 100%;
}

.home-banner-image.is-active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
}

.home-banner-image.is-leaving {
  opacity: 1;
  z-index: 1;
  transform: translateX(-100%);
}

.home-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}


@media (max-width: 640px) {
  .product-price-fields {
    grid-template-columns: 1fr;
  }

  .home-banner-dots {
    bottom: 9px;
  }
}

.home-banner-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-banner-dot.is-active {
  width: 36px;
  background: #ffffff;
}

.home-product-collections {
  background: #fff;
}

.home-product-section {
  padding: 34px 0 38px;
}

.home-product-section.is-alt {
  background: #fbfcf8;
}

.home-product-section-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-product-section-head h2 {
  margin: 0;
  color: #171c18;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.home-product-section-head a {
  flex: 0 0 auto;
  color: var(--leaf);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-view-all-loading {
  flex: 0 0 68px;
  width: 68px;
  height: 14px;
}

.home-product-section-loading .product-card-loading:nth-child(2) {
  animation-delay: 90ms;
}

.home-product-section-loading .product-card-loading:nth-child(3) {
  animation-delay: 180ms;
}

.home-product-section-loading .product-card-loading:nth-child(4) {
  animation-delay: 270ms;
}

.home-product-grid .catalogue-empty {
  grid-column: 1 / -1;
}

.home-product-slider {
  position: relative;
}

.home-product-slider .home-product-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x pan-y;
  padding: 12px 4px 24px;
  margin: -12px -4px -24px; /* offset padding so layout doesn't shift */
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-product-slider .home-product-grid::-webkit-scrollbar { display: none; }
.home-product-slider .home-product-grid .product-card { scroll-snap-align: start; }
.home-product-arrow {
  position: absolute;
  z-index: 5;
  top: 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--leaf-dark);
  box-shadow: 0 5px 18px rgba(18, 67, 45, .18);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.home-product-arrow:hover {
  background: var(--mint);
  box-shadow: 0 10px 28px rgba(18, 67, 45, 0.26);
  transform: translateY(-2px);
}
.home-product-arrow-prev { left: -18px; }
.home-product-arrow-next { right: -18px; }


@media (max-width: 920px), (hover: none) and (pointer: coarse) {
  .home-product-slider .home-product-grid { grid-auto-columns: calc((100% - 28px) / 3); gap: 14px; }
  .home-product-arrow-prev { left: -8px; }
  .home-product-arrow-next { right: -8px; }
}

@media (max-width: 640px) {
  .home-product-slider .home-product-grid { grid-auto-columns: calc((100% - 14px) / 2); }
}

.home-video-section {
  background: #f6faf6;
}

.home-video-head {
  margin-bottom: 20px;
}

.home-video-head h2 {
  margin-top: 4px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.home-video-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.home-video-card {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #102719;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(24, 67, 39, 0.13);
}

.home-video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 920px), (hover: none) and (pointer: coarse) {
  .announcement-bar,
  .site-header,
  main,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .home-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-banner-image {
    transition: none;
  }
}

@media (max-width: 640px) {
  .product-size-price-head {
    display: none;
  }

  .product-size-price-row {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    background: #f8faf8;
    border-radius: 10px;
  }

  .product-size-price-row strong {
    grid-column: 1 / -1;
  }
}

/* Keep prices and the discount badge on one row on mobile. */
@media (max-width: 640px) {
  .product-detail-info .detail-price {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .product-detail-info .detail-current-price {
    font-size: 1.3rem;
  }

  .product-detail-info .detail-original-price {
    font-size: 0.78rem;
  }

  .product-detail-info .detail-discount-badge {
    min-height: 27px;
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .product-card .product-card-price {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
  }

  .product-size-price-head {
    display: none;
  }

  .product-size-price-row {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    background: #f8faf8;
    border-radius: 10px;
  }

  .product-size-price-row strong {
    grid-column: 1 / -1;
  }

  .product-size-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-size-price-head {
    display: none;
  }

  .product-size-price-row {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    background: #f8faf8;
    border-radius: 10px;
  }

  .product-size-price-row strong {
    grid-column: 1 / -1;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 33, 22, 0.82), rgba(10, 33, 22, 0.42) 48%, rgba(10, 33, 22, 0.18)),
    url("https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 96px 0 70px;
}

.hero-content {
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f4d675;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.trust-item {
  padding: 14px 16px;
  color: white;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.section {
  padding: 46px 0;
}

.section.alt {
  background: var(--mint);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.04rem;
}

.product-page-head {
  position: relative;
  z-index: 10;
  overflow: visible;
  margin-bottom: 14px;
}

.product-page-head h2 {
  max-width: 620px;
  margin-top: 4px;
  font-size: clamp(1.15rem, 1.85vw, 1.55rem);
  line-height: 1.16;
}

.bougainvillea-sort {
  position: relative;
  z-index: 11;
  flex: 0 0 auto;
  min-width: 225px;
}

.bougainvillea-sort.is-open {
  z-index: 20;
}

.bougainvillea-sort-toggle {
  width: 100%;
  min-height: 44px;
  padding: 8px 40px 8px 14px;
  position: relative;
  text-align: left;
  color: #1f1f1f;
  background: #fff;
  border: 2px solid #d9dedb;
  border-radius: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 9px 24px rgba(30, 70, 46, 0.08);
}

.bougainvillea-sort-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.bougainvillea-sort.is-open .bougainvillea-sort-toggle::after {
  transform: translateY(-25%) rotate(225deg);
}

.bougainvillea-sort-toggle:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(31, 107, 69, 0.16);
}

.bougainvillea-sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 21;
  width: 100%;
  padding: 6px;
  overflow: visible;
  background: #fffdf8;
  border: 1px solid #d9dedb;
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(23, 61, 40, 0.2);
}

.bougainvillea-sort-menu[hidden] {
  display: none;
}

.bougainvillea-sort-menu button {
  width: 100%;
  padding: 9px 11px;
  color: #173d28;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: left;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
}

.bougainvillea-sort-menu button:hover,
.bougainvillea-sort-menu button:focus-visible {
  color: var(--leaf-dark);
  background: #eaf5ec;
  outline: none;
}

.bougainvillea-sort-menu button.is-selected {
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}

.grid-3,
.grid-4,
.product-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
  padding: 10px 6px;
  margin: -10px -6px;
  overflow: visible;
}

.card,
.product-card,
.review-card,
.contact-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.review-card {
  padding: 26px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  font-weight: 900;
  background: var(--leaf);
  border-radius: var(--radius);
}

.service-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 22px;
}

.about-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #33493e;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  color: var(--leaf);
  font-weight: 900;
}

.review-card p {
  color: #3e5147;
}

.review-name {
  margin-top: 18px;
  color: var(--leaf-dark);
  font-weight: 850;
}

.cta-band {
  color: white;
  background:
    linear-gradient(100deg, rgba(18, 67, 45, 0.72), rgba(31, 107, 69, 0.52)),
    url("order-today-bougainvillea.png");
  background-color: #174c34;
  background-position: center, center 62%;
  background-size: cover, 100% auto;
  background-repeat: no-repeat;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  color: white;
  background:
    linear-gradient(95deg, rgba(18, 67, 45, 0.92), rgba(18, 67, 45, 0.54)),
    url("https://images.unsplash.com/photo-1463320726281-696a485928c7?auto=format&fit=crop&w=1700&q=80") center/cover;
  padding: 56px 0;
}

.page-hero p {
  max-width: 690px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.product-search {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-bottom: 18px;
}

.product-search label {
  color: var(--leaf-dark);
  font-weight: 850;
}

.product-search input {
  min-height: 52px;
  background: white;
  box-shadow: 0 12px 28px rgba(30, 70, 46, 0.08);
}

.filter-btn {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--leaf-dark);
  background: white;
  font-weight: 850;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: white;
  background: var(--leaf);
  border-color: var(--leaf);
}

.product-card,
.product-grid .product-card,
.home-product-grid .product-card,
.similar-products-track .product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  will-change: auto;
}

/* Zoom animation — mouse only (not touch screens) */
@media (hover: hover) and (pointer: fine) {
  .product-card,
  .product-grid .product-card,
  .home-product-grid .product-card,
  .similar-products-track .product-card {
    transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.28s ease;
    will-change: transform;
  }

  .product-card:hover,
  .product-grid .product-card:hover,
  .home-product-grid .product-card:hover,
  .similar-products-track .product-card:hover {
    transform: translateY(-6px) scale(1.048);
    box-shadow: 0 24px 50px rgba(24, 76, 47, 0.22);
    z-index: 20;
  }
}

.product-image-link {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8fbf7;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: none;
}

.product-image-link:hover img {
  transform: none;
}

.product-body {
  padding: 10px 12px 12px;
}

.product-card-category {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  max-width: calc(100% - 16px);
  padding: 3px 5px;
  color: #ffffff;
  background: rgba(20, 91, 58, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  line-height: 10px;
  white-space: normal;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  text-align: left;
}

.product-card-category-inline {
  position: static;
  align-self: flex-start;
  max-width: 100%;
  margin: 3px 0 0;
  color: var(--leaf-dark);
  background: var(--mint);
  border-color: var(--line);
}

.product-card .product-body {
  gap: 2px;
}

.product-card .product-body h3 {
  min-height: 0;
}

.product-card .price {
  margin: 0 0 1px;
}

.product-card-price {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.product-card-sale-price {
  color: #171717;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.1;
}

.product-card-regular-price {
  color: #aaa;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.product-card-discount {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 5px;
  color: #fff;
  background: #ef4935;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 640px) {
  .detail-price {
    flex-flow: row nowrap;
    gap: 6px;
    white-space: nowrap;
  }

  .detail-current-price {
    font-size: 1.3rem;
  }

  .detail-original-price {
    font-size: 0.78rem;
  }

  .detail-discount-badge {
    min-height: 27px;
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .product-card-price {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
  }

  .product-card-sale-price {
    font-size: 0.72rem;
  }

  .product-card-regular-price {
    font-size: 0.52rem;
  }

  .product-card-discount {
    min-height: 16px;
    padding: 2px 4px;
    font-size: 0.46rem;
  }

  .product-card-category {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 12px);
    padding: 3px 4px;
    font-size: 7.5px;
    line-height: 9px;
    text-align: left;
  }
}

.product-title-link {
  color: var(--leaf-dark);
}

.product-body h3 {
  font-size: 0.88rem;
  line-height: 1.12;
  margin: 0;
}

.product-card .product-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-card .product-body h3 {
  min-height: 0;
  overflow-wrap: anywhere;
}

.product-card .product-actions {
  margin-top: auto;
}

.stock-badge {
  display: inline-flex;
  margin-top: 7px;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.stock-badge.in {
  color: var(--leaf-dark);
  background: var(--mint);
}

.stock-badge.out {
  color: var(--rose);
  background: #fff0f4;
}

.detail-stock {
  margin-top: 0;
  margin-bottom: 14px;
  padding: 7px 12px;
  font-size: 0.9rem;
}

.product-title-link:hover {
  color: var(--leaf);
}

.price {
  margin: 5px 0 6px;
  color: var(--rose);
  font-weight: 900;
  font-size: 0.94rem;
}

.product-body p {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 750;
}

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

.product-detail-section {
  background: #f2f7f1;
  padding-top: 24px !important;
  padding-bottom: 0 !important;
}

.product-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  min-height: 100vh;
}

.product-detail-media {
  align-self: start;
  overflow: hidden;
  background: #f0f7ee;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 100px);
}

.product-detail-media > img {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-media:has(.product-gallery-thumbnails) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  row-gap: 0;
  height: auto;
  aspect-ratio: auto;
  overflow: visible;
  background: #f0f7ee;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-gallery-main-frame {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f7ee;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product-detail-media .product-gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-gallery-thumbnails {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(226, 240, 222, 0.85);
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(6px);
  overflow-x: auto;
}

.product-gallery-thumbnail {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.product-gallery-thumbnail:hover {
  border-color: rgba(22,163,74,0.5);
}

.product-gallery-thumbnail.is-active {
  border-color: #16a34a;
}

.product-gallery-thumbnail img {
  display: block;
  width: 100%;
  height: 52px;
  min-height: 0;
  object-fit: cover;
  background: #f0f7ee;
  transform: none !important;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.product-gallery-main-frame:hover .product-gallery-main {
  transform: scale(1.03);
}

.product-detail-media .product-gallery-thumbnail img {
  display: block;
  width: 100%;
  height: 52px;
  min-height: 0;
  object-fit: cover;
  background: #f0f7ee;
  transform: none;
}

.product-detail-info {
  align-self: start;
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  aspect-ratio: auto;
  overflow: visible;
  box-sizing: border-box;
  padding: 32px 48px 80px;
  background: #ffffff;
  border: none;
  border-left: 1px solid #e8ede6;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 921px) and (hover: hover) and (pointer: fine) {
  .product-detail-info {
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 2vw, 40px) clamp(32px, 3.5vw, 56px) 80px;
  }

  .product-detail-info .detail-price {
    margin: clamp(10px, 1.25vw, 18px) 0;
  }

  .product-detail-info .product-meta {
    gap: clamp(7px, 0.8vw, 12px);
    margin: clamp(10px, 1.35vw, 20px) 0;
  }

  .product-detail-info .product-meta div {
    min-width: 0;
    padding: clamp(8px, 0.9vw, 14px);
    overflow-wrap: anywhere;
  }

  .product-detail-info .check-list {
    gap: clamp(7px, 0.8vw, 12px);
    margin-top: clamp(10px, 1.25vw, 18px);
  }

  .product-detail-info .detail-actions {
    margin-top: auto;
    padding-top: clamp(10px, 1.25vw, 18px);
  }
}

.product-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--mint);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-detail-info h1 {
  color: var(--leaf-dark);
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 6px;
  color: #171717;
  font-size: 1.5rem;
  font-weight: 950;
}

.detail-current-price {
  color: #171717;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  line-height: 1;
}

.detail-original-price {
  color: #aaa;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 650;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.detail-discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  color: #fff;
  background: #ef4935;
  border: 0;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.product-detail-info p {
  color: var(--muted);
  font-size: 1.05rem;
}

.single-product-description {
  grid-column: 1 / -1;
  order: 20;
  margin-top: 16px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.single-product-highlights {
  position: static;
  min-width: 0;
  width: 100%;
  margin: 4px 0 0;
  padding: 10px 0 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.single-product-highlights.is-wholesale {
  order: 2;
  margin-top: 10px;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.single-product-highlights.is-wholesale .product-highlight-item {
  color: var(--leaf-dark);
}

.product-highlight-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  overflow: visible;
}

.product-highlight-track::-webkit-scrollbar {
  display: none;
}

.product-highlight-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 76px;
  padding: 0 2px 4px;
  color: #165aa3;
  text-align: center;
  scroll-snap-align: start;
}

.product-highlight-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
  color: #555;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 0.95rem;
  filter: grayscale(0.25);
}

.product-highlight-whatsapp {
  background: #25d366;
  filter: none;
}

.product-highlight-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.product-highlight-title {
  margin-bottom: 2px;
  font-size: 0.56rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-highlight-item strong {
  max-width: 100%;
  font-size: 0.61rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.product-highlight-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: none;
  place-items: center;
  width: 44px;
  height: 52px;
  padding: 0 0 5px;
  color: #555;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #8c8c8c;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

.product-highlight-arrow.is-prev {
  left: 2px;
}

.product-highlight-arrow.is-next {
  right: 2px;
}

.single-product-description h2 {
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 1.25rem;
  font-weight: 950;
}

.single-product-description p {
  margin: 0;
  line-height: 1.75;
  white-space: pre-line;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 22px 0;
  border: 1px solid #e8ede6;
  border-radius: 14px;
  overflow: hidden;
}

.product-meta div {
  padding: 14px 16px;
  background: #f8fcf7;
  border-right: 1px solid #e8ede6;
  font-weight: 850;
}

.product-meta div:last-child {
  border-right: none;
}

.product-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.product-meta .meta-value {
  display: block;
  line-height: 1.18;
  white-space: nowrap;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.product-size-selector {
  margin-top: 5px;
  order: 2;
}

.product-colour-selector {
  margin: 4px 0 8px;
  order: 1;
}

.product-colour-selector-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

.product-colour-selector-title {
  display: block;
  color: #2b332c;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-colour-selector-value {
  display: block;
  color: var(--leaf-dark);
  font-size: 1.25rem;
  font-weight: 850;
  margin-top: 2px;
}

.product-colour-options {
  display: none;
}

.product-colour-option {
  min-height: 34px;
  padding: 7px 12px;
  color: #33423a;
  background: #fff;
  border: 1.5px solid #d8dccf;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1;
}

.product-colour-option.is-active {
  color: #fff;
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
}

.product-size-selector-title {
  display: block;
  margin-bottom: 8px;
  color: #2b332c;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-size-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-size-option {
  min-width: 0;
  min-height: 56px;
  padding: 8px 10px;
  color: #2f322f;
  background: #f7faf6;
  border: 1.5px solid #dde6d9;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.18s, background 0.18s;
}

.product-size-option:hover:not(:disabled) {
  border-color: #86efac;
  background: #f0fdf4;
}

.product-size-option.is-active {
  border-color: #16a34a;
  background: #f0fdf4;
}

.product-size-option span,
.product-size-option strong,
.product-size-option del,
.product-size-option em {
  display: block;
  color: inherit;
}

.product-size-option span {
  margin-bottom: 3px;
  font-size: 0.66rem;
  line-height: 1.15;
  font-weight: 800;
}

.product-size-option strong {
  font-size: 0.76rem;
  line-height: 1.15;
  margin-bottom: 1px;
}

.product-size-option del {
  color: #8d8d8d;
  font-size: 0.56rem;
  line-height: 1.15;
  margin-bottom: 1px;
}

.product-size-option em {
  margin-top: 3px;
  color: #16a34a;
  font-size: 0.54rem;
  line-height: 1.15;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-size-option.is-out {
  color: #929292;
  background: #fafafa;
  border-color: #e5e0d5;
  cursor: not-allowed;
}

.product-size-option.is-out em {
  color: #d84d77;
}



/* Horizontal 5-Icon Wholesale Highlights Bar */
.wholesale-highlights-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
  padding: 12px 4px;
}

.wholesale-highlight-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wholesale-highlight-icon {
  width: 46px;
  height: 46px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 6px;
  box-shadow: none;
}

.wholesale-highlight-icon.wholesale-icon-whatsapp {
  background: transparent;
}

.wholesale-highlight-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  color: #1e56a0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
  line-height: 1.2;
}

.wholesale-highlight-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #1e56a0;
  line-height: 1.25;
}

/* Wholesale Instructions Box Above Qty */
.wholesale-instruction-box {
  order: 3;
  margin: 10px 0 6px;
  padding: 4px 0;
  background: transparent;
  border: none;
}

.wholesale-instruction-box h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 850;
  color: #17361f;
}

.wholesale-instruction-box ul {
  margin: 0 0 12px 20px;
  padding: 0;
  color: #2a4732;
  font-size: 0.92rem;
  font-weight: 700;
}

.wholesale-instruction-box li {
  margin-bottom: 4px;
}

.wholesale-instruction-box p {
  margin: 0 0 8px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #385240;
}

.wholesale-instruction-box .wholesale-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  font-weight: 850;
  color: var(--leaf-dark);
}

/* Wholesale / Bulk Product Card Layout */
.wholesale-grid-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

.wholesale-card {
  background: #f7f1e5;
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wholesale-card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 850;
  color: #636155;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wholesale-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 850;
  color: #172419;
  line-height: 1.25;
}

.wholesale-checkmarks {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wholesale-checkmarks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 750;
  color: #1a2a1d;
}

.wholesale-check-icon {
  color: #17864f;
  font-weight: 900;
  font-size: 1.05rem;
}

.detail-actions .btn-primary,
.detail-actions .btn-disabled {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  font-weight: 900;
}

.product-detail-info .detail-actions {
  order: 4 !important;
  margin-top: 6px;
}

.detail-actions {
  order: 4;
  margin-top: 6px;
}

@media (max-width: 920px) {
  .product-detail-info .detail-actions {
    order: 10 !important;
    margin-top: 16px;
  }
}

.detail-quantity {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-quantity > strong {
  color: var(--leaf-dark);
  font-size: 1.05rem;
}

.detail-qty-control {
  display: inline-grid;
  grid-template-columns: 48px 54px 48px;
  align-items: center;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.detail-qty-control button {
  height: 46px;
  border: 0;
  color: var(--leaf-dark);
  background: white;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
}

.detail-qty-control span {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 900;
}

.similar-products-head {
  margin-bottom: 18px;
}

.similar-products-shell {
  position: relative;
}

.similar-arrow {
  position: absolute;
  top: 43%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--leaf-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 5px 18px rgba(18, 67, 45, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.similar-arrow:hover {
  background: var(--mint);
  box-shadow: 0 10px 28px rgba(18, 67, 45, 0.26);
  transform: translateY(-2px);
}

.similar-arrow-prev {
  left: -18px;
}

.similar-arrow-next {
  right: -18px;
}

@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .similar-arrow-prev {
    left: -8px;
  }

  .similar-arrow-next {
    right: -8px;
  }
}


.similar-products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x pan-y;
  padding: 12px 16px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.similar-products-track .product-card {
  min-width: 230px;
  scroll-snap-align: start;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.product-actions .btn-primary {
  grid-column: 1 / -1;
}

.product-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.add-product-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.add-product-form label:last-of-type,
.add-product-form .form-wide {
  grid-column: 1 / -1;
}

.product-price-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.add-product-form .product-price-fields label {
  grid-column: auto;
  min-width: 0;
}

.product-price-fields input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.product-price-fields input[type="number"]::-webkit-inner-spin-button,
.product-price-fields input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.product-price-fields .bulk-quote-field {
  grid-column: 1 / -1;
}

.product-size-prices {
  display: grid;
  gap: 9px;
}

.product-size-prices > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-size-price-head,
.product-size-price-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.15fr) repeat(2, minmax(100px, 1fr)) minmax(120px, 0.9fr);
  align-items: center;
  gap: 10px;
}

.product-size-price-head {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-size-price-row strong {
  color: var(--leaf-dark);
}

.upload-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbf4;
  color: var(--leaf-dark);
  font-weight: 800;
}

.upload-preview img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(16, 42, 31, 0.12);
}

.upload-cancel {
  width: auto;
  min-height: 38px;
  margin-left: auto;
  padding: 8px 12px;
}

.bulk-quote-field {
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  color: var(--rose);
  background: #fff7f9;
  border: 1px solid rgba(216, 77, 119, 0.24);
  border-radius: var(--radius);
  font-weight: 950;
}

select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(13, 31, 22, 0.44);
}

.cart-backdrop.open {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: min(420px, 100%);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(16, 42, 31, 0.24);
  transform: translateX(105%);
  transition: transform 0.22s ease;
  overscroll-behavior: contain;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-title-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.cart-title-secondary {
  color: #111;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--leaf-dark);
  background: white;
  cursor: pointer;
  font-size: 1.4rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 20px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item h3 {
  font-size: 1rem;
}

.cart-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.qty-control button {
  height: 34px;
  border: 0;
  background: white;
  color: var(--leaf-dark);
  cursor: pointer;
  font-weight: 900;
}

.qty-control span {
  text-align: center;
  font-weight: 850;
}

.remove-item {
  border: 0;
  color: var(--rose);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.cart-item-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-line-total {
  margin-left: auto;
  color: var(--leaf-dark);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.cart-foot {
  padding: 20px;
  border-top: 1px solid var(--line);
  background: white;
}

.cart-shipping {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 750;
}

.cart-shipping span:last-child {
  color: var(--ink);
  text-align: right;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.12rem;
  font-weight: 900;
}

.order-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
}

.order-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 22, 0.68);
  backdrop-filter: blur(5px);
}

.order-choice-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(10, 35, 22, 0.34);
}

.order-choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
}

.order-choice-head h2 {
  color: var(--leaf-dark);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.order-choice-head button {
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
}

.order-choice-intro {
  padding: 24px 32px 0;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
}

.order-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 32px 34px;
}

.order-choice-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 410px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
}

.order-choice-direct {
  background: #f5fcf7;
  border-color: #ccefd7;
}

.order-choice-scan {
  background: #f7f9fc;
}

.order-choice-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #21c968;
  background: #dff7e7;
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 900;
}

.order-choice-mobile-icon {
  color: #475872;
  background: #e8eef6;
}

.order-choice-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-choice-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.order-choice-card p {
  max-width: 310px;
  color: var(--muted);
}

.order-choice-direct .btn {
  width: min(100%, 310px);
  margin-top: auto;
  background: #20c968;
}

.order-choice-qr-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  margin-top: auto;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 56, 45, 0.12);
}

.order-choice-qr-wrap img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.order-choice-qr-wrap.is-loaded img {
  opacity: 1;
}

.order-choice-qr-loading {
  position: absolute;
  inset: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  color: var(--leaf-dark);
  background: #edf5ef;
  border-radius: 10px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 850;
}

.order-choice-qr-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  animation: loading-shimmer 1.15s infinite;
}

.order-choice-qr-wrap.is-loaded .order-choice-qr-loading {
  display: none;
}

.order-choice-qr-wrap.has-error .order-choice-qr-loading {
  color: var(--rose);
  background: #fff7f9;
}

.order-choice-qr-wrap.has-error .order-choice-qr-loading::after {
  display: none;
}

.empty-cart {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: white;
}

.loading-plants {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--leaf-dark);
  text-align: center;
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-weight: 950;
}

.product-card-loading {
  pointer-events: none;
  animation: product-loading-pulse 1.6s ease-in-out infinite;
}

.loading-image,
.loading-line {
  position: relative;
  overflow: hidden;
  background: #edf5ef;
}

.loading-image::after,
.loading-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  animation: loading-shimmer 1.25s infinite;
}

.loading-image {
  aspect-ratio: 1 / 0.92;
}

.loading-line {
  height: 12px;
  border-radius: 999px;
}

.loading-line-title {
  width: 76%;
  height: 15px;
}

.loading-line-price {
  width: 42%;
  margin-top: 10px;
}

.loading-line-button {
  width: 100%;
  height: 38px;
  margin-top: 12px;
  border-radius: var(--radius);
}

.single-product-loading-media,
.single-product-loading-info {
  pointer-events: none;
}

.single-product-loading-info {
  display: block !important;
  align-self: start;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.single-loading-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.single-loading-title {
  width: 82%;
  height: 34px;
}

.single-loading-price {
  width: 32%;
  height: 22px;
  margin-top: 18px;
}

.single-loading-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.single-loading-meta .loading-line {
  height: 58px;
  border-radius: var(--radius);
}

.single-loading-text {
  width: 96%;
  height: 15px;
  margin-top: 12px;
}

.single-loading-text.short {
  width: 72%;
}

@keyframes loading-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes product-loading-pulse {
  50% {
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card-loading,
  .loading-image::after,
  .loading-line::after {
    animation: none;
  }

  .product-card {
    transition: none !important;
  }

  .product-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

.bulk-supply-label {
  margin-bottom: 6px;
  color: var(--leaf-dark);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
}

.wholesale-catalogue-section + .wholesale-catalogue-section {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.wholesale-catalogue-section h2 {
  margin-bottom: 20px;
  color: var(--leaf-dark);
}

.catalogue-empty {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--muted);
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 750;
}

.bulk-supply-subtitle {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 800;
}

.bulk-catalogue-label {
  margin-top: 12px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: none;
  padding: 13px 16px;
  color: white;
  background: var(--leaf-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 850;
}

.toast.show {
  display: block;
}

.steps {
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding-top: 64px;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--rose);
  border-radius: 50%;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  color: var(--leaf-dark);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--leaf-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid button[type="submit"] {
  margin-top: 14px;
  min-height: 54px;
  font-size: 1.05rem;
}

.map-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  color: var(--leaf-dark);
  font-weight: 850;
  text-align: center;
  background:
    linear-gradient(45deg, rgba(31, 107, 69, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(31, 107, 69, 0.12) 25%, transparent 25%),
    var(--cream);
  background-size: 36px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-bougainvillea-photo {
  height: 260px;
  margin: 20px 0 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-bougainvillea-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.admin-error {
  min-height: 24px;
  color: var(--rose);
  font-weight: 850;
}

.admin-db-status {
  margin: -12px 0 18px;
  padding: 12px 14px;
  color: var(--leaf-dark);
  background: var(--mint);
  border: 1px solid rgba(31, 107, 69, 0.18);
  border-radius: var(--radius);
  font-weight: 850;
}

.admin-db-status.error {
  color: var(--rose);
  background: #fff0f4;
  border-color: rgba(218, 74, 116, 0.3);
}

.product-image-manager {
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-collection-options {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-collection-options legend {
  padding: 0 8px;
  color: var(--leaf-dark);
  font-weight: 900;
}

.product-collection-options > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-collection-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-collection-checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--leaf-dark);
  background: #f5faf6;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.product-collection-checks input {
  width: 18px;
  height: 18px;
  accent-color: var(--leaf);
}

.category-select-row {
  display: block;
}

.product-image-manager-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-image-manager-head span,
.product-image-help {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-local-upload {
  min-width: 0;
}

.product-local-current {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: #476052;
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-local-current img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid #d7e4db;
  border-radius: 8px;
  object-fit: cover;
}

.product-image-entries {
  display: grid;
  gap: 10px;
}

.product-image-entry {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(0, 1fr) 36px;
  align-items: end;
  gap: 10px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-image-number {
  align-self: center;
  color: var(--leaf-dark);
  font-weight: 900;
}

.product-image-remove {
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  color: white;
  background: var(--rose);
  border: 0;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
}

.product-image-help {
  margin: 10px 0 0;
}

.admin-db-status.success {
  color: var(--leaf-dark);
  background: #effaf2;
  border-color: rgba(31, 107, 69, 0.28);
}

.banner-manager {
  margin-bottom: 22px;
}

.banner-manager-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}

.banner-manager.is-open .banner-manager-head {
  margin-bottom: 18px;
}

.banner-manager-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-manager-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.banner-manager-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  color: var(--leaf-dark);
  background: #f4faf5;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.banner-manager-toggle::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease, top 0.2s ease;
}

.banner-manager.is-open .banner-manager-toggle::before {
  top: 17px;
  transform: rotate(225deg);
}

.banner-manager-content[hidden] {
  display: none;
}

.manager-link-form { display: grid; grid-template-columns: minmax(180px, .7fr) minmax(260px, 1.4fr) auto; gap: 14px; align-items: end; }
.manager-link-form label { display: grid; gap: 8px; font-weight: 700; }
.manager-item-list { display: grid; gap: 10px; margin-top: 18px; }
.manager-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.manager-item > div { display: grid; gap: 3px; min-width: 0; }
.manager-item span, .manager-item a { font-size: .88rem; overflow-wrap: anywhere; }
.manager-item-actions { display: flex !important; grid-auto-flow: column; gap: 8px !important; flex: 0 0 auto; }
.home-section-link-slots,
.home-video-link-slots { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.home-section-link-slots label,
.home-video-link-slots label { min-width: 0; }
.home-section-link-slots input,
.home-video-link-slots input { width: 100%; }

@media (max-width: 760px) {
  .manager-link-form { grid-template-columns: 1fr; }
  .manager-link-form .btn { width: 100%; }
  .home-section-link-slots,
  .home-video-link-slots { grid-template-columns: 1fr; }
  .manager-item { align-items: flex-start; }
}

.banner-manager-head h2,
.manager-dropdown-head h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.banner-manager-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.banner-manager-form .form-wide {
  grid-column: 1 / -1;
}

.banner-form-actions,
.admin-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-manager-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.banner-restore-inside {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.admin-banner-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-banner-card {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-banner-card img {
  width: 100%;
  aspect-ratio: 2061 / 763;
  object-fit: cover;
  border-radius: 10px;
}

.admin-banner-card div {
  min-width: 0;
}

.admin-banner-card strong,
.admin-banner-card span {
  display: block;
}

.admin-banner-card span {
  margin-top: 6px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-list-head {
  margin-top: 44px;
}

.admin-list-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.admin-product-counts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.admin-product-counts span {
  padding: 8px 10px;
  color: var(--leaf-dark);
  background: var(--mint);
  border: 1px solid rgba(31, 107, 69, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.admin-product-search {
  width: min(320px, 100%);
  color: var(--leaf-dark);
  font-weight: 900;
}

.admin-product-search input {
  width: 100%;
  min-height: 44px;
  margin-top: 7px;
  padding: 10px 14px;
  background: white;
  border: 2px solid var(--leaf);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 107, 69, 0.08);
}

.admin-product-list {
  display: grid;
  gap: 14px;
}

.admin-product-group {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-product-group-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 20px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 1.08rem;
  font-weight: 950;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-product-group-toggle::-webkit-details-marker {
  display: none;
}

.admin-product-group-count {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-product-group-list {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.admin-product-group-list .admin-product-card {
  box-shadow: none;
}

.admin-product-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-product-card img {
  width: 96px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius);
}

.admin-product-card h3 {
  font-size: 1.06rem;
}

.admin-product-card p {
  color: var(--muted);
}

.admin-source-badge {
  display: inline-flex;
  margin-right: 8px;
  padding: 3px 8px;
  color: var(--leaf-dark);
  background: var(--mint);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-product-actions {
  display: flex;
  gap: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: white;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
}

.social-links a:hover {
  background: var(--leaf-dark);
  transform: translateY(-1px);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
}

.social-facebook .social-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M15.1%208.2H13V6.8c0-.55.36-.68.62-.68h1.44V3.72L13.08%203.7c-2.2%200-3.39%201.65-3.39%203.81V8.2H7.5v2.62h2.19V20.3H13v-9.48h1.82l.28-2.62Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M15.1%208.2H13V6.8c0-.55.36-.68.62-.68h1.44V3.72L13.08%203.7c-2.2%200-3.39%201.65-3.39%203.81V8.2H7.5v2.62h2.19V20.3H13v-9.48h1.82l.28-2.62Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-youtube .social-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M21.58%207.19a2.74%202.74%200%200%200-1.93-1.94C17.95%204.8%2012%204.8%2012%204.8s-5.95%200-7.65.45a2.74%202.74%200%200%200-1.93%201.94A28.6%2028.6%200%200%200%202%2012a28.6%2028.6%200%200%200%20.42%204.81%202.74%202.74%200%200%200%201.93%201.94c1.7.45%207.65.45%207.65.45s5.95%200%207.65-.45a2.74%202.74%200%200%200%201.93-1.94A28.6%2028.6%200%200%200%2022%2012a28.6%2028.6%200%200%200-.42-4.81ZM10%2015.2V8.8l5.2%203.2L10%2015.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M21.58%207.19a2.74%202.74%200%200%200-1.93-1.94C17.95%204.8%2012%204.8%2012%204.8s-5.95%200-7.65.45a2.74%202.74%200%200%200-1.93%201.94A28.6%2028.6%200%200%200%202%2012a28.6%2028.6%200%200%200%20.42%204.81%202.74%202.74%200%200%200%201.93%201.94c1.7.45%207.65.45%207.65.45s5.95%200%207.65-.45a2.74%202.74%200%200%200%201.93-1.94A28.6%2028.6%200%200%200%2022%2012a28.6%2028.6%200%200%200-.42-4.81ZM10%2015.2V8.8l5.2%203.2L10%2015.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-instagram .social-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M7.8%202h8.4A5.8%205.8%200%200%201%2022%207.8v8.4a5.8%205.8%200%200%201-5.8%205.8H7.8A5.8%205.8%200%200%201%202%2016.2V7.8A5.8%205.8%200%200%201%207.8%202Zm-.2%202A3.6%203.6%200%200%200%204%207.6v8.8A3.6%203.6%200%200%200%207.6%2020h8.8a3.6%203.6%200%200%200%203.6-3.6V7.6A3.6%203.6%200%200%200%2016.4%204H7.6Zm9.65%201.5a1.25%201.25%200%201%201%200%202.5%201.25%201.25%200%200%201%200-2.5ZM12%207.3a4.7%204.7%200%201%201%200%209.4%204.7%204.7%200%200%201%200-9.4Zm0%202a2.7%202.7%200%201%200%200%205.4%202.7%202.7%200%200%200%200-5.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M7.8%202h8.4A5.8%205.8%200%200%201%2022%207.8v8.4a5.8%205.8%200%200%201-5.8%205.8H7.8A5.8%205.8%200%200%201%202%2016.2V7.8A5.8%205.8%200%200%201%207.8%202Zm-.2%202A3.6%203.6%200%200%200%204%207.6v8.8A3.6%203.6%200%200%200%207.6%2020h8.8a3.6%203.6%200%200%200%203.6-3.6V7.6A3.6%203.6%200%200%200%2016.4%204H7.6Zm9.65%201.5a1.25%201.25%200%201%201%200%202.5%201.25%201.25%200%200%201%200-2.5ZM12%207.3a4.7%204.7%200%201%201%200%209.4%204.7%204.7%200%200%201%200-9.4Zm0%202a2.7%202.7%200%201%200%200%205.4%202.7%202.7%200%200%200%200-5.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #102a1f;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.7fr;
  gap: 28px;
  margin-bottom: 34px;
}

.site-footer .logo {
  color: white;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.footer-title {
  margin-bottom: 12px;
  color: white;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 4px;
  margin-left: 32px;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  background: #207447;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.footer-whatsapp-button:hover {
  color: white;
  background: #2d925c;
  transform: translateY(-1px);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.footer-contact-item:hover {
  color: white;
}

.footer-contact-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.86);
}

.footer-phone-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.12.86.32%201.7.59%202.5a2%202%200%200%201-.45%202.11L8.09%209.49a16%2016%200%200%200%206.42%206.42l1.16-1.16a2%202%200%200%201%202.11-.45c.8.27%201.64.47%202.5.59A2%202%200%200%201%2022%2016.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.12.86.32%201.7.59%202.5a2%202%200%200%201-.45%202.11L8.09%209.49a16%2016%200%200%200%206.42%206.42l1.16-1.16a2%202%200%200%201%202.11-.45c.8.27%201.64.47%202.5.59A2%202%200%200%201%2022%2016.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-email-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4%204h16c1.1%200%202%20.9%202%202v12c0%201.1-.9%202-2%202H4c-1.1%200-2-.9-2-2V6c0-1.1.9-2%202-2z'/%3E%3Cpolyline%20points='22,6%2012,13%202,6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4%204h16c1.1%200%202%20.9%202%202v12c0%201.1-.9%202-2%202H4c-1.1%200-2-.9-2-2V6c0-1.1.9-2%202-2z'/%3E%3Cpolyline%20points='22,6%2012,13%202,6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-location-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-location-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.hidden {
  display: none;
}

@media (max-width: 920px), (hover: none) and (pointer: coarse) {
  .cta-band {
    background-position: center, center;
    background-size: cover, cover;
  }

  .nav-wrap {
    min-height: 72px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 0;
  }

  .logo-image {
    width: 100px;
    margin: -24px 0;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 130;
  }

  .nav-links.open {
    display: flex;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links a {
    padding: 14px;
  }

  .header-actions .btn {
    display: none;
  }

  .header-actions {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-left: 0;
  }

  .header-actions .cart-toggle {
    display: inline-flex;
    flex: 0 0 80px;
    width: 80px;
    min-width: 80px;
    height: 56px;
  }

  .cart-line-icon {
    width: 74px;
    height: 52px;
    background-size: contain;
  }

  .cart-count {
    top: -4px;
    right: -4px;
  }

  .header-search {
    grid-template-columns: minmax(0, 1fr) 34px;
    flex: 0 0 clamp(138px, 26vw, 170px);
    width: clamp(138px, 26vw, 170px);
    min-width: 0;
    height: 34px;
    margin-bottom: 0;
  }

  .header-search input {
    min-height: 30px;
    padding-left: 12px;
    font-size: 0.9rem;
  }

  .header-search button {
    width: 34px;
    height: 30px;
    font-size: 1.18rem;
  }

  .search-results {
    width: min(340px, calc(100vw - 32px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .trust-strip,
  .grid-4,
  .grid-3,
  .product-detail,
  .about-band,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head,
  .cta-band .container {
    align-items: start;
    flex-direction: column;
  }

  .bougainvillea-sort {
    width: min(100%, 260px);
    min-width: 0;
  }

  .product-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-detail-media {
    position: static;
    max-height: none;
    aspect-ratio: 1 / 1;
    min-height: 0;
    background: #f0f7ee;
  }

  .product-detail-media:has(.product-gallery-thumbnails) {
    height: auto;
    max-height: none;
  }

  .product-gallery-main-frame {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .product-detail-info {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    overflow: visible;
    min-height: auto;
    padding: 28px 20px 80px;
    border-left: none;
    border-top: 1px solid #e8ede6;
  }

  .product-detail-info .single-product-highlights.is-wholesale {
    order: 2;
  }

  .product-detail-info .wholesale-instruction-box {
    order: 3;
  }

  .product-detail-info .detail-actions {
    order: 10 !important;
    margin-top: 16px;
  }

  .product-detail-media img {
    height: 100%;
    min-height: 0;
  }
}

@media (min-width: 641px) and (max-width: 920px), (min-width: 641px) and (hover: none) and (pointer: coarse) {
  .about-band {
    grid-template-columns: 1fr;
  }

  .about-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
  }

  .product-page-head {
    width: 100%;
    align-items: end;
    flex-direction: row;
  }

  .product-page-head .bougainvillea-sort {
    width: min(240px, 36vw);
    margin-left: auto;
  }
}

@media (min-width: 641px) and (max-width: 920px), (min-width: 641px) and (hover: none) and (pointer: coarse) {
  .single-product-highlights {
    position: relative;
    margin-top: 8px;
    padding: 10px 40px 0;
  }

  .product-highlight-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(130px, 32%);
    gap: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-highlight-item {
    min-height: 78px;
    padding: 3px 4px 5px;
    scroll-snap-align: start;
  }

  .product-highlight-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .product-highlight-item strong {
    font-size: 0.64rem;
  }

  .product-highlight-arrow {
    top: 50%;
    display: grid;
    width: 34px;
    height: 48px;
    padding-bottom: 4px;
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .single-product-highlights {
    position: relative;
    margin-top: 8px;
    padding: 12px 35px 0;
  }

  .product-highlight-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(128px, 48%);
    gap: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-highlight-item {
    min-height: 76px;
    padding: 3px 3px 5px;
    background: transparent;
    border-radius: 0;
    scroll-snap-align: start;
  }

  .product-highlight-icon {
    width: 31px;
    height: 31px;
    font-size: 1rem;
  }

  .product-highlight-item strong {
    font-size: 0.64rem;
  }

  .product-highlight-arrow {
    top: 50%;
    display: grid;
    width: 30px;
    height: 44px;
    padding-bottom: 4px;
    font-size: 2rem;
  }

  .cart-drawer {
    width: 85vw;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
  }

  .cta-band {
    background-position: center, 56% center;
    background-size: cover, cover;
  }

  .product-image-manager-head {
    align-items: stretch;
    flex-direction: column;
  }

  .product-image-entry {
    grid-template-columns: 1fr 40px;
  }

  .product-image-number,
  .product-image-entry label {
    grid-column: 1;
  }

  .product-image-remove {
    grid-column: 2;
    grid-row: 1;
  }


  .product-detail-media:has(.product-gallery-thumbnails) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .product-gallery-thumbnails {
    grid-column: 1;
    grid-row: 2;
    gap: 7px;
    max-width: calc(100% - 16px);
    margin: 0 auto;
    padding: 7px;
  }


  .product-gallery-main-frame {
    min-height: 0;
    border-left: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .product-detail-media .product-gallery-main {
    min-height: 0;
  }



  .product-gallery-thumbnail {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .product-gallery-thumbnail img {
    height: 50px;
  }

  .product-detail-media .product-gallery-thumbnail img {
    height: 50px;
    min-height: 0;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    min-height: 68px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
    padding: 0;
  }

  .logo-image {
    width: 82px;
    margin: -20px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding: 76px 0 42px;
  }

  .header-actions {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: 0;
  }

  .header-search {
    flex: 0 0 104px;
    width: 104px;
    min-width: 0;
    height: 28px;
    grid-template-columns: minmax(0, 1fr) 26px;
  }

  .header-search input {
    min-height: 24px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 0.72rem;
  }

  .header-search input::-webkit-search-cancel-button {
    display: none;
  }

  .header-search button {
    width: 26px;
    height: 24px;
    font-size: 0.95rem;
  }

  .search-results {
    top: calc(100% + 6px);
    width: min(300px, calc(100vw - 24px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-height: min(260px, 62vh);
  }

  .search-result-item {
    grid-template-columns: 34px 1fr;
    gap: 7px;
    padding: 7px 8px;
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .search-result-item img {
    width: 34px;
    height: 30px;
  }

  .header-actions .cart-toggle {
    flex-basis: 74px;
    width: 74px;
    min-width: 74px;
    height: 52px;
  }

  .menu-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    width: 18px;
    margin: 4px auto;
  }

  .cart-line-icon {
    width: 68px;
    height: 48px;
    background-size: contain;
  }

  .cart-count {
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 0.64rem;
  }

  .trust-strip,
  .grid-4,
  .grid-3,
  .add-product-form,
  .product-detail,
  .product-meta,
  .about-band,
  .contact-layout,
  .footer-grid,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding: 30px 0;
  }

  .about-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .product-detail-media img {
    height: auto;
    min-height: 320px;
  }

  .product-detail-info {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 80px;
    border-left: none;
    border-top: 1px solid #e8ede6;
    min-height: auto;
  }

  .product-detail-info .single-product-highlights.is-wholesale {
    order: 2;
  }

  .product-detail-info .wholesale-instruction-box {
    order: 3;
  }

  .product-detail-info .detail-actions {
    order: 10 !important;
    margin-top: 16px;
  }

  .single-loading-image {
    min-height: 320px;
  }

  .single-loading-meta {
    grid-template-columns: 1fr;
  }

  .admin-product-card {
    grid-template-columns: 1fr;
  }

  .admin-product-card img {
    width: 100%;
    height: 170px;
  }

  .admin-product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .banner-manager-head {
    align-items: stretch;
    flex-direction: column;
  }

  .banner-manager-head-actions {
    width: 100%;
    margin-left: 0;
  }

  .banner-manager-head-actions .btn {
    flex: 1 1 auto;
  }

  .banner-manager-form,
  .admin-banner-card {
    grid-template-columns: 1fr;
  }

  .admin-banner-card img {
    width: 100%;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .similar-products-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .similar-products-track .product-card {
    min-width: 0;
  }

  .similar-arrow {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .similar-arrow-prev {
    left: -8px;
  }

  .similar-arrow-next {
    right: -8px;
  }

  .product-card img {
    width: 100%;
    height: 100%;
  }

  .product-body {
    padding: 7px 8px 9px;
  }

  .product-body h3 {
    font-size: 0.76rem;
    line-height: 1.12;
  }

  .price {
    margin: 4px 0 5px;
    font-size: 0.84rem;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 3px;
  }

  .product-actions .btn {
    min-height: 38px;
    padding: 10px 8px;
    font-size: 0.82rem;
  }

  .btn {
    width: 100%;
  }

  .social-links .btn,
  .header-actions .btn {
    width: auto;
  }
}

@media (max-width: 360px) {
  .nav-wrap {
    gap: 2px;
  }

  .logo-image {
    width: 78px;
  }

  .header-actions {
    gap: 2px;
  }

  .header-search {
    flex-basis: 92px;
    width: 92px;
  }

}

/* Scroll reveal animation */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal-horizontal.from-left {
  transform: translate3d(-42px, 0, 0);
}

.scroll-reveal-horizontal.from-right {
  transform: translate3d(42px, 0, 0);
}

.scroll-reveal-horizontal.is-scroll-visible {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-scroll-visible,
  .scroll-reveal-horizontal.from-left,
  .scroll-reveal-horizontal.from-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Pagination Controls Component */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 24px;
  padding: 16px 0;
  width: 100%;
  box-sizing: border-box;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 16px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--leaf-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  user-select: none;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--mint);
  border-color: var(--leaf);
  color: var(--leaf-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24, 76, 47, 0.14);
}

.pagination-btn.is-active {
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 76, 47, 0.28);
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ====== Admin Dashboard Layout ====== */
.admin-dashboard-layout {
  display: flex;
  min-height: calc(100vh - 120px);
  background: var(--cream);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.admin-sidebar {
  width: 260px;
  background: #f8f9fa;
  border-right: 1px solid var(--line);
  padding: 24px 0;
  flex-shrink: 0;
  position: sticky;
  top: 75px; /* Offset for site header */
  height: calc(100vh - 75px);
  overflow-y: auto;
}
.admin-main-area {
  flex-grow: 1;
  padding: 32px 48px;
  background: #ffffff;
  min-width: 0;
}
.admin-pane-head {
  margin-bottom: 24px;
}
.admin-pane-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 4px 0 0;
}

/* Sidebar Nav */
.admin-nav {
  display: flex;
  flex-direction: column;
}
.admin-nav-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.admin-nav-btn:hover {
  background: rgba(24,76,47,0.04);
}
.admin-nav-btn.is-active {
  background: #ffffff;
  border-left-color: var(--leaf);
  color: var(--leaf-dark);
}
.admin-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.admin-nav-group {
  display: flex;
  flex-direction: column;
}
.admin-nav-sublinks {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: #ffffff;
  border-left: none;
  gap: 12px;
}
.admin-nav-sublink {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 12px 12px 42px;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--leaf-dark);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-nav-sublink.is-active {
  background: #e9f2eb;
  border-color: #0066cc;
}

.admin-nav-sublink svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--leaf-dark);
}

.admin-nav-sublink:hover {
  background: #e4f0e5;
}

/* --- Tablet + Mobile: typography & spacing scale-down --- */
@media (max-width: 920px) {
  .admin-dashboard-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    position: static;
    height: auto;
    overflow-y: visible;
  }
  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 16px;
    gap: 8px;
  }
  .admin-nav-btn {
    width: auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 12px 16px;
  }
  .admin-nav-btn.is-active {
    background: transparent;
    border-bottom-color: var(--leaf);
  }
  .admin-nav-group {
    display: contents;
  }
  .admin-nav-sublinks {
    display: contents;
  }
  .admin-nav-sublink {
    width: auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 12px 16px;
    border-radius: 0;
    gap: 8px;
  }
  .admin-nav-sublink.is-active {
    background: transparent;
    border-color: transparent transparent var(--leaf) transparent;
  }
  .admin-main-area {
    padding: 24px 16px;
  }

  #admin-panel .contact-panel {
    padding: 18px;
  }

  #admin-panel input,
  #admin-panel select,
  #admin-panel textarea {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  #admin-panel textarea {
    min-height: 110px;
  }

  #admin-panel .btn {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  #admin-panel label {
    font-size: 0.88rem;
    gap: 6px;
  }

  #admin-panel .section-head p {
    font-size: 0.9rem;
  }

  /* Admin list header: stack title + tools vertically */
  .admin-list-head.section-head {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .admin-list-tools {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .admin-product-counts {
    justify-content: flex-start;
  }

  .admin-product-search {
    width: 100%;
  }

  /* Admin product card: 2-column on tablet */
  .admin-product-card {
    grid-template-columns: 82px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 12px;
  }

  .admin-product-card img {
    grid-row: 1 / 3;
    width: 82px;
    height: 68px;
    align-self: center;
  }

  .admin-product-card h3 {
    font-size: 0.92rem;
  }

  .admin-product-card p {
    font-size: 0.82rem;
  }

  .admin-product-actions {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  #admin-panel .admin-product-actions .btn {
    min-height: 44px;
    font-size: 0.95rem;
  }

  /* Banner manager: stack head on tablet */
  .banner-manager-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .banner-manager-head-actions {
    width: 100%;
    margin-left: 0;
  }

  /* Manager dropdown head: allow wrapping */
  .manager-dropdown-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Product add form: single column on tablet */
  .add-product-form {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .add-product-form label:last-of-type,
  .add-product-form .form-wide {
    grid-column: 1;
  }

  /* Product tools buttons: wrap cleanly */
  .product-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-tools .btn {
    flex: 1 1 auto;
    min-width: 120px;
  }

  /* Banner manager form: single column */
  .banner-manager-form {
    grid-template-columns: 1fr;
  }

  /* Admin banner card: stack vertically */
  .admin-banner-card {
    grid-template-columns: 1fr;
  }

  .admin-banner-card img {
    width: 100%;
    height: auto;
  }

  /* Section head: ensure admin head stacks */
  .admin-content .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* product-size-price table: compact on tablet */
  .product-size-price-head,
  .product-size-price-row {
    gap: 6px;
  }

  /* manager link form */
  .manager-link-form {
    grid-template-columns: 1fr;
  }

  .manager-link-form .btn {
    width: 100%;
  }

  /* home/video link slots */
  .home-section-link-slots,
  .home-video-link-slots {
    grid-template-columns: 1fr;
  }

  /* manager item actions */
  .manager-item {
    align-items: flex-start;
    gap: 8px;
  }

  /* Admin group toggle on tablet */
  .admin-product-group-toggle {
    padding: 14px 48px 14px 16px;
    font-size: 0.96rem;
  }

  .admin-product-group-list {
    padding: 12px;
    gap: 10px;
  }
}

/* ============================================================
   Admin Panel — Mobile Responsive (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Further reduce typography on mobile */
  #admin-panel h2 {
    font-size: clamp(1.1rem, 5.5vw, 1.4rem);
  }

  #admin-panel h3 {
    font-size: 0.92rem;
  }

  #admin-panel .contact-panel {
    padding: 14px 12px;
  }

  #admin-panel input,
  #admin-panel select,
  #admin-panel textarea {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  #admin-panel textarea {
    min-height: 90px;
  }

  #admin-panel .btn {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  #admin-panel label {
    font-size: 0.84rem;
    gap: 5px;
  }

  #admin-panel .admin-product-search input {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  #admin-panel .form-grid {
    gap: 14px;
  }

  #admin-panel .section {
    padding: 22px 0;
  }

  /* Admin product card: fully single column */
  .admin-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 12px;
  }

  .admin-product-card img {
    grid-row: auto;
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .admin-product-card h3 {
    font-size: 0.88rem;
  }

  .admin-product-card p {
    font-size: 0.8rem;
  }

  .admin-product-actions {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  #admin-panel .admin-product-actions .btn {
    min-height: 44px;
    font-size: 0.95rem;
  }

  /* Admin list tools: stack vertically and full-width */
  .admin-list-tools {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .admin-product-search {
    width: 100%;
  }

  /* Product tools: stack buttons vertically on small screens */
  .product-tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-tools .btn {
    width: 100%;
    min-width: 0;
  }

  /* Manager dropdown: stack toggle button below title */
  .manager-dropdown-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Banner manager head: full stack */
  .banner-manager-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .banner-manager-head-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  /* Banner manager form: all fields full width */
  .banner-manager-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Admin banner card: stack all content */
  .admin-banner-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .admin-banner-card img {
    width: 100%;
    height: auto;
  }

  /* Collection checks: 2 per row */
  .product-collection-checks {
    gap: 6px;
  }

  .product-collection-checks label {
    flex: 1 1 calc(50% - 3px);
    justify-content: flex-start;
    padding: 7px 9px;
    font-size: 0.8rem;
  }

  /* Image manager head: stack */
  .product-image-manager-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .product-image-manager-head .btn {
    width: 100%;
  }

  /* Image entry: compact 2-col */
  .product-image-entry {
    grid-template-columns: 1fr 36px;
    gap: 7px;
    padding: 10px;
  }

  .product-image-number,
  .product-image-entry label {
    grid-column: 1;
  }

  .product-image-remove {
    grid-column: 2;
    grid-row: 1;
    width: 30px;
    height: 30px;
    min-height: 30px;
    font-size: 1.1rem;
  }

  /* Manager item: stack info and actions */
  .manager-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .manager-item-actions {
    width: 100%;
    justify-content: flex-end;
  }

  /* Admin form: single column */
  .add-product-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .add-product-form label:last-of-type,
  .add-product-form .form-wide {
    grid-column: 1;
  }

  /* Admin login panel: comfortable on small screens */
  .admin-login-panel {
    padding: 20px 14px;
  }

  /* Admin DB status */
  .admin-db-status {
    margin: -4px 0 12px;
    font-size: 0.86rem;
    padding: 10px 12px;
  }

  /* Group toggle: smaller padding for mobile */
  .admin-product-group-toggle {
    padding: 12px 44px 12px 12px;
    font-size: 0.9rem;
  }

  .admin-product-group-list {
    padding: 8px;
    gap: 8px;
  }

  /* Banner restore button: full width */
  .banner-restore-inside {
    justify-content: stretch;
  }

  .banner-restore-inside .btn {
    width: 100%;
  }

  /* Home section link slots: single column */
  .home-section-link-slots,
  .home-video-link-slots {
    grid-template-columns: 1fr;
  }

  /* Product size price table */
  .product-size-prices {
    padding: 10px;
  }

  .product-size-price-head {
    display: none;
  }

  .product-size-price-row {
    grid-template-columns: 1fr 1fr;
    padding: 9px;
    background: #f8faf8;
    border-radius: 8px;
    gap: 8px;
  }

  .product-size-price-row strong {
    grid-column: 1 / -1;
    font-size: 0.85rem;
  }

  /* Admin product counts */
  .admin-product-counts span {
    font-size: 0.76rem;
    padding: 6px 8px;
  }

  /* Manager dropdown content */
  .manager-dropdown-content {
    margin-top: 16px;
    padding-top: 14px;
  }

  /* Banner manager help text */
  .banner-manager-help {
    font-size: 0.82rem;
  }
}

/* Mega Menu Styles */
@media (min-width: 992px) {
  .has-mega-menu {
    position: relative;
    display: flex;
    align-items: center;
  }
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    min-width: 600px;
    padding: 24px;
    margin-top: 12px;
    pointer-events: none;
  }
  .has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .mega-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }
  .mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 274px;
    gap: 32px;
  }
  .mega-menu-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mega-menu-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    padding-left: 8px;
  }
  .mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .nav-links .has-mega-menu .mega-menu-grid a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .nav-links .has-mega-menu .mega-menu-grid a:hover {
    background: var(--mint);
    color: var(--leaf-dark);
    transform: translateX(4px);
  }
  .mega-menu-right {
    border-left: 1px solid var(--line);
    padding-left: 24px;
  }
  .nav-links .mega-promo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    white-space: normal;
    padding: 0;
    background: transparent;
  }
  .nav-links .mega-promo:hover {
    background: transparent;
    color: var(--leaf-dark);
  }
  .mega-promo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
  }
  .mega-promo:hover img {
    transform: scale(1.03);
  }
  .mega-promo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
  }
  .mega-promo:hover .mega-promo-text {
    background: var(--mint);
    transform: translateX(4px);
  }
  .mega-promo-text strong {
    font-size: 1.1rem;
    color: var(--leaf-dark);
  }
  .mega-promo-text span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
  }
}

@media (max-width: 991px) {
  .has-mega-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links .has-mega-menu > a {
    font-size: 1.1rem;
    padding: 14px;
  }
  .mega-menu {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    gap: 16px;
    margin-top: 4px;
    margin-bottom: 12px;
    border-left: 2px solid var(--mint);
  }
  .has-mega-menu.is-open .mega-menu {
    display: flex;
  }
  .has-mega-menu.is-open .nav-arrow {
    transform: rotate(180deg);
  }

  .mega-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mega-menu-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mega-menu-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-links .has-mega-menu .mega-menu-grid a {
    padding: 10px 14px;
    color: var(--text);
    font-weight: 500;
  }
  .mega-menu-right {
    display: none; /* Hide promo image on mobile to save space */
  }
}

/* Mega Title Link (All) and Arrow */
.nav-links .mega-title-link {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 4px 0;
  padding: 8px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: var(--radius);
}
.nav-links .mega-title-link:hover {
  background: var(--mint);
  color: var(--leaf-dark);
  transform: translateX(4px);
}
.nav-arrow {
  display: inline-block;
  font-size: 1.8em;
  margin-left: -3px;
  position: relative;
  top: 3px;
  line-height: 0;
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .has-mega-menu:hover .nav-arrow {
    transform: rotate(180deg);
  }
}

/* ====== Admin Dashboard Compact Styles ====== */
#admin-panel .contact-panel {
  padding: 16px 20px;
  margin-bottom: 10px;
}
#admin-panel .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}
#admin-panel .admin-content .section-head {
  margin-bottom: 12px;
  padding-bottom: 0;
}
#admin-panel .admin-list-head {
  margin-top: 24px;
}
#admin-panel .admin-list-head h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 2px 0 0;
}
.admin-db-status {
  margin-bottom: 8px;
}

/* Admin Back to Top */
.admin-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
}
.admin-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.admin-back-to-top:hover {
  background: var(--leaf-dark);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .size-dropdown-menu {
    left: -10px;
    right: -10px;
    bottom: calc(100% + 6px);
    border-radius: 10px;
    border: 1px solid #e5e0d5;
  }
  .size-dropdown-header {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .size-dropdown-list {
    max-height: 180px;
    padding: 8px;
    gap: 6px;
  }
  .size-dropdown-item {
    padding: 8px 10px;
    border-radius: 8px;
  }
  .size-dropdown-name {
    font-size: 0.7rem;
  }
  .size-dropdown-price {
    font-size: 0.8rem;
  }
  .size-dropdown-stock {
    font-size: 0.6rem;
  }
}
}

/* Mother Plant link on mobile mega menu */
.nav-links .has-mega-menu .mega-menu-grid a.mega-menu-mobile-only {
  display: none;
}
@media (max-width: 920px) {
  .nav-links .has-mega-menu .mega-menu-grid a.mega-menu-mobile-only {
    display: block;
  }
}

/* New Search Styles */
.header-search-toggle {
  background: transparent;
  border: none;
  color: var(--text-dark);
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search-toggle:hover {
  color: var(--leaf);
}
.header-search-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f6fbf7;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 100;
}
.header-search-expanded {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  height: 44px;
  max-width: 600px;
  margin: 0 auto;
}
.header-search-expanded input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 12px;
  height: 100%;
  font-size: 1rem;
  outline: none;
}
.header-search-expanded input::-webkit-search-cancel-button {
  display: none;
}
.header-search-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #999;
  padding: 0 16px;
  cursor: pointer;
  line-height: 1;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.expanded-results {
  top: calc(100% + 8px);
  width: 100%;
  left: 0;
  right: 0;
  transform: none;
}

@media (max-width: 920px) {
  .header-actions .header-search-toggle {
    display: inline-flex !important;
  }
}

.search-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .search-icon-img {
    width: 24px;
    height: 24px;
  }
}

/* ===== ADMIN PANEL REDESIGN ===== */

/* Admin Header */
.admin-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #1a3c2a 0%, #14532d 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.admin-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 28px;
}
.admin-header-title {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.admin-header-label {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}
.admin-header-site {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.admin-header-home-link {
  margin-left: auto;
  padding: 8px 18px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.admin-header-home-link:hover {
  background: rgba(255,255,255,0.22);
}

/* Admin Footer */
.admin-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #f0f2f0;
  border-top: 1px solid #dde3dd;
  color: #6b7b6e;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Admin Login */
#admin-panel .admin-login-panel {
  max-width: 420px;
  margin: 80px auto;
  padding: 40px 36px;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(20,69,45,0.10), 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
}
#admin-panel .admin-login-panel .eyebrow {
  font-size: 1.3rem;
  color: #14532d;
  letter-spacing: 1px;
}
#admin-panel .admin-login-panel .form-grid {
  text-align: left;
}

/* Dashboard Layout */
.admin-dashboard-layout {
  display: flex;
  min-height: calc(100vh - 68px);
  background: #f0f4f1;
  margin: 0;
  padding: 0;
  border-top: none;
}

/* Sidebar */
.admin-sidebar {
  width: 272px;
  background: linear-gradient(180deg, #1a3c2a 0%, #0f2b1d 100%);
  border-right: none;
  padding: 20px 0;
  flex-shrink: 0;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-nav-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 22px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: all 0.2s;
}
.admin-nav-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.admin-nav-btn.is-active {
  background: rgba(255,255,255,0.1);
  border-left-color: #4ade80;
  color: #fff;
}
.admin-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.8;
}
.admin-nav-btn.is-active svg {
  opacity: 1;
  fill: #4ade80;
}

/* Sidebar sublinks */
.admin-nav-group {
  display: flex;
  flex-direction: column;
}
.admin-nav-sublinks {
  display: flex;
  flex-direction: column;
  padding: 6px 12px 6px 16px;
  background: rgba(0,0,0,0.12);
  border-left: none;
  gap: 4px;
}
.admin-nav-sublink {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px 10px 32px;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-nav-sublink:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.admin-nav-sublink.is-active {
  background: rgba(74,222,128,0.12);
  border-color: #4ade80;
  color: #fff;
}
.admin-nav-sublink svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
  opacity: 0.7;
}
.admin-nav-sublink.is-active svg { opacity: 1; color: #4ade80; }
.admin-nav-sublink small { color: rgba(255,255,255,0.4); }

/* Main Area */
.admin-main-area {
  flex-grow: 1;
  padding: 28px 36px;
  background: #f0f4f1;
  min-width: 0;
}

/* Pane Head */
.admin-pane-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #dde3dd;
}
.admin-pane-head .eyebrow {
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}
.admin-pane-head h2 {
  font-size: clamp(1.15rem, 3.5vw, 1.4rem);
  font-weight: 800;
  margin: 6px 0 0;
  color: #14532d;
}

/* Forms inside admin */
.admin-pane form {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid #e2e8e4;
}
.admin-pane .banner-manager-help {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: #f8faf8;
  border: 1px solid #e2e8e4;
  border-radius: 8px;
  color: #5f7365;
  font-size: 0.85rem;
}

/* Product list tools */
.admin-list-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid #e2e8e4;
}
.admin-product-counts span {
  padding: 6px 12px;
  color: #14532d;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
}
.admin-product-search input {
  width: 100%;
  min-height: 40px;
  margin-top: 6px;
  padding: 9px 16px;
  background: #f8faf8;
  border: 2px solid #d1d9d3;
  border-radius: 10px;
  box-shadow: none;
  transition: border-color 0.2s;
}
.admin-product-search input:focus {
  border-color: #4ade80;
  outline: none;
  background: #fff;
}

/* Product Groups */
.admin-product-group {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8e4;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.admin-product-group-toggle {
  padding: 16px 20px;
  color: #14532d;
  background: #f0faf3;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 0;
}
.admin-product-group-list {
  padding: 12px;
  border-top: 1px solid #e2e8e4;
}

/* Product Cards */
.admin-product-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: white;
  border: 1px solid #e8ede9;
  border-radius: 10px;
  box-shadow: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.admin-product-card:hover {
  border-color: #a7f3d0;
  box-shadow: 0 2px 8px rgba(20,69,45,0.08);
}
.admin-product-card img {
  width: 80px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
}
.admin-source-badge {
  display: inline-flex;
  margin-right: 6px;
  padding: 2px 8px;
  color: #14532d;
  background: #ecfdf5;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Banner Cards */
.admin-banner-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.admin-banner-card {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e2e8e4;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.admin-banner-card img {
  border-radius: 8px;
}

/* DB Status */
.admin-db-status {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
}
.admin-db-status.success {
  color: #14532d;
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.admin-db-status.error {
  color: #be123c;
  background: #fff1f2;
  border-color: #fecdd3;
}

/* Back to top */
.admin-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #14532d;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  place-items: center;
  transition: all 0.2s;
  z-index: 50;
}
.admin-back-to-top.is-visible { display: grid; }
.admin-back-to-top:hover { background: #166534; transform: translateY(-2px); }

/* Manager items */
.admin-pane .manager-item {
  background: #fff;
  border: 1px solid #e2e8e4;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

/* Banner restore */
.banner-restore-inside {
  margin-top: 16px;
}

/* ===== Mobile Admin ===== */
@media (max-width: 1024px) {
  .admin-header-inner { padding: 10px 16px; gap: 12px; }
  .admin-header-label { font-size: 1rem; }
  .admin-header-home-link { padding: 6px 12px; font-size: 0.78rem; }

  .admin-dashboard-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    background: #1a3c2a;
    border-right: none;
    border-bottom: 1px solid #142e20;
    padding: 8px 0;
    position: static;
    height: auto;
    overflow-y: visible;
  }
  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 12px;
    gap: 4px;
  }
  .admin-nav-btn {
    width: auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 10px 14px;
    font-size: clamp(0.72rem, 3vw, 0.82rem);
  }
  .admin-nav-btn.is-active {
    background: rgba(255,255,255,0.08);
    border-bottom-color: #4ade80;
    border-left-color: transparent;
  }
  .admin-nav-group { display: contents; }
  .admin-nav-sublinks { display: contents; }
  .admin-nav-sublink {
    width: auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 10px 14px;
    border-radius: 0;
    gap: 6px;
    font-size: clamp(0.72rem, 3vw, 0.82rem);
  }
  .admin-nav-sublink.is-active {
    background: rgba(74,222,128,0.08);
    border-color: transparent transparent #4ade80 transparent;
  }
  .admin-main-area {
    padding: 20px 14px;
  }
  .admin-pane form {
    padding: 16px;
  }
  .admin-list-tools {
    padding: 12px 14px;
  }

  .admin-banner-card {
    grid-template-columns: 1fr;
  }
  .admin-banner-card img {
    width: 100%;
  }
  #admin-panel .admin-login-panel {
    margin: 40px auto;
    padding: 28px 20px;
  }
}

/* Tablet & Mobile Banner Optimization */
@media (max-width: 1024px) {
  .home-banner {
    aspect-ratio: 16 / 7;
    min-height: 250px;
  }
  .home-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-banner-text-box {
    bottom: 35px;
    left: 5%;
    max-width: 82%;
  }
  .home-banner-text-box .banner-badge {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 7px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .home-banner-text-box h2 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 2px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.85);
  }
  .home-banner-text-box p {
    font-size: clamp(0.82rem, 1.6vw, 0.98rem);
    margin-bottom: 2px;
    line-height: 1.35;
    max-width: 480px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  }
  .home-banner-text-box .banner-shop-btn {
    width: max-content;
    min-height: 32px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    margin-top: 8px;
  }
  .home-banner-dots {
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .home-banner {
    aspect-ratio: 16 / 9;
    min-height: 200px;
    max-height: 350px;
  }
  .home-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-banner-text-box {
    bottom: 28px;
    left: 5%;
    max-width: 86%;
  }
  .home-banner-text-box > * {
    transform: translateX(-15px);
  }
  .home-banner-text-box .banner-badge {
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .home-banner-text-box h2 {
    font-size: clamp(1.15rem, 5.2vw, 1.55rem);
    font-weight: 900;
    margin-bottom: 2px;
    line-height: 1.18;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.85);
  }
  .home-banner-text-box p {
    font-size: clamp(0.72rem, 3.2vw, 0.84rem);
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    max-width: 320px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
  }
  .home-banner-text-box .banner-shop-btn {
    width: max-content;
    min-height: 28px;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    margin-top: 6px;
  }
  .home-banner-dots {
    bottom: 8px;
  }
}


/* Admin Panel Responsive Fixes */
@media (max-width: 1024px) {
  .admin-product-card {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    align-items: flex-start;
  }
  .admin-product-card img {
    grid-row: 1 / 3;
    height: 100%;
    max-height: 120px;
  }
  .admin-product-actions {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
  }
  #admin-panel .admin-product-actions .btn {
    min-height: 44px;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .admin-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .admin-product-card img {
    grid-row: auto;
    width: 100%;
    height: 180px;
    max-height: none;
  }
  .admin-product-actions {
    grid-column: 1;
    margin-top: 4px;
  }
}

.size-choice-dialog {
  max-width: 500px;
}
.size-dropdown-wrap {
  position: relative;
  width: 100%;
}
.size-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: -8px;
  right: -8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 100;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.size-dropdown-menu[hidden] {
  display: none !important;
}
.size-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f7faf6;
  border-bottom: 1px solid #e5e0d5;
  font-weight: 800;
  font-size: 0.8rem;
  color: #2f322f;
}
.size-dropdown-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: #8d8d8d;
  cursor: pointer;
  padding: 0 4px;
}
.size-dropdown-list {
  max-height: 250px;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.size-dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 8px 10px;
  background: #f7faf6;
  border: 1px solid #e5e0d5;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}
.size-dropdown-item:hover:not(:disabled) {
  border-color: #86efac;
  background: #f0fdf4;
}
.size-dropdown-item.is-out {
  background: #fafafa;
  border-color: #e5e0d5;
  cursor: not-allowed;
  opacity: 0.7;
}
.size-dropdown-name {
  font-size: 0.7rem;
  font-weight: 800;
  color: #2f322f;
  margin-bottom: 2px;
}
.size-dropdown-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2f322f;
}
.size-dropdown-item.is-out .size-dropdown-price {
  color: #929292;
}
.size-dropdown-stock {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #16a34a;
  margin-top: 2px;
}
.size-dropdown-item.is-out .size-dropdown-stock {
  color: #d84d77;
}

.size-dropdown-wrap .btn {
  width: 100%;
}


@media (max-width: 768px) {
  .size-dropdown-menu {
    left: -12px;
    right: -12px;
    bottom: calc(100% + 6px);
    border-radius: 10px;
    border: 1px solid #e5e0d5;
  }
  .size-dropdown-header {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .size-dropdown-list {
    max-height: 200px;
    padding: 8px;
    gap: 6px;
  }
  .size-dropdown-item {
    padding: 8px 10px;
    border-radius: 8px;
  }
  .size-dropdown-name {
    font-size: 0.75rem;
  }
  .size-dropdown-price {
    font-size: 0.85rem;
  }
  .size-dropdown-stock {
    font-size: 0.65rem;
  }
}
