:root {
  /* Deepened back to a rich forest-green brand palette (nav/footer/
     buttons/hero) to match a bolder, ownkind.ae-style look — reverses
     an earlier pass that lightened this to a medium sage tone. Variable
     names kept as-is (tea-pink/plum/dusty-rose/gold) to avoid touching
     every reference site-wide — only the values changed. (A coral/
     watermelon hero and a light-green wash were both tried and reverted
     — the hero and shop banner use the deep green surfaces below.) */
  --ivory-blush: #F7F9F6;
  --paper: #FFFFFF;
  --tea-pink: #1F5C3E;
  --plum: #12291E;
  --dusty-rose: #8FD19E;
  --sand: #EEF3E8;
  --gold: #E6A935;
  --muted: #6B7970;
  --muted-body: #4C5A52;
  --hairline: #E4E9DF;
  --hairline-strong: #D7E0D1;
  --ink-hover: #164A30;
  --success-bg: #F6FAF1;
  --success-border: #E0ECD4;
  --success-dot: #1F5C3E;
  --success-text: #3A473F;

  /* Category tile tints, matched from the doc (Electrolytes/Coffee/
     Hair & Body/Cosmetics) */
  --tint-electrolytes-bg: #E7F0DD;
  --tint-electrolytes-ink: #3E4A38;
  --tint-coffee-bg: #EFE7DB;
  --tint-coffee-ink: #4A3F2E;
  --tint-shampoo-bg: #DFEEE7;
  --tint-shampoo-ink: #2E4A3F;
  --tint-cosmetics-bg: #F0E4E6;
  --tint-cosmetics-ink: #5C3A44;

  --radius-lg: 1.375rem;
  --radius-md: 1.125rem;
  --radius-sm: 0.75rem;
  --shadow-soft: 0 1px 2px rgba(18, 41, 30, 0.06), 0 14px 30px -14px rgba(18, 41, 30, 0.25);
  --shadow-soft-lg: 0 2px 6px rgba(18, 41, 30, 0.07), 0 24px 44px -26px rgba(18, 41, 30, 0.35);
  --shadow-lift: 0 1px 2px rgba(18, 41, 30, 0.05), 0 32px 60px -28px rgba(18, 41, 30, 0.4);

  /* Bootstrap components (.btn, .form-control, .table, .card, etc.) read
     font-family from this variable directly, so overriding body's
     font-family alone doesn't reach them - this is what made the admin
     panel's Bootstrap-heavy markup fall back to the system font instead
     of matching the rest of the site. */
  --bs-body-font-family: 'Montserrat', sans-serif;
  --bs-font-sans-serif: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--ivory-blush);
  color: var(--plum);
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, .display-serif {
  font-family: 'Montserrat', sans-serif;
  color: var(--plum);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.mono {
  font-family: 'Montserrat', sans-serif;
}

a {
  color: var(--plum);
  text-decoration: none;
}

/* ---------- Navbar (darimooch-style 3-tier: logo center, icons right, links row) ---------- */
.navbar-shopxtra {
  background-color: rgba(246, 248, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Fixed-height top row (pinned via grid-template-rows) so an oversized logo
   can visually bleed without the bar itself growing - a bare auto row would
   otherwise silently stretch to fit the tallest child. Links live in this
   same row on desktop (via the display:contents unwrap below); on mobile
   they collapse into their own auto-height row underneath. */
.navbar-top {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-rows: 58px;
  align-items: center;
  column-gap: 0.5rem;
  padding: 0;
  overflow: visible;
  transition: grid-template-rows 0.3s ease;
}

.navbar-shopxtra.is-scrolled .navbar-top {
  grid-template-rows: 48px;
}

@media (min-width: 992px) {
  .navbar-top {
    grid-template-rows: 72px;
    column-gap: 1rem;
  }
  .navbar-shopxtra.is-scrolled .navbar-top {
    grid-template-rows: 56px;
  }
}

.navbar-brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  padding: 0;
  line-height: 1;
  overflow: visible;
}

.navbar-toggler-dm {
  grid-column: 2;
  grid-row: 1;
  background: none;
  border: none;
  color: var(--plum);
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

.navbar-links-collapse {
  grid-column: 1 / -1;
  grid-row: 2;
}

.navbar-brand-text {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--plum);
  text-transform: uppercase;
  transition: font-size 0.3s ease;
  white-space: nowrap;
}

.navbar-shopxtra.is-scrolled .navbar-brand-text {
  font-size: 1.6rem;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
  display: block;
}

.navbar-shopxtra.is-scrolled .logo-img {
  height: 42px;
}

.navbar-top-right {
  grid-column: 4;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

@media (min-width: 992px) {
  .navbar-toggler-dm {
    display: none;
  }
  .navbar-brand-text {
    font-size: 3rem;
  }
  .navbar-shopxtra.is-scrolled .navbar-brand-text {
    font-size: 2rem;
  }
  .logo-img {
    height: 106px;
  }
  .navbar-shopxtra.is-scrolled .logo-img {
    height: 68px;
  }
}

.logo-img-footer {
  height: 110px;
}

/* search row: hidden until the search icon toggles it open */
.navbar-search-row {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid transparent;
}

.navbar-search-row.is-open {
  max-height: 84px;
  border-top-color: var(--hairline);
}

.navbar-search-row .container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  max-width: 420px;
  margin: 0 auto;
}

.nav-search-icon {
  color: #9AA89D;
  font-size: 0.85rem;
}

.nav-search-wrap input {
  border: none;
  outline: none;
  background: none;
  font-size: 0.9rem;
  width: 100%;
  color: var(--plum);
}

/* Links row: on mobile this is a normal collapsible block below the top
   row; on desktop the wrapper unwraps (display:contents) so the <ul>
   itself becomes a grid item sitting inline with the logo/icons row. */
.navbar-links-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0.6rem 0.25rem;
  scrollbar-width: none;
}

.navbar-links-row::-webkit-scrollbar {
  display: none;
}

.navbar-links-row.has-open-dropdown {
  overflow: visible;
}

.navbar-links-row a {
  display: inline-block;
  color: #3A473F;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-links-row a:hover,
.navbar-links-row a:focus-visible {
  background-color: var(--sand);
  color: var(--plum);
}

@media (min-width: 992px) {
  .navbar-links-collapse {
    display: contents !important;
  }
  .navbar-links-collapse .navbar-links-row {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    padding: 0;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-dropdown-trigger a {
  padding-right: 0.35rem;
}

.nav-dropdown-caret {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  color: #3A473F;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-caret:hover,
.nav-dropdown-caret:focus-visible {
  background-color: var(--sand);
  color: var(--plum);
}

.nav-dropdown-caret[aria-expanded="true"] {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(18, 41, 30, 0.12);
  padding: 0.4rem;
  z-index: 60;
}

.nav-dropdown-menu.is-open {
  display: block;
}

.nav-dropdown[data-category="shampoo"] .nav-dropdown-menu,
.nav-dropdown[data-category="cosmetics"] .nav-dropdown-menu {
  left: auto;
  right: 0;
}

.nav-dropdown-menu .nav-dropdown-item,
.nav-dropdown-viewall,
.nav-dropdown-loading,
.nav-dropdown-empty {
  display: block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
}

.nav-dropdown-menu .nav-dropdown-item {
  color: var(--tea-pink);
  font-weight: 500;
  cursor: pointer;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background-color: var(--sand);
  color: var(--plum);
}

.nav-dropdown-viewall {
  color: var(--tea-pink);
  font-weight: 700;
  border-top: 1px solid var(--hairline);
  margin-top: 0.25rem;
  padding-top: 0.6rem;
}

.nav-dropdown-subhead {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.55rem 0.65rem 0.2rem;
}

.nav-dropdown-loading,
.nav-dropdown-empty {
  color: var(--muted);
}

.nav-icon-btn {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--hairline);
  color: #3A473F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

@media (min-width: 992px) {
  .nav-icon-btn {
    width: 38px;
    height: 38px;
  }
}

.nav-icon-btn:hover {
  border-color: var(--tea-pink);
  color: var(--tea-pink);
}

.nav-bag-btn {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tea-pink);
  color: #fff;
  border-radius: 50%;
  transition: background 0.2s ease;
}

@media (min-width: 992px) {
  .nav-bag-btn {
    width: 38px;
    height: 38px;
  }
}

.nav-bag-btn:hover {
  background: var(--ink-hover);
  color: #fff;
}

#cart-count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--dusty-rose);
  color: #173A2B;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  border: 2px solid var(--paper);
}


/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--ivory-blush) 0%, var(--sand) 60%, var(--tea-pink) 130%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  margin: 2rem 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero p.lead {
  color: #4A4A3E;
  max-width: 42ch;
}

.btn-plum {
  background-color: var(--tea-pink);
  border-color: var(--tea-pink);
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-plum:hover,
.btn-plum:focus-visible {
  background-color: var(--ink-hover);
  border-color: var(--ink-hover);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn-outline-plum {
  border: 1.5px solid var(--hairline-strong);
  color: var(--tea-pink);
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  background: #fff;
}

.btn-outline-plum:hover,
.btn-outline-plum:focus-visible {
  background-color: var(--sand);
  border-color: var(--tea-pink);
  color: var(--tea-pink);
}

/* ---------- Ritual timeline ---------- */
.ritual-section {
  padding: 3rem 0;
}

.ritual-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ritual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

.ritual-card .ritual-time {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
}

.ritual-card.morning { border-top: 4px solid var(--gold); }
.ritual-card.midday { border-top: 4px solid var(--dusty-rose); }
.ritual-card.evening { border-top: 4px solid var(--plum); }

/* ---------- Category pills ---------- */
.category-tint {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--tea-pink);
  color: #fff;
}

/* ---------- Product cards ---------- */
.product-card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card:hover .product-image {
  box-shadow: var(--shadow-soft-lg);
}

.product-card-skeleton {
  background-color: var(--paper);
  border: 1px solid var(--hairline);
  height: 100%;
  padding: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.skeleton-block {
  background: linear-gradient(90deg, var(--sand) 25%, var(--hairline-strong) 37%, var(--sand) 63%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: 6px;
}

.skeleton-image {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  margin-bottom: 0.3rem;
}

.skeleton-line {
  height: 0.9rem;
  margin: 0 1.1rem;
}

@keyframes skeleton-shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-block {
    animation: none;
  }
}

.product-card-media-link,
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.product-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-rose);
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover .product-image-hover {
  opacity: 1;
}

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

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--tea-pink);
  color: #fff;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card-badge-muted {
  background: rgba(28, 35, 29, 0.78);
  color: var(--ivory-blush);
}

.product-card-urgency {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: var(--gold);
  color: #4A3305;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.product-card.is-out-of-stock .product-image {
  opacity: 0.55;
  filter: grayscale(0.4);
}

.product-card.is-out-of-stock .product-name {
  color: var(--muted);
}

.product-card.is-out-of-stock:hover {
  transform: none;
  box-shadow: none;
}

.quick-add-btn {
  display: block;
  width: calc(100% - 2.2rem);
  margin: 0.85rem 1.1rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  background: var(--tea-pink);
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.quick-add-btn:hover:not(:disabled) {
  background: var(--ink-hover);
  transform: translateY(-1px);
}

.quick-add-btn:disabled {
  opacity: 0.6;
  color: var(--muted);
  background: var(--hairline-strong);
  cursor: not-allowed;
}

.product-card .product-body {
  padding: 0.9rem 0.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}

.product-card .category-tint {
  align-self: flex-start;
}

.product-card .product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.3;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: 'Montserrat', sans-serif;
}

.product-card-price-row .price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink-hover);
  font-family: 'Montserrat', sans-serif;
}

.product-card-price-row .compare-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  margin-left: 0;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}

.product-card-rating-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--plum);
}

/* ---------- Filters ---------- */
.admin-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--dusty-rose);
}

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

.filter-panel {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--plum);
  color: var(--ivory-blush);
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.filter-toggle-btn:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.offcanvas {
  background-color: var(--ivory-blush);
}

.offcanvas-header {
  border-bottom: 1px solid var(--sand);
}

.offcanvas-header .h5 {
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Pills / tabs ---------- */
.nav-pills .nav-link {
  color: var(--plum);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-pills .nav-link:hover {
  background-color: var(--sand);
}

.nav-pills .nav-link.active {
  background-color: var(--plum);
  color: var(--ivory-blush);
}

/* ---------- Nav search ---------- */
#nav-search-input {
  background-color: var(--ivory-blush);
  border: 1px solid var(--hairline-strong);
  color: var(--plum);
}

#nav-search-input::placeholder {
  color: var(--muted);
}

#nav-search-input:focus {
  background-color: #fff;
  color: var(--plum);
}

#nav-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  max-height: 380px;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft-lg);
  z-index: 1100;
}

#nav-search-results a.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  color: var(--plum);
}

#nav-search-results a.search-result-item:hover,
#nav-search-results a.search-result-item:focus-visible {
  background-color: var(--ivory-blush);
}

#nav-search-results .search-result-thumb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-rose);
  font-size: 0.9rem;
}

#nav-search-results .search-view-all {
  display: block;
  text-align: center;
  padding: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  border-top: 1px solid var(--sand);
}

/* ---------- Stats ---------- */
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4A4A3E;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  color: var(--gold);
}

.testimonial-card p {
  color: var(--plum);
  font-size: 0.98rem;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--plum);
  font-size: 0.9rem;
}

/* ---------- FAQ accordion ---------- */
.accordion-item {
  border: none;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--plum);
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: var(--sand);
  color: var(--plum);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 77, 0.25);
}

.accordion-button::after {
  filter: sepia(1) saturate(2) hue-rotate(-10deg);
}

.accordion-body {
  color: #4A4A3E;
}

/* ---------- Account dashboard ---------- */
.dashboard-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gold), var(--dusty-rose));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.dashboard-nav-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--plum);
  font-weight: 500;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dashboard-nav-btn:hover {
  background-color: var(--ivory-blush);
}

.dashboard-nav-btn.active {
  background-color: var(--plum);
  color: var(--ivory-blush);
}

/* ---------- Order history row ---------- */
.order-history-row {
  background: none;
  border: none;
  color: inherit;
}

.order-history-row:hover {
  background-color: var(--ivory-blush);
}

/* ---------- Sale page ---------- */
.sale-hero {
  background: linear-gradient(135deg, var(--tea-pink), var(--dusty-rose) 60%, var(--gold));
  padding: 3.5rem 1.5rem 3rem;
}

.sale-hero-orb {
  position: absolute;
  top: 50%;
  right: -4%;
  width: 280px;
  height: 280px;
  transform: translateY(-50%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.sale-hero > *:not(.sale-hero-orb) {
  position: relative;
  z-index: 1;
}

.sale-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--plum);
}

.sale-hero .lead {
  color: #3A4A32;
  max-width: 48ch;
  margin: 0 auto;
}

.sale-pill {
  background-color: #fff;
  border: 1.5px solid var(--sand);
  color: var(--plum);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sale-pill:hover {
  border-color: var(--gold);
}

.sale-pill.active {
  background-color: var(--plum);
  border-color: var(--plum);
  color: var(--ivory-blush);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--sand);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.value-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--plum);
}

/* ---------- Button spinner / success state ---------- */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(250, 243, 240, 0.4);
  border-top-color: var(--ivory-blush);
  border-radius: 50%;
  animation: btn-spin-kf 0.7s linear infinite;
  vertical-align: -2px;
  margin-right: 0.4rem;
}

@keyframes btn-spin-kf {
  to { transform: rotate(360deg); }
}

.btn-checkmark {
  display: inline-block;
  margin-right: 0.3rem;
  animation: checkmark-pop-kf 0.4s ease;
}

@keyframes checkmark-pop-kf {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); }
}

.btn-success-state {
  background-color: #4a7c59 !important;
  border-color: #4a7c59 !important;
}

/* ---------- Fly to cart ---------- */
.fly-to-cart-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--gold) 70%);
  box-shadow: 0 4px 10px rgba(201, 162, 77, 0.5);
  pointer-events: none;
  z-index: 2000;
  margin-left: -9px;
  margin-top: -9px;
}

.cart-added-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.25rem;
  z-index: 2100;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-soft-lg);
  padding: 0.75rem 1.1rem;
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-added-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-added-toast-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-added-toast-check {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--tea-pink);
  border-radius: 6px;
  font-size: 1.1rem;
}

.cart-added-toast-text {
  font-size: 0.85rem;
  color: var(--plum);
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .cart-added-toast {
    top: auto;
    bottom: 1.25rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

/* ---------- Sticky add-to-cart bar ---------- */
.sticky-add-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0 -8px 24px rgba(74, 59, 58, 0.15);
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
}

.sticky-add-bar.visible {
  transform: translateY(0);
}

body:has(.sticky-add-bar.visible) .whatsapp-float,
body:has(.sticky-add-bar.visible) .back-to-top {
  bottom: 5.5rem;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--plum);
  color: var(--ivory-blush);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1200;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #3a2e2d;
}

/* ---------- WhatsApp float button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1200;
  transition: transform 0.2s ease;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #25d366;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .whatsapp-float::before {
    animation: whatsapp-pulse-ring 2.8s ease-out infinite;
  }
}

@keyframes whatsapp-pulse-ring {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Form controls ---------- */
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 77, 0.25);
}

.password-field-wrap {
  position: relative;
}

.password-field-wrap .form-control {
  padding-right: 2.75rem;
}

.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
}

.password-toggle-btn:hover {
  color: var(--tea-pink);
}

.password-toggle-btn.is-active {
  color: var(--tea-pink);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background-color: var(--plum);
  color: #A8BFA3;
  margin-top: 1.5rem;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr 1fr 1.15fr;
  gap: 2.25rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-brand-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #A8BFA3;
  max-width: 30ch;
  margin: 0 0 1.1rem;
}

.footer-brand-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #A8BFA3;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 0.9rem;
}

.footer-col a {
  display: block;
  color: #A8BFA3;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--dusty-rose);
}

.footer-newsletter-col p {
  font-size: 0.88rem;
  color: #A8BFA3;
  margin: 0 0 0.75rem;
}

.footer-bottom-bar {
  border-top: 1px solid #3D5C4C;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #7F9488;
}

/* ---------- Focus states ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Announcement bar (scrolling marquee) ---------- */
.announcement-bar {
  background: var(--tea-pink);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 0.6rem 0;
  overflow: hidden;
}

.announcement-marquee {
  overflow: hidden;
}

.announcement-marquee-track {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  white-space: nowrap;
  animation: announcement-scroll 22s linear infinite;
  color: var(--gold);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.announcement-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.announcement-highlight {
  color: var(--dusty-rose);
  font-weight: 700;
}

.announcement-bar .dot {
  opacity: 0.6;
  margin: 0 0.25rem;
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .announcement-marquee-track {
    animation: none;
  }
}

/* ---------- Bestseller ribbon ---------- */
.product-card {
  position: relative;
}

.sale-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  background-color: #fff;
  color: #c0392b;
  border: 1.5px solid #c0392b;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.compare-price {
  text-decoration: line-through;
  color: #8A8A72;
  font-size: 0.8rem;
  margin-left: 0.4rem;
  font-weight: 400;
}

.bestseller-ribbon {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  background-color: var(--plum);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(74, 59, 58, 0.25);
}

/* ---------- Motion: navbar scroll state ---------- */
.navbar-shopxtra {
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-shopxtra.is-scrolled {
  box-shadow: 0 8px 24px rgba(74, 59, 58, 0.25);
}

/* ---------- Motion: hero decorations ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-sparkle {
  position: absolute;
  color: var(--tea-pink);
  opacity: 0.6;
  pointer-events: none;
  animation: sparkle-float 7s ease-in-out infinite;
}

.hero-sparkle.s2 { color: var(--gold); animation-duration: 9s; animation-delay: -2s; }
.hero-sparkle.s3 { color: var(--dusty-rose); animation-duration: 6s; animation-delay: -4s; }

@keyframes sparkle-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-14px, -22px) rotate(20deg); }
}

#hero-3d {
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  cursor: grab;
  position: relative;
}

#hero-3d::before {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.35), transparent 70%);
  z-index: -1;
  animation: orb-glow-pulse-kf 4s ease-in-out infinite;
}

@keyframes orb-glow-pulse-kf {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

#hero-3d canvas {
  display: block;
}

.hero-gradient-blob {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 992px) {
  .hero-gradient-blob {
    top: -80px;
    right: -60px;
    width: 420px;
    height: 420px;
  }
}

.hero > .flex-grow-1,
.hero > #hero-3d {
  position: relative;
  z-index: 1;
}

/* ---------- Motion: scroll reveal ---------- */
[data-reveal] {
  will-change: transform, opacity;
}

/* ---------- Motion: ritual timeline connector ---------- */
.ritual-section {
  position: relative;
}

.ritual-line-track {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--dusty-rose), var(--plum));
  background-size: 300% 100%;
  background-position: 100% 0;
  border-radius: 999px;
  margin: 0 auto 2.5rem;
  max-width: 70%;
  transform-origin: left center;
  transform: scaleX(0);
}

/* ---------- Motion: product card tilt ---------- */
.product-card {
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}

.product-card .product-image span,
.product-image svg {
  display: inline-block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image span,
.product-card:hover .product-image svg {
  transform: scale(1.1) rotate(4deg);
}

/* ---------- Motion: buttons ---------- */
.btn-plum, .btn-outline-plum {
  position: relative;
  overflow: hidden;
}

.btn-bounce {
  animation: btn-bounce-kf 0.4s ease;
}

@keyframes btn-bounce-kf {
  0% { transform: scale(1); }
  40% { transform: scale(0.92); }
  70% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ---------- Motion: cart badge pulse ---------- */
#cart-count-badge {
  transition: transform 0.15s ease;
}

#cart-count-badge.badge-pulse {
  animation: badge-pulse-kf 0.5s ease;
}

@keyframes badge-pulse-kf {
  0% { transform: scale(1); }
  35% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- Shared editorial patterns ---------- */
.eyebrow {
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
}

.section-head-link {
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- Home hero: rotating ritual carousel ---------- */
.home-hero {
  padding: 0 0 2.5rem;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  height: clamp(460px, 54vw, 620px);
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide-morning,
.hero-slide-evening {
  background: linear-gradient(135deg, var(--plum), #0A1A12 85%);
}

.hero-slide-midday {
  background: linear-gradient(135deg, var(--tea-pink), var(--ink-hover) 85%);
}

.hero-slide-coffee {
  background: #1a1310;
}

.hero-slide-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-photo img,
.hero-slide-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-slide-morning .hero-slide-photo img,
.hero-slide-morning .hero-slide-photo video {
  object-position: center 55%;
}

.hero-slide-evening .hero-slide-photo img,
.hero-slide-evening .hero-slide-photo video {
  object-position: center 45%;
}

.hero-slide-midday .hero-slide-photo img,
.hero-slide-midday .hero-slide-photo video {
  object-position: center 35%;
}

.hero-slide-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 7, 5, 0.88) 0%, rgba(10, 7, 5, 0.62) 42%, rgba(10, 7, 5, 0.18) 75%);
}

.hero-slide-icon {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(48vw, 540px);
  height: min(48vw, 540px);
  opacity: 0.12;
  color: #fff;
  pointer-events: none;
}

.hero-slide-icon svg {
  width: 100%;
  height: 100%;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-slide-copy {
  max-width: 620px;
}

.hero-slide-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
}

.hero-slide-copy h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.8vw, 3.85rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
}

.hero-slide-copy .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.btn-hero-light,
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 8px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-hero-light {
  background: #fff;
  color: var(--plum);
}

.btn-hero-light:hover,
.btn-hero-light:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.35);
  color: var(--plum);
}

.btn-hero-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.32);
}

.hero-carousel-arrow.prev { left: 1.25rem; }
.hero-carousel-arrow.next { right: 1.25rem; }

.hero-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.25s ease;
}

.hero-carousel-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0 0;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--tea-pink);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted-body);
}

.hero-stat-divider {
  width: 1px;
  height: 2.1rem;
  background: var(--hairline-strong);
}

@media (max-width: 767.98px) {
  .hero-carousel-track {
    height: clamp(460px, 130vw, 620px);
  }
  .hero-slide-icon {
    opacity: 0.09;
    width: 70vw;
    height: 70vw;
    right: -18%;
  }
  /* Full-bleed photo slides: the slide is much taller/narrower on mobile
     than the source photos are shot for, so object-fit:cover crops far
     more aggressively (losing side content a left-to-right desktop
     gradient assumes is there). A near-uniform dark scrim keeps text
     legible regardless of exactly what crop lands under it. */
  .hero-slide-photo::after {
    background: linear-gradient(180deg, rgba(10, 7, 5, 0.82) 0%, rgba(10, 7, 5, 0.72) 55%, rgba(10, 7, 5, 0.85) 100%);
  }
  .hero-slide-copy {
    max-width: none;
  }
  .hero-slide-copy .lead {
    max-width: none;
  }
  .hero-carousel-arrow {
    width: 38px;
    height: 38px;
  }
  .hero-trust-bar {
    gap: 1rem 1.25rem;
  }
}

/* ---------- Why ShopXtra page ---------- */
.why-us-hero {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.why-us-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.6rem 0 1rem;
}

.why-us-hero p {
  color: var(--muted-body);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}

.why-us-body {
  max-width: 640px;
  margin: 0 auto;
}

.why-us-body p {
  color: var(--muted-body);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 1.75rem;
}

.why-us-body p:first-of-type::first-letter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 0.8;
  float: left;
  padding: 0.1rem 0.5rem 0 0;
  color: var(--tea-pink);
}

.why-us-quote {
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--plum);
  text-align: center;
  max-width: 560px;
  margin: 2.5rem auto;
  position: relative;
  padding: 0 1rem;
}

.why-us-quote::before,
.why-us-quote::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--tea-pink);
  margin: 0 auto 1.1rem;
}

.why-us-quote::after {
  margin: 1.1rem auto 0;
}

.why-us-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Bestseller carousel ---------- */
.bestseller-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.3rem 0.1rem 1.1rem;
  scroll-snap-type: x mandatory;
}

.bestseller-carousel > div {
  scroll-snap-align: start;
  flex: 0 0 clamp(220px, 26vw, 270px);
  width: auto;
  max-width: none;
  padding: 0;
}

/* ---------- Value props band ---------- */
.trust-band-section {
  padding: 1.5rem 0 2.5rem;
}

.trust-band-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.25rem;
}

.trust-band-head .eyebrow {
  margin-bottom: 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-band-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.trust-band-icon svg {
  width: 36px;
  height: 36px;
}

.trust-band-item:hover .trust-band-icon {
  transform: translateY(-4px);
  background: var(--ink-hover);
}

.trust-band-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .trust-band-icon {
    width: 76px;
    height: 76px;
  }
  .trust-band-icon svg {
    width: 30px;
    height: 30px;
  }
}

.value-props-band {
  background: var(--tea-pink);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  color: #EAF3EA;
}

.value-prop-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.value-prop-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #2C6249;
  color: var(--dusty-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.value-prop-icon svg {
  width: 20px;
  height: 20px;
}

.value-prop-item:hover .value-prop-icon {
  background: var(--dusty-rose);
  color: #173A2B;
  transform: scale(1.08);
}

.value-prop-item h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.25rem;
}

.value-prop-item p {
  color: #B8CCBF;
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------- Bundles band ---------- */
.bundles-band {
  background: linear-gradient(120deg, #E9F3D8, #DCEFE4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  align-items: center;
  overflow: hidden;
}

.bundles-band-pill {
  display: inline-block;
  background: var(--dusty-rose);
  color: #173A2B;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.bundles-band-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin: 1rem 0 0;
}

.bundles-band-copy p {
  color: var(--muted-body);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 420px;
  margin: 0.9rem 0 1.4rem;
}

.bundles-band-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #C9E3D6, #EEF4E6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-soft-lg);
  overflow: hidden;
}

.bundle-visual-pair {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.bundle-visual-item {
  width: 108px;
  height: 108px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-soft-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-visual-plus {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--tea-pink);
}

.bundle-visual-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

/* ---------- FAQ accordion ---------- */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-accordion details {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-accordion details:hover {
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-soft);
}

.faq-accordion details[open] {
  border-color: var(--tea-pink);
}

.faq-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--plum);
}

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

.faq-accordion summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--tea-pink);
  transition: transform 0.2s ease;
}

.faq-accordion details[open] summary::after {
  content: '\2212';
}

.faq-accordion p {
  color: var(--muted-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0.75rem 0 0;
}

.reviews-section {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ---------- Imported / value proposition strip (unused, kept for reference) ---------- */
.import-value-strip {
  background: var(--plum);
  padding: 4.5rem 0;
  border-top: 3px solid var(--tea-pink);
  border-bottom: 3px solid var(--tea-pink);
}

.import-value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.import-value-copy h2 {
  color: var(--ivory-blush);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin: 0.5rem 0 1.1rem;
}

.import-value-highlight {
  color: var(--tea-pink);
}

.import-value-copy p {
  color: #C7BFB2;
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0;
}

.import-value-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.import-value-point {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--tea-pink);
}

.import-value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--tea-pink);
}

.import-value-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ivory-blush);
}

.import-value-desc {
  font-size: 0.85rem;
  color: #B8B0A4;
}

/* ---------- Trust icons row ---------- */
.trust-icons-row {
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.trust-icons-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--tea-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
}

.trust-icon-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--plum);
}

.trust-icon-desc {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 22ch;
}

/* ---------- Category grid ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.category-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.category-tile-image {
  aspect-ratio: 5 / 4;
  background: linear-gradient(150deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.category-tile-image img,
.category-tile-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile-electrolytes { background: var(--tint-electrolytes-bg); }
.category-tile-electrolytes .category-tile-image { background: linear-gradient(150deg, var(--tint-electrolytes-bg), #EAF3DF); color: var(--tint-electrolytes-ink); aspect-ratio: 1 / 1; }
.category-tile-electrolytes .category-tile-image img { object-fit: cover; }
.category-tile-coffee { background: var(--tint-coffee-bg); }
.category-tile-coffee .category-tile-image { background: linear-gradient(150deg, var(--tint-coffee-bg), #F2EBE0); color: var(--tint-coffee-ink); }
.category-tile-shampoo { background: #E4EEDB; }
.category-tile-shampoo .category-tile-image { background: linear-gradient(150deg, #D6E8BF, #EAF3DF); color: var(--tint-shampoo-ink); }
.category-tile-cosmetics { background: var(--tint-cosmetics-bg); }
.category-tile-cosmetics .category-tile-image { background: linear-gradient(150deg, var(--tint-cosmetics-bg), #F4E7EA); color: var(--tint-cosmetics-ink); }

.category-tile-image svg {
  width: 26%;
  transition: transform 0.25s ease;
}

.category-tile:hover .category-tile-image svg {
  transform: scale(1.08);
}

.category-tile-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.category-tile:hover .category-tile-image-hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .category-tile-image-hover {
    transition: none;
  }
}

.category-tile-foot {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.25rem 1.3rem;
}

.category-tile-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--plum);
}

.category-tile-desc {
  font-size: 0.8rem;
  color: var(--muted-body);
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.category-tile-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-hover);
}

/* ---------- Bestseller grid (homepage) ---------- */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bestseller-card {
  display: flex;
  flex-direction: column;
  background-color: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bestseller-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

.bestseller-card-image {
  position: relative;
  height: 270px;
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bestseller-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bestseller-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--tea-pink);
  color: var(--plum);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bestseller-card-body {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bestseller-card-cat {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.bestseller-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: var(--plum);
}

.bestseller-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
}

.bestseller-card-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum);
  font-family: 'Montserrat', sans-serif;
}

.bestseller-add-btn {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  border-radius: 8px;
  padding: 0.4rem 1rem;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.bestseller-add-btn:hover:not(:disabled) {
  background: var(--plum);
  color: var(--ivory-blush);
}

.bestseller-add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Trust band strip ---------- */
.trust-band-strip {
  background: var(--tea-pink);
  padding: 2.25rem 0;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-band-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--plum);
}

.trust-band-sub {
  font-size: 0.85rem;
  color: #5a4340;
}

/* ---------- Kits split section ---------- */
.kits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kits-visual {
  height: 400px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--tea-pink), var(--dusty-rose) 120%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kits-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.kits-visual-emoji {
  font-size: 3rem;
}

.kits-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0.5rem 0 0.75rem;
}

.kits-copy .lead {
  color: var(--muted-body);
  max-width: 40ch;
  margin-bottom: 1.25rem;
}

/* ---------- Reviews v2 ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ---------- Product page reviews (darimooch-style summary + breakdown) ---------- */
.reviews-section-pdp {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
}

.reviews-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--hairline-strong);
}

.reviews-overview-score {
  text-align: center;
}

.reviews-overview-score-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--plum);
  display: block;
  line-height: 1;
}

.reviews-overview-score .review-stars {
  font-size: 1.1rem;
  display: block;
  margin: 0.4rem 0;
}

.reviews-overview-score-count {
  font-size: 0.8rem;
  color: var(--muted);
}

.reviews-overview-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reviews-bar-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 2rem;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted-body);
}

.reviews-bar-track {
  height: 7px;
  border-radius: 999px;
  background: var(--hairline-strong);
  overflow: hidden;
}

.reviews-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
}

@media (max-width: 575.98px) {
  .reviews-overview {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.review-card-v2 {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.review-card-v2::before {
  content: '\201C';
  position: absolute;
  top: 0.4rem;
  right: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.review-card-v2 > * {
  position: relative;
  z-index: 1;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--plum);
  margin: 0;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tea-pink);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--plum);
}

.review-author-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  background: #1B3327;
  border: 1px solid #2F4438;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  color: #fff;
}

.footer-newsletter-form input::placeholder {
  color: #A8BFA3;
}

.footer-newsletter-form button {
  background: var(--dusty-rose);
  color: #173A2B;
  border: none;
  border-radius: 10px;
  padding: 0 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ---------- Shop page background video (per selected category) ---------- */
.shop-bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--ivory-blush);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-bg-video-wrap.is-active {
  opacity: 1;
}

.shop-bg-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-bg-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 246, 0.82);
}

/* ---------- Shop listing controls ---------- */
.shop-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum), #0A1A12 85%);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.shop-banner-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shop-banner-photo img,
.shop-banner-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-banner-photo-cosmetics img,
.shop-banner-photo-cosmetics video {
  object-position: center 78%;
}

.shop-banner-photo-shampoo img,
.shop-banner-photo-shampoo video {
  object-position: center 30%;
}

.shop-banner-photo-all {
  background: #000;
}

.shop-banner-photo-all img {
  position: absolute;
  top: clamp(1.25rem, 3vw, 1.75rem);
  right: clamp(1.5rem, 4vw, 3rem);
  width: auto;
  height: clamp(28px, 4vw, 40px);
  object-fit: contain;
  opacity: 0.95;
}

.shop-banner-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 26, 18, 0.92) 0%, rgba(10, 26, 18, 0.72) 45%, rgba(10, 26, 18, 0.35) 100%);
}

.shop-banner-photo-all::after {
  content: none;
}

.shop-breadcrumb {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.shop-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.shop-title-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-title-row h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.shop-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.shop-pill-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-pill {
  background: transparent;
  border: 1.5px solid var(--hairline-strong);
  color: var(--plum);
  border-radius: 8px;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.shop-pill:hover {
  border-color: var(--plum);
}

.shop-pill.active {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory-blush);
}

.shop-sort-pill {
  border: 1.5px solid var(--hairline-strong);
  color: var(--plum);
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: transparent;
}

/* ---------- Product detail page ---------- */
.pdp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  font-size: 0.85rem;
  color: #3A473F;
  margin-bottom: 0.75rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pdp-back-btn:hover,
.pdp-back-btn:focus-visible {
  background-color: var(--sand);
  color: var(--plum);
  border-color: var(--hairline-strong);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}

.pdp-main-image {
  position: relative;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--dusty-rose);
  font-size: 3rem;
}

.pdp-main-image:has(img),
.pdp-main-image:has(video) {
  aspect-ratio: auto;
  display: block;
}

.pdp-main-image img,
.pdp-main-image video {
  width: 100%;
  height: auto;
  display: block;
}

.pdp-thumb-rail {
  display: flex;
  gap: 0.75rem;
}

.pdp-thumb {
  width: 92px;
  height: 92px;
  border-radius: var(--radius-sm);
  border: none;
  padding: 0;
  overflow: hidden;
  background: var(--sand);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.pdp-thumb-video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum);
  color: #fff;
}

.pdp-thumb.active {
  outline-color: var(--plum);
}

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

.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-title {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.pdp-stars-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.pdp-stars-row a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-body);
  letter-spacing: normal;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.pdp-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.4rem 0 0.5rem;
}

.pdp-color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  outline: 1px solid var(--hairline-strong);
  outline-offset: 2px;
  cursor: pointer;
  padding: 0;
  transition: outline-color 0.15s ease, transform 0.15s ease;
}

.pdp-color-swatch:hover {
  transform: scale(1.08);
}

.pdp-color-swatch.active {
  outline: 2px solid var(--tea-pink);
  outline-offset: 2px;
}

.pdp-flavor-swatch {
  height: 34px;
  padding: 0 0.9rem;
  border-radius: 8px;
  border: 1.5px solid var(--hairline-strong);
  background: var(--paper);
  color: var(--plum);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.pdp-flavor-swatch:hover {
  border-color: var(--tea-pink);
}

.pdp-flavor-swatch.active {
  background: var(--tea-pink);
  border-color: var(--tea-pink);
  color: #fff;
}

.pdp-color-name {
  display: block;
  font-size: 0.82rem;
  color: var(--muted-body);
  margin-top: 0.2rem;
}

.pdp-price {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--plum);
  font-family: 'Montserrat', sans-serif;
}

.pdp-stock {
  font-size: 0.85rem;
  color: var(--muted);
}

.pdp-stock-urgent {
  color: #966B0A;
  font-weight: 600;
}

.pdp-desc {
  color: var(--muted-body);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.pdp-add-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.pdp-qty-stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.pdp-qty-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--plum);
  width: 20px;
  cursor: pointer;
}

.pdp-qty-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
}

.pdp-qty-stepper input {
  border: none;
  width: 32px;
  text-align: center;
  background: transparent;
  color: var(--plum);
  font-weight: 500;
  -moz-appearance: textfield;
}

.pdp-qty-stepper input::-webkit-outer-spin-button,
.pdp-qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1F8A4C;
  text-decoration: none;
}

.pdp-whatsapp-link:hover {
  color: #166436;
  text-decoration: underline;
}

.pdp-cod-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 1.2rem 0 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--success-text);
}

.free-shipping-note {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success-text);
}

.pdp-cod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success-dot);
  flex-shrink: 0;
}

.pdp-accordion {
  border-top: 1px solid var(--hairline-strong);
}

.pdp-accordion-item {
  border-bottom: 1px solid var(--hairline-strong);
  padding: 1rem 0;
}

.pdp-accordion-item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--plum);
  list-style: none;
}

.pdp-accordion-item summary::-webkit-details-marker {
  display: none;
}

.pdp-accordion-item summary::after {
  content: '+';
  float: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
}

.pdp-accordion-item[open] summary::after {
  content: '\2212';
}

.pdp-accordion-item p {
  margin: 0.75rem 0 0;
  color: var(--muted-body);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pdp-related-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pdp-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.pdp-related-thumb {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--dusty-rose);
}

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

.pdp-related-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--plum);
}

.pdp-related-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--plum);
}

.pdp-related-add {
  font-size: 0.8rem;
  color: var(--muted-body);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- One-page checkout ---------- */
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}

.checkout-header-brand {
  display: inline-flex;
  align-items: center;
}

.checkout-header-logo {
  height: 68px;
  width: auto;
  display: block;
}

.checkout-header-secure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-body);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-steps {
  padding: 2.5rem 2.75rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.checkout-step h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.checkout-field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font-size: 0.9rem;
  color: var(--plum);
  font-family: inherit;
  resize: vertical;
}

.checkout-field input:focus,
.checkout-field input:required:valid,
.checkout-field select:focus,
.checkout-field select:required:valid,
.checkout-field textarea:focus,
.checkout-field textarea:required:valid {
  border-color: var(--plum);
  outline: none;
}

.checkout-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.checkout-payment-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.checkout-payment-card {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
}

.checkout-payment-card.selected {
  background: var(--success-bg);
  border: 2px solid var(--success-border);
}

.checkout-payment-card.disabled {
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  opacity: 0.55;
}

.checkout-payment-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum);
}

.checkout-payment-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success-dot);
  color: #fff;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-payment-soon {
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--sand);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  color: var(--muted-body);
  letter-spacing: 0.05em;
}

.checkout-payment-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted-body);
}

.checkout-summary {
  background: var(--sand);
  border-left: 1px solid var(--hairline);
  padding: 2.5rem 2.75rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: stretch;
  min-height: 100%;
}

.checkout-summary h2 {
  margin: 0;
  font-size: 1.5rem;
}

.checkout-summary-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0;
}

.checkout-summary-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--paper), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--dusty-rose);
  font-size: 1.5rem;
}

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

.checkout-summary-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.checkout-summary-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--plum);
}

.checkout-summary-item-qty {
  font-size: 0.75rem;
  color: var(--muted);
}

.checkout-summary-item-price {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--plum);
  flex-shrink: 0;
}

.checkout-promo-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.checkout-promo-row input {
  flex: 1;
  background: var(--paper);
  border: 1px dashed var(--hairline-strong);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--plum);
}

.checkout-promo-row button {
  border: 1.5px solid var(--plum);
  background: transparent;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plum);
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--hairline-strong);
  padding-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted-body);
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
}

.checkout-total-line {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--plum);
  border-top: 1px solid var(--hairline-strong);
  padding-top: 0.7rem;
}

.checkout-summary-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---------- Bundles / kits page ---------- */
.bundles-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.bundles-hero .eyebrow {
  margin-bottom: 0;
}

.bundles-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0;
}

.bundles-hero .lead {
  color: var(--muted-body);
  margin: 0;
}

.bundle-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bundle-card-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--tea-pink), var(--dusty-rose) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-card-emoji {
  font-size: 2.5rem;
}

.bundle-card-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--ivory-blush);
  color: var(--plum);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bundle-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.bundle-card-desc {
  margin: 0;
  color: var(--muted-body);
  font-size: 0.88rem;
}

.bundle-card-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted-body);
}

.bundle-card-items li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.bundle-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tea-pink);
  flex-shrink: 0;
}

.bundle-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.bundle-card-price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--plum);
}

.bundle-card-was {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.bundles-how-strip {
  background: var(--sand);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  margin: 3rem 0;
}

.bundles-how-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bundles-how-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--plum);
}

.bundles-how-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum);
}

.bundles-how-desc {
  font-size: 0.85rem;
  color: var(--muted-body);
  line-height: 1.5;
}

/* ---------- Cart drawer ---------- */
.cart-drawer {
  width: 420px;
  max-width: 92vw;
  background: var(--paper);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--hairline);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--plum);
}

.cart-drawer-count {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem;
}

.cart-drawer-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
}

.cart-drawer-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sand), var(--ivory-blush));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--dusty-rose);
}

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

.cart-drawer-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.cart-drawer-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--plum);
}

.cart-drawer-item-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-drawer-qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.cart-drawer-qty-btn {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: var(--paper);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0;
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.cart-drawer-qty-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
}

.cart-drawer-qty-btn:hover {
  border-color: var(--tea-pink);
  color: var(--tea-pink);
}

.cart-drawer-qty-btn:active {
  transform: scale(0.85);
}

.cart-drawer-qty-value {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 1.2rem;
  text-align: center;
}

.cart-drawer-remove-btn {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 0.76rem;
  text-decoration: underline;
  padding: 0;
  margin-left: 0.3rem;
}

.cart-drawer-remove-btn:hover {
  color: #b3413a;
}

.cart-drawer-item-price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--plum);
  flex-shrink: 0;
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: var(--plum);
}

.cart-drawer-view-cart {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-body);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Order confirmation ---------- */
.confirmation-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success-dot);
  font-size: 1.8rem;
}

.order-id-callout {
  background: var(--tea-pink);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.order-id-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C7D3C9;
}

.order-id-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.order-id-hint {
  font-size: 0.8rem;
  color: #C7D3C9;
  max-width: 38ch;
  margin-bottom: 0.5rem;
}

/* ---------- Track order ---------- */
.track-form-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.track-pill-input {
  flex: 1;
  min-width: 180px;
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-size: 0.9rem;
  color: var(--plum);
}

.track-result-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.track-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.track-result-head h2 {
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
}

.track-result-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.track-status-pill {
  background: var(--tea-pink);
  color: var(--plum);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.track-stepper {
  display: flex;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
}

.track-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: #fff;
  border: 2px solid var(--hairline-strong);
  box-sizing: border-box;
}

.track-step-circle.done {
  background: var(--plum);
  border-color: var(--plum);
}

.track-step-circle.current {
  background: var(--tea-pink);
  border-color: var(--plum);
}

.track-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.track-step-label.active {
  color: var(--plum);
}

.track-step-line {
  flex: 0.6;
  height: 2px;
  background: var(--hairline-strong);
  margin-top: 13px;
}

.track-step-line.done {
  background: var(--plum);
}

.track-arriving-banner {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--success-text);
  margin-bottom: 1rem;
}

.track-arriving-banner.track-banner-cancelled {
  background: #FBEAEA;
  border-color: #E8B4B4;
  color: #7A2E2E;
}

/* ---------- Sale banner promo toast (non-blocking) ---------- */
.promo-toast-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 41, 30, 0.45);
  z-index: 1149;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.promo-toast-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(90vw, 760px);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  z-index: 1150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.promo-toast.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

@media (min-width: 576px) {
  .promo-toast {
    display: flex;
    align-items: stretch;
  }
  #sale-banner-image-wrap {
    flex: 1 1 45%;
  }
  .promo-toast-body {
    flex: 1 1 55%;
  }
}

.promo-toast-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  color: var(--plum);
  box-shadow: var(--shadow-soft);
}

#sale-banner-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.promo-toast-body {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.promo-toast-body h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.promo-toast-body p {
  color: var(--muted-body);
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.promo-toast-body .btn {
  align-self: flex-start;
}

@media (max-width: 575.98px) {
  .promo-toast {
    width: 92vw;
  }
  #sale-banner-image-wrap img {
    max-height: 200px;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-toast,
  .promo-toast-backdrop {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .promo-toast.visible {
    transform: translate(-50%, -50%);
  }
}

/* ---------- Admin dashboard ---------- */
.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--tea-pink);
  color: var(--ivory-blush);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.admin-sidebar-logo {
  height: 96px;
  width: auto;
}

.admin-sidebar-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--ivory-blush);
  opacity: 0.85;
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.admin-nav-link {
  text-align: left;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--sand);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.admin-nav-link:hover {
  background: rgba(245, 241, 232, 0.08);
}

.admin-nav-link.active {
  background: rgba(245, 241, 232, 0.14);
  border-left-color: var(--gold);
  color: #fff;
  font-weight: 600;
}

.admin-sidebar-foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 241, 232, 0.15);
  font-size: 0.8rem;
}

.admin-whoami {
  color: var(--sand);
  word-break: break-all;
}

.admin-view-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--tea-pink);
  border: 1px solid var(--tea-pink);
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.admin-view-site:hover {
  background: var(--ink-hover);
  border-color: var(--ink-hover);
  color: #fff;
  transform: translateY(-1px);
}

.admin-logout-btn {
  background: none;
  border: 1px solid rgba(245, 241, 232, 0.3);
  color: var(--ivory-blush);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.admin-logout-btn:hover {
  background: rgba(245, 241, 232, 0.1);
}

.admin-main {
  padding: 2rem 2.5rem 3rem;
  background: var(--ivory-blush);
  min-width: 0;
}

.admin-page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--hairline-strong);
}

.admin-page-head h1 {
  margin: 0;
  font-size: 2rem;
}

.admin-page-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-export-btn {
  border: 1.5px solid var(--plum);
  background: transparent;
  color: var(--plum);
  border-radius: 8px;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.admin-export-btn:hover {
  background: var(--plum);
  color: var(--ivory-blush);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-stat-card:hover {
  box-shadow: var(--shadow-soft-lg);
  transform: translateY(-2px);
}

.admin-stat-card-warn {
  border: 1.5px solid var(--dusty-rose);
}

.admin-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.admin-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--plum);
}

.admin-panel-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.admin-panel {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.admin-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.admin-status-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.admin-status-bar-label {
  width: 90px;
  text-transform: capitalize;
  color: var(--muted-body);
  flex-shrink: 0;
}

.admin-status-bar-track {
  flex: 1;
  height: 8px;
  background: var(--sand);
  border-radius: 999px;
  overflow: hidden;
}

.admin-status-bar-fill {
  height: 100%;
  background: var(--tea-pink);
  border-radius: 999px;
}

.admin-status-bar-count {
  width: 24px;
  text-align: right;
  font-weight: 600;
  color: var(--plum);
}

.admin-top-product-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
}

.admin-table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.admin-table-search {
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  min-width: 220px;
  background: var(--ivory-blush);
}

.admin-table-count {
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-pill-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.admin-pill {
  background: transparent;
  border: 1.5px solid var(--hairline-strong);
  color: var(--plum);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: capitalize;
}

.admin-pill.active {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory-blush);
}

.admin-row-warn {
  background: var(--success-bg);
}

.admin-edit-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-edit-image-thumb {
  width: 72px;
}

.admin-edit-image-photo {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
}

.admin-edit-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-edit-image-primary {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 35, 29, 0.75);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.15rem 0;
}

.admin-edit-image-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(28, 35, 29, 0.75);
  color: #fff;
  border: none;
  font-size: 0.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-edit-image-move-row {
  display: flex;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.admin-edit-image-move {
  flex: 1;
  height: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-strong);
  background: var(--paper);
  color: var(--plum);
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
}

.admin-edit-image-move:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* #editProductModal wraps its .modal-body/.modal-footer in a <form> (needed
   so the Save button can submit them together) - that form is a normal
   block box, so it breaks Bootstrap's modal-dialog-scrollable flex layout,
   which expects header/body/footer as direct flex children of
   .modal-content. Without this, once body content grows tall enough
   (e.g. several image previews), .modal-content's overflow:hidden clips
   the whole form including the footer, hiding the Save button entirely
   instead of just scrolling the body. display:contents unwraps the form
   from layout while keeping it in the DOM for submission. */
#editProductModal form {
  display: contents;
}

.admin-image-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.admin-image-preview-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
  border: 1.5px solid var(--tea-pink);
}

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

.admin-image-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(28, 35, 29, 0.75);
  color: #fff;
  border: none;
  font-size: 0.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-image-preview-limit {
  width: 100%;
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.admin-video-preview:empty {
  display: none;
}

.admin-video-preview video {
  background: #000;
}

.admin-variant-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.4rem 0 0.75rem;
}

.admin-variant-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
}

.admin-variant-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  flex-shrink: 0;
}

.admin-variant-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.admin-variant-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: auto;
}

.admin-variant-remove {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.2rem;
}

.admin-variant-remove:hover {
  color: #b3413a;
}

.admin-variant-add-row {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.6rem 0.3rem;
  margin: 0;
}

.form-control-color {
  width: 100%;
  height: 31px;
  padding: 2px;
}

.admin-table {
  color: var(--plum);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.admin-table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  border-bottom-width: 1px;
  border-color: var(--hairline-strong);
  padding-bottom: 0.75rem;
}

.admin-table tbody td {
  border-color: var(--hairline);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: background-color 0.15s ease;
}

.admin-table tbody tr:hover {
  background-color: var(--ivory-blush);
}

.admin-table a {
  color: var(--plum);
  font-weight: 500;
}

.admin-table .form-control,
.admin-table .form-select {
  color: var(--plum);
  border-color: var(--hairline-strong);
}

.admin-low-stock-tag {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--success-text);
  background: var(--success-border);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .import-value-inner {
    grid-template-columns: 1fr;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .admin-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .admin-sidebar-foot {
    flex-direction: row;
    align-items: center;
    border-top: none;
    padding-top: 0;
    margin-left: auto;
  }
  .admin-panel-row {
    grid-template-columns: 1fr;
  }
  .admin-main {
    padding: 1.5rem;
  }
  .bundles-how-strip {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-steps,
  .checkout-summary {
    padding: 1.5rem;
  }
  .checkout-summary {
    border-left: none;
    border-top: 1px solid var(--hairline);
  }
  .checkout-field-row {
    grid-template-columns: 1fr;
  }
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pdp-main-image {
    aspect-ratio: 4 / 5;
    height: auto;
  }
  .pdp-related-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kits-split {
    grid-template-columns: 1fr;
  }
  .kits-visual {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .hero p.lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-icons-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
  .bestseller-card-image {
    height: 170px;
  }
  .trust-band-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-newsletter-form {
    flex-wrap: wrap;
  }
  .footer-newsletter-form input {
    min-width: 0;
    flex: 1 1 140px;
  }
}

/* Full-page loader: shown from script execution until the window "load"
   event (i.e. roughly until images finish), so it covers the same gap
   that made the site feel slow before product images were compressed. */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-blush);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-loader-text {
  margin-top: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-body);
  letter-spacing: 0.02em;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.page-loader-text.is-swapping {
  opacity: 0;
}

.page-loader-logo-wrap {
  position: relative;
  width: 160px;
}

.page-loader-logo {
  display: block;
  width: 100%;
  height: auto;
}

.page-loader-logo-base {
  opacity: 0.3;
  filter: grayscale(1);
}

.page-loader-logo-fill {
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
  animation: loaderLogoFill 2.4s ease-in-out infinite;
}

@keyframes loaderLogoFill {
  0% { clip-path: inset(100% 0 0 0); }
  50% { clip-path: inset(12% 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-logo-fill {
    animation: none;
    clip-path: inset(12% 0 0 0);
  }
}

@media (max-width: 480px) {
  .page-loader-logo-wrap {
    width: 120px;
  }
}

