:root {
  --cream: #fdfbf7;
  --cream-dark: #f6f0e6;
  --gold: #c9a66b;
  --gold-deep: #a67c3d;
  --ink: #2b261f;
  --muted: #5c554a;
  --border: rgba(201, 166, 107, 0.35);
  --radius: 14px;
  --shadow: 0 18px 40px rgba(43, 38, 31, 0.08);
  font-size: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
body.site { margin: 0; font-family: "Source Sans 3", system-ui, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.55; }
@media (max-width: 1023px) {
  body.site {
    overflow-x: clip;
  }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold-deep); color: #fff; padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
}
body.site-nav-open .site-top {
  z-index: 120;
}
.site-header-shell { position: relative; z-index: 1; }
.site-promo-bar { background: var(--ink); color: #fff; }
.site-promo-bar[hidden] { display: none; }
.site-promo-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.75rem 0 1rem;
}
.site-promo-bar__link {
  display: block;
  flex: 1;
  margin: 0;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.promo-numeric {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .site-promo-bar__link{
    font-size: 0.8rem;
  }
}
.site-promo-bar__link:hover,
.site-promo-bar__link:focus-visible { opacity: 0.85; outline: none; }
.site-promo-bar__close {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.site-promo-bar__close:hover,
.site-promo-bar__close:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}
.site-header { background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 0.85rem;
  display: grid;
  align-items: center;
  gap: 0.5rem 0.65rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "leading logo actions";
}
.site-header__leading {
  grid-area: leading;
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex-shrink: 0;
}
.header-search {
  position: relative;
}
.header-search__toggle,
.header-search__toggle:hover,
.header-search__toggle:focus-visible,
.header-search__toggle.is-active {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.header-search__toggle.is-active {
  color: var(--gold-deep);
}
.header-search__dropdown {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.35rem);
  left: 0;
  width: min(20rem, calc(100vw - 1.7rem));
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fffefa;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}
.header-search.is-open .header-search__dropdown {
  opacity: 1;
  top: calc(var(--site-header-height, 4.5rem) - 2.8rem);
  right: 0;
  left: -15vw;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header-search__form {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.header-search__input {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.header-search__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.2);
}
.header-search__submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--radius);
}
.header-search__submit:hover,
.header-search__submit:focus-visible {
  color: var(--gold-deep);
  outline: none;
}
.header-search__submit svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.site-header__nav-desktop {
  display: none;
  min-width: 0;
}
.site-header__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-self: end;
  flex-shrink: 0;
}
.site-header__logo {
  grid-area: logo;
  justify-self: start;
  max-width: 100%;
}
.logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.logo__img { height: 34px; width: auto; display: block; flex-shrink: 0; }
.logo__frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
}
.logo--missoma .logo__frame { border-radius: 0; }
.logo--hide-name-mobile .logo__name { display: inline; }
@media (max-width: 767px) {
  .logo--hide-name-mobile .logo__name { display: none; }
}
.logo__name {
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn--header-buy { white-space: nowrap; }
.nav-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(43, 38, 31, 0.06);
  outline: none;
}
.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
}
.header-icon-link {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}
.header-icon-link:hover,
.header-icon-link:focus-visible {
  outline: none;
}
.header-icon-link:not(.header-search__toggle):hover,
.header-icon-link:not(.header-search__toggle):focus-visible {
  background: rgba(43, 38, 31, 0.06);
}
.header-icon-link__svg {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}
.site-nav__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
  flex: 1;
}
.site-nav {
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}
body.site-nav-open {
  overflow: hidden;
}
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-nav__list a { color: var(--ink); text-decoration: none; font-weight: 500; }
.site-nav__item--mega { position: relative; list-style: none; }
.site-nav__mega-trigger {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.site-nav__expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 1.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gold-deep);
  cursor: pointer;
  padding: 0;
  width: 100%;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.site-nav__expand-toggle:focus-visible {
  outline: 2px solid rgba(166, 124, 61, 0.35);
  outline-offset: 2px;
}
.site-nav__expand-icon {
  flex-shrink: 0;
  color: currentColor;
  transition: transform 0.2s ease;
}
.site-nav__item--mega.is-mega-open .site-nav__expand-icon {
  transform: rotate(180deg);
}
.site-nav__account {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}
.site-nav__account--desktop-dropdown { display: none; }
.site-nav__account-icon {
  display: inline-flex;
  color: var(--gold-deep);
}
.site-account-menu__trigger,
.site-account-menu__item--button {
  font: inherit;
  color: inherit;
}
.site-account-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.site-account-menu__trigger:hover,
.site-account-menu__trigger:focus-visible {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  box-shadow: 0 8px 20px rgba(43, 38, 31, 0.12);
}
.site-account-menu__trigger:focus-visible {
  outline: 2px solid rgba(166, 124, 61, 0.35);
  outline-offset: 2px;
}
.site-account-menu__panel {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 11rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 50;
}
.site-account-menu__item {
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.site-account-menu__item:hover,
.site-account-menu__item:focus-visible {
  color: var(--gold-deep);
  background: rgba(201, 166, 107, 0.12);
  outline: none;
}
.site-account-menu__form { margin: 0; }
.catalog-mega {
  display: none;
  margin-top: 0.4rem;
  padding: 0.85rem 1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fffefa;
  box-shadow: var(--shadow);
  max-height: min(70vh, 28rem);
  overflow-y: auto;
}
.catalog-mega__inner { max-width: 100%; }
.catalog-mega__lede { margin: 0 0 0.75rem; font-size: 0.92rem; }
.catalog-mega__lede a { color: var(--gold-deep); font-weight: 600; }
.catalog-mega__empty { margin: 0; font-size: 0.9rem; color: var(--muted); }
.catalog-mega__empty--inline { margin-top: 0.35rem; }
.catalog-mega__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.catalog-mega__group {
  border-bottom: 1px solid var(--border);
}
.catalog-mega__group:last-child { border-bottom: 0; }
.catalog-mega__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.catalog-mega__summary::-webkit-details-marker { display: none; }
.catalog-mega__expand-icon {
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}
.catalog-mega__group[open] > .catalog-mega__summary .catalog-mega__expand-icon {
  transform: rotate(180deg);
}
.catalog-mega__group--link {
  border-bottom: 1px solid var(--border);
}
.catalog-mega__group--link:last-child { border-bottom: 0; }
.catalog-mega__direct {
  display: block;
  padding: 0.55rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.catalog-mega__direct:hover { color: var(--gold-deep); }
.catalog-mega__summary:hover,
.catalog-mega__group[open] > .catalog-mega__summary { color: var(--gold-deep); }
.catalog-mega__summary-label { min-width: 0; }
.catalog-mega__panel {
  padding: 0 0 0.65rem;
}
.catalog-mega__panel-head {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
}
.catalog-mega__panel-head a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
}
.catalog-mega__panel-head a:hover { text-decoration: underline; }
.catalog-mega__products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.catalog-mega__product-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0;
  line-height: 1.35;
}
.catalog-mega__product-link:hover { color: var(--gold-deep); }
.catalog-mega__product-thumb {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f1ea;
  border: 1px solid var(--border);
}
.catalog-mega__product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-mega__product-name {
  min-width: 0;
}
@media (max-width: 1023px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "leading logo actions";
  }
  .site-header__leading {
    justify-self: start;
  }
  .site-header__logo {
    justify-self: center;
  }
  .site-header__actions {
    justify-self: end;
  }
  .header-search.is-open .header-search__dropdown {
    position: fixed;
    top: calc(var(--site-header-height, 4.5rem) - 1.8rem);
    left: 0.2rem;
    right: 0.2rem;
    width: auto;
    box-shadow: none;
  }
  .site-header__nav-desktop {
    display: none;
  }
  .mobile-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-nav-drawer[hidden] {
    display: none !important;
  }
  .mobile-nav-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(43, 38, 31, 0.38);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    cursor: pointer;
    transition:
      opacity 0.42s cubic-bezier(0.32, 0.72, 0, 1),
      backdrop-filter 0.42s cubic-bezier(0.32, 0.72, 0, 1),
      -webkit-backdrop-filter 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .mobile-nav-drawer.is-open:not(.is-backdrop-ready) .mobile-nav-drawer__backdrop {
    pointer-events: none;
  }
  .mobile-nav-drawer.is-open .mobile-nav-drawer__backdrop {
    opacity: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .mobile-nav-drawer__panel {
    --nav-sidebar-width: 100%;
    --nav-sidebar-ease: cubic-bezier(0.32, 0.72, 0, 1);
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--cream);
    border-right: 0;
    box-shadow: none;
    overflow: hidden;
    transform: translate3d(-105%, 0, 0);
    transition: transform 0.48s var(--nav-sidebar-ease);
    pointer-events: auto;
    will-change: transform;
  }
  .mobile-nav-drawer.is-open .mobile-nav-drawer__panel {
    transform: translate3d(0, 0, 0);
  }
  .mobile-nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 1rem 1rem 0.85rem;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.32s ease,
      transform 0.38s var(--nav-sidebar-ease);
  }
  .mobile-nav-drawer.is-open .mobile-nav-drawer__head {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }
  .mobile-nav-drawer__logo {
    min-width: 0;
    font-size: 1.15rem;
  }
  .mobile-nav-drawer__logo .logo__img {
    height: 32px;
  }
  .mobile-nav-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s ease;
    flex-shrink: 0;
  }
  .mobile-nav-drawer__close:hover,
  .mobile-nav-drawer__close:focus-visible {
    background: rgba(43, 38, 31, 0.06);
    outline: none;
  }
  .site-nav--mobile {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  .site-nav--mobile .site-nav__body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav--mobile .site-nav__list > li,
  .site-nav--mobile .currency-form,
  .site-nav--mobile .btn--header-buy,
  .site-nav--mobile .site-nav__account {
    opacity: 0;
    transform: translate3d(-12px, 0, 0);
    transition:
      opacity 0.22s ease,
      transform 0.26s ease;
  }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__list > li,
  .mobile-nav-drawer.is-open .site-nav--mobile .currency-form,
  .mobile-nav-drawer.is-open .site-nav--mobile .btn--header-buy,
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__account {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 0.38s ease,
      transform 0.42s var(--nav-sidebar-ease);
  }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__list > li:nth-child(1) { transition-delay: 0.12s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__list > li:nth-child(2) { transition-delay: 0.16s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__list > li:nth-child(3) { transition-delay: 0.2s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__list > li:nth-child(4) { transition-delay: 0.24s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__list > li:nth-child(5) { transition-delay: 0.28s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .currency-form { transition-delay: 0.32s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .btn--header-buy { transition-delay: 0.36s; }
  .mobile-nav-drawer.is-open .site-nav--mobile .site-nav__account { transition-delay: 0.4s; }
  .nav-toggle.is-active .nav-toggle__icon .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-active .nav-toggle__icon .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.is-active .nav-toggle__icon .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-toggle__bar {
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .site-nav--mobile .site-nav__item--mega .catalog-mega {
    display: block;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    overflow: hidden;
    visibility: hidden;
    box-shadow: none;
    transition:
      max-height 0.45s var(--nav-collapse-ease, cubic-bezier(0.4, 0, 0.2, 1)),
      opacity 0.38s ease,
      margin 0.35s ease,
      padding 0.35s ease,
      border-width 0.2s ease,
      visibility 0s linear 0.45s,
      box-shadow 0.35s ease;
  }
  .site-nav--mobile .site-nav__item--mega.is-mega-open .catalog-mega {
    max-height: min(70vh, 28rem);
    opacity: 1;
    overflow: scroll;
    margin-top: 0.4rem;
    padding: 0.85rem 1rem 1rem;
    border-width: 1px;
    visibility: visible;
    box-shadow: var(--shadow);
    transition:
      max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.42s ease 0.04s,
      margin 0.35s ease,
      padding 0.35s ease,
      border-width 0.2s ease,
      visibility 0s,
      box-shadow 0.35s ease;
  }
  .site-nav--mobile .catalog-mega__group--expandable .catalog-mega__panel {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    opacity: 0;
    transition:
      max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.32s ease,
      padding 0.35s ease;
  }
  .site-nav--mobile .catalog-mega__group--expandable[open] .catalog-mega__panel {
    max-height: 16rem;
    opacity: 1;
    padding-bottom: 0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  @media (max-width: 1023px) {
    .mobile-nav-drawer__panel,
    .mobile-nav-drawer__backdrop,
    .mobile-nav-drawer__head,
    .site-nav--mobile .site-nav__list > li,
    .site-nav--mobile .currency-form,
    .site-nav--mobile .btn--header-buy,
    .site-nav--mobile .site-nav__account,
    .site-nav--mobile .site-nav__item--mega .catalog-mega,
    .site-nav--mobile .catalog-mega__group--expandable .catalog-mega__panel,
    .nav-toggle__bar {
      transition-duration: 0.01ms !important;
    }
  }
}
@media (min-width: 1024px) {
  .catalog-mega {
    position: absolute;
    z-index: 45;
    left: 50%;
    top: 100%;
    margin-top: -0.35rem;
    padding-top: 0.55rem;
    width: min(960px, calc(100vw - 2rem));
    margin-left: 0;
    transform: translate(-50%, 4px);
    max-height: min(75vh, 32rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    display: block;
  }
  .site-nav__item--mega:hover .catalog-mega,
  .site-nav__item--mega:focus-within .catalog-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}
.currency-form select { border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 0.75rem; background: #fff; font: inherit; }
.currency-form { margin: 0; flex-shrink: 0; }
.site-logout-form { margin: 0; display: inline-flex; align-items: center; }
.cart-link { font-weight: 600; color: var(--gold-deep); text-decoration: none; white-space: nowrap; }
.cart-link--icon {
  position: relative;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.cart-link__icon {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}
.cart-link__count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  line-height: 1.05rem;
  text-align: center;
  padding: 0 0.2rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .mobile-nav-drawer {
    display: none !important;
  }
  body.site-nav-open .site-top {
    z-index: 40;
  }
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    grid-template-areas: "logo nav leading actions";
    gap: 1rem 1.25rem;
    padding: 0.75rem 1rem;
  }
  .site-header__leading {
    grid-area: leading;
  }
  .nav-toggle { display: none; }
  .site-header__logo {
    grid-area: logo;
    justify-self: start;
  }
  .site-header__nav-desktop {
    grid-area: nav;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  .logo { font-size: 1.35rem; gap: 0.55rem; }
  .logo__img { height: 40px; }
  .site-header__actions {
    grid-area: actions;
    gap: 0.35rem;
  }
  .site-header__actions .header-icon-link:not(.cart-link--icon) {
    display: none;
  }
  body.site-nav-open {
    overflow: auto;
  }
  .site-top {
    position: sticky;
  }
  .site-header-shell {
    position: relative;
    z-index: 1;
  }
  .site-header__nav-desktop .site-nav--desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.85rem;
    width: 100%;
    min-width: 0;
    position: static;
    transform: none;
    max-height: none;
    opacity: 1;
    overflow: visible;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-header__nav-desktop .site-nav__body {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.85rem;
    overflow: visible;
    padding: 0;
    min-width: 0;
  }
  .site-header__nav-desktop .site-nav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    flex-shrink: 1;
    min-width: 0;
  }
  .site-header__nav-desktop .site-nav__list a {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .site-nav__expand-icon { display: none; }
  .site-header__nav-desktop .site-nav__account {
    padding-top: 0;
    border-top: 0;
    gap: 0.65rem;
    flex-shrink: 0;
  }
  .site-header__nav-desktop .site-nav__account--mobile { display: none; }
  .site-header__nav-desktop .site-nav__account--desktop-dropdown {
    display: inline-flex;
    position: relative;
    border-top: 0;
    padding-top: 0;
  }
  .site-header__nav-desktop .site-nav__account--desktop-dropdown:hover .site-account-menu__panel,
  .site-header__nav-desktop .site-nav__account--desktop-dropdown:focus-within .site-account-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header__nav-desktop .currency-form select {
    padding: 0.35rem 0.65rem;
    font-size: 0.82rem;
    max-width: 7.5rem;
  }
  .site-header__nav-desktop .btn--header-buy {
    padding: 0.38rem 0.8rem;
    font-size: 0.82rem;
  }
}
.banner { max-width: 1100px; margin: 0 auto; padding: 0.65rem 1rem; border-radius: 0 0 var(--radius) var(--radius); font-size: 0.95rem; }
.banner--ok { background: #eef7ee; border: 1px solid #c6e5c6; }
.banner--err { background: #fdeeee; border: 1px solid #f0c4c4; }

.toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}
.toast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  background: rgba(253, 251, 247, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--ink);
  pointer-events: auto;
  transform: translateX(calc(100% + 1.5rem));
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.toast.is-leaving {
  transform: translateX(calc(100% + 1.5rem));
  opacity: 0;
}
.toast--success { border-left: 4px solid #5a9a5a; }
.toast--error { border-left: 4px solid #c45c5c; }
.toast__icon {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
}
.toast__icon svg { width: 1.35rem; height: 1.35rem; }
.toast--success .toast__icon { color: #3d7a3d; }
.toast--error .toast__icon { color: #b44a4a; }
.toast__message {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.toast__close {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: -0.15rem -0.15rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.toast__close svg { width: 1rem; height: 1rem; }
.toast__close:hover,
.toast__close:focus-visible {
  background: rgba(43, 38, 31, 0.08);
  color: var(--ink);
  outline: none;
}
@media (max-width: 480px) {
  .toast-stack {
    top: auto;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    width: min(22rem, calc(100vw - 1.5rem));
  }
  .toast {
    transform: translateY(calc(100% + 1.5rem));
  }
  .toast.is-visible {
    transform: translateY(0);
  }
  .toast.is-leaving {
    transform: translateY(calc(100% + 1.5rem));
  }
}
.site-main { max-width: 1100px; margin: 0 auto; padding: 1.5rem 1rem 3rem; }
.site-main--catalog {
  max-width: 1320px;
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}
.hero { padding: 2rem 1.25rem 2.5rem; background: linear-gradient(145deg, #fffefb 0%, var(--cream-dark) 55%, #fff 100%); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 2rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--gold-deep); margin: 0 0 0.5rem; }
.hero__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 5vw, 2.75rem); margin: 0 0 0.75rem; }
.hero__lede { margin: 0 0 1.25rem; color: var(--muted); max-width: 38rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 1.35rem; border-radius: 999px; font-weight: 600; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-family: inherit; font-size: inherit; line-height: inherit; }
.btn--primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: #fff; box-shadow: 0 10px 24px rgba(166, 124, 61, 0.28); }
.btn--ghost { background: #fff; border-color: var(--border); color: var(--ink); }
.btn--header-buy {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  border-radius: var(--radius);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn--header-buy:hover {
  background: #1f1a14;
  border-color: #1f1a14;
  color: #fff;
}
.section { margin-bottom: 2.5rem; }
.section--soft { background: #fff; border-radius: var(--radius); padding: 1.5rem 1rem; border: 1px solid var(--border); }
.section__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; margin: 0 0 1rem; }
.cat-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 600px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem 1.1rem; border-radius: var(--radius); border: 1px solid var(--border); background: #fffefa; text-decoration: none; color: inherit; min-height: 100px; }
.cat-card__name { font-weight: 600; }
.cat-card__meta { font-size: 0.9rem; color: var(--gold-deep); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.product-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 26px rgba(43, 38, 31, 0.06); }
.product-card__link { text-decoration: none; color: inherit; display: block; }
.product-card__img-wrap { aspect-ratio: 1; background: var(--cream-dark); overflow: hidden; }
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .product-card:hover .product-card__img-wrap img {
    transform: scale(1.05);
  }
}
.product-card__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.1rem; margin: 0.65rem 0.85rem 0.25rem; }
.product-card__price { margin: 0 0.85rem 0.85rem; font-weight: 600; color: var(--gold-deep); }
.three-cols { display: grid; gap: 1rem; }
@media (min-width: 768px) { .three-cols { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.three-cols h3 { font-family: "Cormorant Garamond", Georgia, serif; margin-top: 0; }
.page-head__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 0 0 0.5rem; }
.page-head__summary { margin: 0; color: var(--muted); }
.subnav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.5rem; }
.subnav__link { padding: 0.35rem 0.85rem; border-radius: 999px; border: 1px solid var(--border); text-decoration: none; color: var(--ink); font-size: 0.92rem; background: #fff; }
.subnav__link.is-active { border-color: var(--gold); background: #fff9ef; font-weight: 600; }
.site-main--catalog .catalog-filters-wrap {
  position: sticky;
  top: var(--site-header-height, 4.5rem);
  z-index: 35;
  margin: 1rem 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(43, 38, 31, 0.06);
  overflow: hidden;
}
.catalog-filters-wrap__summary {
  padding: 0.85rem 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.catalog-filters-wrap__summary::-webkit-details-marker { display: none; }
.catalog-filters-wrap__summary::after {
  content: "+";
  color: var(--gold-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.catalog-filters-wrap[open] .catalog-filters-wrap__summary::after { content: "−"; }
.catalog-filters-wrap__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: auto;
  margin-right: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}
.catalog-filters {
  margin: 0;
  padding: 0 0.95rem 0.95rem;
  display: grid;
  gap: 0.75rem;
}
.catalog-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}
.catalog-filters select,
.catalog-filters input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  background: #fff;
}
.catalog-filters__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 820px) {
  .catalog-filters-wrap__summary { display: none; }
  .catalog-filters-wrap[open] .catalog-filters-wrap__summary::after,
  .catalog-filters-wrap .catalog-filters-wrap__summary::after { content: none; }
  .catalog-filters {
    padding: 0.95rem;
    /* grid-template-columns: 1fr 1fr 1fr auto;  không mở phần này*/ 
    align-items: end;
  }
}
.pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}
.pagination-wrap__summary {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.pagination-wrap__summary strong {
  color: var(--ink);
  font-weight: 600;
}
.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
}
.pagination li { list-style: none; }
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pagination li.active span {
  background: #f3e9d2;
  border-color: var(--gold);
  color: var(--gold-deep);
  font-weight: 600;
}
.pagination li.disabled span {
  color: var(--muted);
  opacity: 0.55;
  cursor: default;
  background: #f8f9fb;
}
.pagination li a:hover {
  border-color: var(--gold);
  background: #fdfaf3;
  color: var(--gold-deep);
}
.pagination li a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .pagination a,
  .pagination span {
    min-width: 2rem;
    min-height: 2rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.85rem;
  }
}
.product-detail { padding-bottom: 6rem; }
.product-detail__grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .product-detail__grid { grid-template-columns: 1.05fr 1fr; align-items: start; gap: 2.5rem; } }
.product-detail__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; margin: 0.25rem 0 0.5rem; line-height: 1.15; }
.product-detail__price { font-size: 1.4rem; font-weight: 700; color: var(--gold-deep); margin: 0 0 0.75rem; }
.product-detail__section-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; margin: 1.5rem 0 0.6rem; }
.product-detail__description { margin-top: 1.25rem; }
.product-detail__info .product-upsell {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.product-detail__info .product-upsell__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.pd-policies {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(43, 38, 31, 0.12);
}
.pd-policies__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.pd-policies__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(43, 38, 31, 0.1);
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
}
.pd-policies__item:last-child { border-bottom: 0; padding-bottom: 0; }
.pd-policies__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--ink);
}
.pd-policies__icon svg { display: block; width: 1.75rem; height: 1.75rem; }
.pd-policies__text { flex: 1; min-width: 0; }
.product-detail__below {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.product-detail__below .section__title { margin-bottom: 1.25rem; }
.product-detail__description iframe, .product-detail__description img { width: 100%; height: 100%; }
.product-detail__description .prose {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}
.product-detail__description .prose > :first-child { margin-top: 0; }
.product-detail__description .prose > :last-child { margin-bottom: 0; }
.product-detail__description-body.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-detail__description-body.is-collapsed img,
.product-detail__description-body.is-collapsed iframe {
  display: none;
}
.product-detail__description-body.is-expanded {
  display: block;
  overflow: visible;
}
.product-detail__read-more {
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-detail__read-more:hover { color: var(--ink); }
.product-detail__read-more[hidden] { display: none; }
.product-attributes { margin-top: 1.25rem; }
.pd-attribute-item { border-top: 1px solid rgba(43, 38, 31, 0.12); }
.pd-attribute-item:last-child { border-bottom: 1px solid rgba(43, 38, 31, 0.12); }
.pd-attribute-item__btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 1rem 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.pd-attribute-item__btn span:first-child {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}
.pd-attribute-item__icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.pd-attribute-item__icon::before,
.pd-attribute-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.pd-attribute-item__icon::before { width: 14px; height: 1.5px; }
.pd-attribute-item__icon::after { width: 1.5px; height: 14px; transition: opacity 0.2s ease; }
.pd-attribute-item__btn[aria-expanded="true"] .pd-attribute-item__icon::after { opacity: 0; }
.pd-attribute-item__panel {
  padding: 0 0.1rem 0.95rem;
  color: var(--muted);
}
.pd-attribute-item__panel p { margin: 0; }
.lede { color: var(--muted); }
.pd-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.pd-qty-stepper__btn {
  width: 2.25rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.pd-qty-stepper__btn:hover { background: rgba(43, 38, 31, 0.05); }
.pd-qty-stepper input[type="number"] {
  width: 2.75rem;
  padding: 0.45rem 0.25rem;
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font: inherit;
  -moz-appearance: textfield;
}
.pd-qty-stepper input[type="number"]::-webkit-outer-spin-button,
.pd-qty-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.add-form { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end; margin-top: 1rem; }
.qty input { width: 4rem; padding: 0.45rem; border-radius: 8px; border: 1px solid var(--border); font: inherit; }
.stock-note { font-size: 0.9rem; color: var(--muted); }

/* Product Gallery */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.pd-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  contain: layout style paint;
}
.product-detail__media {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.pd-gallery__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.25s ease;
}
.pd-gallery__main.is-fading .pd-gallery__main-img { opacity: 0; }
.pd-gallery__zoom-lens {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 75px;
  margin: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  background-image: var(--pd-zoom-image);
  background-repeat: no-repeat;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px var(--gold-deep),
    0 4px 14px rgba(43, 38, 31, 0.28);
  transition: opacity 0.15s ease;
  will-change: left, top, background-position, background-size;
}
@media (hover: hover) and (pointer: fine) {
  .pd-gallery__main.is-zooming {
    cursor: none;
  }
  .pd-gallery__main.is-zooming .pd-gallery__zoom-lens {
    opacity: 1;
  }
}
.pd-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(43, 38, 31, 0.12);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pd-gallery__nav:hover { opacity: 1; transform: translateY(-50%) scale(1.05); }
.pd-gallery__nav--prev { left: 10px; }
.pd-gallery__nav--next { right: 10px; }
.pd-gallery__nav.is-hidden { display: none; }

.pd-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.25rem 0.1rem;
  scrollbar-width: thin;
}
.pd-gallery__thumbs::-webkit-scrollbar { height: 6px; }
.pd-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.pd-gallery__thumb {
  position: relative;
  flex: 0 0 70px;
  width: 70px;
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  background: var(--cream-dark);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pd-gallery__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.pd-gallery__thumb:hover { border-color: var(--gold); }

@media (min-width: 900px) {
  .pd-gallery__thumb { flex: 0 0 80px; width: 80px; }
}

/* Frequently bought together (upsell bundle) */
.product-upsell {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.product-upsell__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.product-upsell__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.product-upsell__item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.product-upsell__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  cursor: pointer;
}
.product-upsell__check {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.35rem;
  accent-color: var(--ink);
}
.product-upsell__check:disabled {
  opacity: 0.85;
  cursor: default;
}
.product-upsell__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f1ea;
}
.product-upsell__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-upsell__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-upsell__name {
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.product-upsell__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.65rem;
}
.product-upsell__price--sale {
  font-weight: 700;
  color: #c0392b;
}
.product-upsell__price--was {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: line-through;
}
.product-upsell__stock {
  font-size: 0.85rem;
  color: var(--muted);
}
.product-upsell__claim {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.product-upsell__claim:hover:not(:disabled) { opacity: 0.92; }
.product-upsell__claim:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.product-upsell__claim-label::after {
  content: " •";
  opacity: 0.75;
}
.product-upsell__claim-total { font-weight: 700; }
.product-upsell__claim-was {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
}

/* Related products */
.product-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.product-related .section__title { margin-bottom: 1.25rem; }

/* Fixed Add to Cart bar */
.product-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(43, 38, 31, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.product-cta-bar.is-visible { transform: translateY(0); }
.product-cta-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-cta-bar__product {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}
.product-cta-bar__thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.product-cta-bar__meta { min-width: 0; }
.product-cta-bar__name {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.product-cta-bar__price {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.product-cta-bar__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  flex-shrink: 0;
}
.product-cta-bar__qty input { width: 3.4rem; padding: 0.45rem; }
.product-cta-bar__btn { padding: 0.55rem 1.1rem; }

@media (max-width: 600px) {
  .product-cta-bar__inner { padding: 0.55rem 0.75rem; gap: 0.5rem; }
  .product-cta-bar__name { max-width: 130px; font-size: 0.85rem; }
  .product-cta-bar__thumb { width: 42px; height: 42px; }
  .product-cta-bar__qty input { width: 2.8rem; padding: 0.4rem; }
  .product-cta-bar__btn { padding: 0.5rem 0.85rem; font-size: 0.9rem; }
}
.cart-list { list-style: none; margin: 0; padding: 0; }
.cart-line { display: grid; grid-template-columns: 72px 1fr; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
@media (min-width: 640px) { .cart-line { grid-template-columns: 96px 1fr auto auto; align-items: center; } }
.cart-line__thumb img { border-radius: 10px; width: 72px; height: 72px; object-fit: cover; }
@media (min-width: 640px) { .cart-line__thumb img { width: 96px; height: 96px; } }
.cart-line__title { font-size: 1rem; margin: 0 0 0.25rem; }
.cart-line__title a { color: inherit; text-decoration: none; }
.cart-line__price { margin: 0; font-size: 0.9rem; color: var(--muted); }
.cart-line__total { font-weight: 700; color: var(--gold-deep); }
.link-btn { border: none; background: none; color: var(--gold-deep); cursor: pointer; text-decoration: underline; padding: 0; font: inherit; }
.cart-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.cart-subtotal { margin-top: 1rem; color: var(--muted); }
.empty-state { padding: 2rem 0; }

/* Cart page — Missoma-style */
.site-main--cart {
  max-width: 1080px;
  padding-top: 1.25rem;
  min-width: 0;
}
.cart-page {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}
.cart-page__head {
  text-align: center;
}
.cart-page__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}
.cart-page .checkout-free-shipping {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.cart-page__empty {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}
.cart-page__empty-msg {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.cart-page__empty-auth {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.cart-page__empty-auth a {
  color: var(--gold-deep);
}
.cart-page__empty-cta {
  min-width: 220px;
}
.cart-page__layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  width: 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .cart-page__layout {
    grid-template-columns: minmax(0, 1fr) min(340px, 36%);
    gap: 2rem;
  }
}
.cart-page__main {
  min-width: 0;
}
.cart-page__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-page__line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(43, 38, 31, 0.1);
}
.cart-page__line:last-child {
  border-bottom: none;
}
.cart-page__line-thumb {
  display: block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dark);
}
.cart-page__line-thumb img {
  width: 96px;
  height: 96px;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.cart-page__line-body {
  min-width: 0;
}
.cart-page__line-name {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  display: block;
  overflow-wrap: anywhere;
}
.cart-page__line-name:hover {
  color: var(--gold-deep);
}
.cart-page__line-variant {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.cart-page__line-price {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--ink);
}
.cart-page__line-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  border: 1px solid rgba(43, 38, 31, 0.15);
  border-radius: 999px;
  padding: 0.12rem 0.4rem;
}
.cart-page__qty-btn {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.3rem;
  color: var(--ink);
}
.cart-page__qty-val {
  min-width: 1.35rem;
  text-align: center;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 400;
}
.cart-page__line-remove {
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  align-self: start;
  color: var(--muted);
  padding: 0.15rem;
}
.cart-page__line-remove:hover {
  color: var(--ink);
}
.cart-page__continue {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.cart-page__summary {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(28, 24, 18, 0.06);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .cart-page__summary {
    position: sticky;
    top: calc(var(--site-header-height, 4.5rem) + 1rem);
  }
}
.cart-page__summary-title {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.cart-page__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.cart-page__subtotal strong {
  font-size: 1.15rem;
  color: var(--gold-deep);
}
.cart-page__note {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.cart-page__checkout {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}
.cart-page__auth-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}
.cart-page__auth-note a {
  color: var(--gold-deep);
}
.cart-page__summary .payment-icons {
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cart-page__trust {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.cart-page__trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 600px) {
  .cart-page__trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.cart-page__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cart-page__trust-item .pd-policies__icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
}
.cart-page__trust-item .pd-policies__icon svg {
  width: 28px;
  height: 28px;
}
.cart-page__trust-text {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  max-width: 14rem;
}
.cart-page__bestsellers {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  min-width: 0;
}
.cart-page__bestsellers.home-section {
  padding-left: 0;
  padding-right: 0;
}
.cart-page__bestsellers .home-product-slider {
  margin-left: 0;
  margin-right: 0;
}
.cart-page__bestsellers .section__title {
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .cart-page .checkout-free-shipping {
    max-width: none;
  }
  .cart-page__line {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
    position: relative;
  }
  .cart-page__line-thumb {
    flex: 0 0 4.5rem;
    width: 4.5rem;
  }
  .cart-page__line-thumb img {
    width: 4.5rem;
    height: 4.5rem;
  }
  .cart-page__line-body {
    flex: 1;
    min-width: 0;
    padding-right: 1.5rem;
  }
  .cart-page__line-remove {
    position: absolute;
    top: 1rem;
    right: 0;
    align-self: auto;
  }
  .cart-page__layout [data-cart-page-summary-wrap] {
    order: 2;
  }
  .cart-page__summary .payment-icons {
    justify-content: flex-start;
  }
}

.checkout-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .checkout-layout__main {
    order: 1;
    min-width: 0;
  }
  .checkout-layout__aside {
    order: 2;
    display: none;
    align-self: stretch;
    z-index: 250;
  }
  .checkout-layout__aside.is-open,
  .checkout-layout__aside--visible {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .checkout-layout__aside.is-open .checkout-aside,
  .checkout-layout__aside--visible .checkout-aside {
    position: sticky;
    bottom: 0;
    max-height: min(55vh, 400px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -10px 32px rgba(28, 24, 18, 0.1);
  }
}
@media (min-width: 768px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
    align-items: start;
    gap: 1.5rem;
  }
  .checkout-layout__aside {
    align-self: start;
  }
  .checkout-aside {
    position: sticky;
    top: calc(var(--site-header-height, 4.5rem) + 0.65rem);
    padding: 1rem 1.05rem;
  }
  .checkout-page .checkout-aside {
    top: calc(var(--checkout-header-height, 3.5rem) + 0.75rem);
  }
  .checkout-aside__list {
    max-height: min(40vh, 340px);
  }
  .checkout-aside__title {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .checkout-layout__main .checkout-processing {
    max-width: none;
    margin: 0;
  }
  .checkout-voucher__row {
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .checkout-voucher__field {
    flex: 1 1 auto;
    min-width: 0;
  }
  .checkout-voucher__btn {
    align-self: stretch;
    margin-bottom: 0;
    white-space: nowrap;
  }
}
@media (min-width: 960px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) min(340px, 34%);
    gap: 2rem;
  }
  .checkout-aside {
    top: calc(var(--site-header-height, 4.5rem) + 1rem);
    padding: 1.1rem 1.15rem;
  }
  .checkout-page .checkout-aside {
    top: calc(var(--checkout-header-height, 3.5rem) + 1rem);
  }
  .checkout-aside__list {
    max-height: min(50vh, 420px);
  }
  .checkout-aside__title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
  }
}
.checkout-aside {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(28, 24, 18, 0.06);
}
.checkout-aside__title {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.checkout-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(50vh, 420px);
  overflow-y: auto;
}
.checkout-aside__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-aside__item:last-child { border-bottom: none; }
.checkout-aside__thumb {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.checkout-aside__qty-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #5c5752;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}
.checkout-aside__thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}
.checkout-aside__name {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.checkout-aside__name a {
  color: inherit;
  text-decoration: none;
}
.checkout-aside__name a:hover { color: var(--gold-deep); }
.checkout-aside__meta {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.checkout-aside__line {
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}
.checkout-aside__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.checkout-aside__subtotal strong {
  font-size: 1.1rem;
  color: var(--gold-deep);
}
.checkout-aside__note {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.checkout-form { display: grid; gap: 1.5rem; }
.checkout-block { display: grid; gap: 0.65rem; }
.checkout-block__title {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.checkout-contact-auth {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}
.checkout-contact-auth a {
  color: var(--gold-deep);
  text-decoration: underline;
}

/* Express checkout (Missoma / Shopify style) */
.checkout-express {
  margin-bottom: 0.25rem;
}
.checkout-express__title {
  margin: 0 0 0.85rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  color: #6b6560;
  text-align: center;
  letter-spacing: 0.01em;
}
.checkout-express__buttons {
  display: grid;
  gap: 0.65rem;
  align-items: stretch;
}
.checkout-express__buttons--1 {
  grid-template-columns: minmax(0, 1fr);
}
.checkout-express__buttons--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-express__slot {
  min-height: 3rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.checkout-express__btn {
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.checkout-express__btn:not(:disabled):hover {
  opacity: 0.92;
}
.checkout-express__btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.checkout-express__btn--shop {
  background: #5a31f4;
  color: #fff;
}
.checkout-express__btn-label {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 1;
}
.checkout-express__btn--paypal {
  background: #ffc439;
}
.checkout-express__paypal-wordmark {
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
}
.checkout-express__paypal-pay { color: #003087; }
.checkout-express__paypal-pal { color: #009cde; }
.checkout-express__btn--gpay {
  background: #000;
  color: #fff;
}
.checkout-express__gpay-mark {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.checkout-express__gpay-g {
  font-weight: 600;
  background: linear-gradient(90deg, #4285f4 0%, #ea4335 35%, #fbbc05 65%, #34a853 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 0.15rem;
}
.checkout-express__paypal-mount,
.checkout-express__gpay-mount {
  width: 100%;
  min-height: 3rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.checkout-express__paypal-mount iframe,
.checkout-express__gpay-mount iframe {
  max-width: 100%;
}
.checkout-express__paypal-mount > div,
.checkout-express__gpay-mount > div {
  flex: 1;
  width: 100% !important;
  max-width: none !important;
}
.checkout-express__mount-error {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: #f3f1ed;
  color: #5c5752;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}
.checkout-express__divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.35rem 0 0.5rem;
}
.checkout-express__divider-line {
  flex: 1;
  height: 1px;
  background: #d4cfc6;
}
.checkout-express__divider-text {
  font-size: 0.82rem;
  color: #8a847c;
  letter-spacing: 0.06em;
}
@media (max-width: 520px) {
  .checkout-express__buttons--1,
  .checkout-express__buttons--2 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.checkout-field-row {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 560px) {
  .checkout-field-row { grid-template-columns: 1fr 1fr; }
}
.checkout-field {
  position: relative;
  display: block;
}
.checkout-field.full { grid-column: 1 / -1; }
.checkout-field input,
.checkout-field select {
  width: 100%;
  padding: 1.05rem 0.75rem 0.45rem;
  border-radius: 10px;
  border: 1px solid #c9c4bc;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.checkout-field--with-icon input { padding-right: 2.25rem; }
.checkout-field select {
  padding-top: 1.15rem;
  padding-bottom: 0.55rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}
.checkout-field input:focus,
.checkout-field select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(166, 124, 61, 0.15);
}
.checkout-field--floating label {
  position: absolute;
  left: 0.75rem;
  top: 0.72rem;
  font-size: 0.92rem;
  color: #6b6560;
  pointer-events: none;
  transition: transform 0.15s ease, font-size 0.15s ease, color 0.15s ease;
  transform-origin: left top;
}
.checkout-field--floating input:focus + label,
.checkout-field--floating input:not(:placeholder-shown) + label,
.checkout-field--floating select:focus + label,
.checkout-field--floating select:valid + label {
  transform: translateY(-0.45rem) scale(0.82);
  color: #5c5752;
}
.checkout-field--filter-select { z-index: 2; }
.checkout-field--filter-select.is-open { z-index: 12; }
.checkout-filter-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.checkout-filter-select__search {
  width: 100%;
  padding: 1.05rem 2.1rem 0.45rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #c9c4bc;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.checkout-filter-select__search:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(166, 124, 61, 0.15);
}
.checkout-field--filter-select.is-open .checkout-filter-select__search {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(166, 124, 61, 0.15);
}
.checkout-filter-select__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  max-height: 14rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid #c9c4bc;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.checkout-filter-select__option {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}
.checkout-filter-select__option:hover,
.checkout-filter-select__option.is-active,
.checkout-filter-select__option[aria-selected="true"] {
  background: rgba(201, 166, 107, 0.14);
  color: var(--gold-deep);
}
.checkout-filter-select__option[hidden] { display: none; }
.checkout-filter-select__empty {
  margin: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.checkout-field--filter-select .checkout-filter-select__search:focus ~ label,
.checkout-field--filter-select .checkout-filter-select__search:not(:placeholder-shown) ~ label,
.checkout-field--filter-select.has-value label,
.checkout-field--filter-select.is-open label {
  transform: translateY(-0.45rem) scale(0.82);
  color: #5c5752;
}
.checkout-field__icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-35%);
  color: #8a847c;
  pointer-events: none;
}
.checkout-field__icon--help {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1px solid #b8b2a8;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-40%);
}
.checkout-checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  margin-top: 0.15rem;
}
.checkout-checkbox.full { grid-column: 1 / -1; }
.checkout-checkbox--contact { margin-top: 0.65rem; }
.checkout-checkbox input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold-deep);
}
.checkout-shipping-placeholder {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: #f3f1ed;
  color: #5c5752;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.45;
}
.checkout-shipping-options { display: grid; gap: 0.5rem; }
.checkout-shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.checkout-shipping-option:has(input:checked) {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 1px var(--gold-deep);
}
.checkout-shipping-option input {
  margin-top: 0.2rem;
  accent-color: var(--gold-deep);
}
.checkout-shipping-option__body { display: grid; gap: 0.15rem; }
.checkout-shipping-option__label { font-weight: 600; color: var(--ink); }
.checkout-shipping-option__meta { font-size: 0.88rem; color: var(--muted); }
.checkout-form .form-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .checkout-form .form-grid { grid-template-columns: 1fr 1fr; } }
.checkout-form label.full { grid-column: 1 / -1; }
.checkout-form input:not(.checkout-field input),
.checkout-form textarea,
.checkout-form select:not(.checkout-field select) {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
  height: 100%;
}
.checkout-summary { margin-top: 1.5rem; padding: 1rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); }
.checkout-total { font-weight: 700; margin-top: 0.75rem; }
.site-footer { position: relative; border-top: 1px solid var(--border); background: #fffdf8; padding: 2rem 1rem 2.5rem; margin-top: 2rem; overflow: hidden; }
.site-footer--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
}
.site-footer--has-bg > * { position: relative; z-index: 1; }
.site-footer__payments { max-width: 1100px; margin: 1.25rem auto 0; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.payment-icons__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 2rem;
  padding: 0.2rem 0.35rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
}
.payment-icons__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer__grid { max-width: 1100px; margin: 0 auto; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer__group { border-bottom: 1px solid var(--border); }
.site-footer__group:last-of-type { border-bottom: none; }
@media (min-width: 768px) {
  .site-footer__group { border-bottom: none; }
  .site-footer__group > :not(summary) { display: block !important; }
}
.site-footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--gold-deep);
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  user-select: none;
}
.site-footer__heading::-webkit-details-marker { display: none; }
.site-footer__heading::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 0.15rem;
}
.site-footer__group[open] .site-footer__heading::after { transform: rotate(-135deg); }
@media (min-width: 768px) {
  .site-footer__heading {
    cursor: default;
    pointer-events: none;
    padding: 0;
    margin: 0 0 0.5rem;
  }
  .site-footer__heading::after { display: none; }
}
.site-footer__links { list-style: none; margin: 0; padding: 0 0 0.85rem; }
@media (min-width: 768px) { .site-footer__links { padding: 0; } }
.site-footer__links li + li { margin-top: 0.35rem; }
.site-footer__links a { color: var(--muted); text-decoration: none; }
.site-footer__copy { max-width: 1100px; margin: 1.5rem auto 0; font-size: 0.85rem; color: var(--muted); }
.site-footer__newsletter-col {
  max-width: 22rem;
}
.footer-newsletter__title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.footer-newsletter__form {
  display: grid;
  gap: 0.85rem;
}
.footer-newsletter__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.35rem;
}
.footer-newsletter__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.footer-newsletter__input::placeholder {
  color: var(--muted);
  opacity: 0.85;
}
.footer-newsletter__input:focus {
  outline: none;
}
.footer-newsletter__submit {
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 0.25rem 0.15rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.footer-newsletter__submit:hover { color: var(--gold-deep); }
.footer-newsletter__submit:disabled {
  opacity: 0.45;
  cursor: wait;
}
.footer-newsletter__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}
.footer-newsletter__consent input {
  margin-top: 0.15rem;
  accent-color: var(--gold-deep);
}
.footer-newsletter__consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-newsletter__consent a:hover { color: var(--gold-deep); }
.footer-newsletter__message {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}
.footer-newsletter__message--ok { color: #2d6a4f; }
.footer-newsletter__message--err { color: #9b2c2c; }
.footer-newsletter__message[hidden] { display: none; }
.welcome-popup__card--compact { max-width: 420px; margin: 0 auto; }
.welcome-popup__card--compact .welcome-popup__content { padding: 1.75rem 1.5rem 1.5rem; }
.checkout-voucher__hint { margin: 0 0 0.75rem; font-size: 0.9rem; color: var(--muted); }
.checkout-voucher__row { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: flex-end; }
.checkout-voucher__field { flex: 1 1 12rem; min-width: 10rem; }
.checkout-voucher__btn { flex: 0 0 auto; margin-bottom: 0.15rem; }
.checkout-voucher__msg { margin: 0.5rem 0 0; font-size: 0.88rem; }
.checkout-voucher__msg--ok { color: #2d6a4f; }
.checkout-voucher__msg--err { color: #9b2c2c; }
.checkout-aside__discount { display: flex; justify-content: space-between; margin: 0.35rem 0 0; font-size: 0.92rem; color: #2d6a4f; }
.checkout-aside__discount strong { font-weight: 600; }
.checkout-aside__shipping,
.checkout-aside__tax,
.cart-page__shipping,
.cart-page__tax,
.cart-page__total {
  display: flex;
  justify-content: space-between;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}
.checkout-processing-head__back { margin-top: 0.75rem; }
.checkout-aside__total {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}
.checkout-aside__total strong { font-size: 1.05rem; color: var(--ink); }

.site-user { font-size: 0.9rem; color: var(--muted); max-width: 8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.site-logout-form { display: inline; margin: 0; }
.site-signout { border: none; background: none; color: var(--gold-deep); cursor: pointer; font: inherit; text-decoration: underline; padding: 0; }
.auth-form { max-width: 420px; display: grid; gap: 1rem; margin: 1.25rem 0; }
.auth-form label { display: block; font-weight: 500; }
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] { width: 100%; margin-top: 0.35rem; padding: 0.55rem 0.7rem; border-radius: 8px; border: 1px solid var(--border); font: inherit; box-sizing: border-box; }
.auth-form__remember { display: flex; align-items: center; gap: 0.5rem; font-weight: 400; font-size: 0.95rem; }
.auth-form__remember input { margin: 0; }
.auth-form__switch { font-size: 0.95rem; color: var(--muted); margin: 0.5rem 0 0; }
.auth-form__divider { display: flex; align-items: center; gap: 1rem; max-width: 420px; margin: 1.5rem 0; color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.auth-form__divider::before,
.auth-form__divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.form-errors { list-style: none; margin: 0 0 1rem; padding: 0.75rem 1rem; border-radius: 8px; background: #fff5f5; border: 1px solid #f0c4c4; color: #8b2e2e; max-width: 420px; }
.form-errors li + li { margin-top: 0.35rem; }
.cart-auth-note { margin-top: 0.75rem; font-size: 0.95rem; color: var(--muted); }
.login-google-wrap { margin: 1.5rem 0; }
.btn--google { background: #fff; color: var(--ink); border: 1px solid var(--border); box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: 0.5rem; }
.login-note { font-size: 0.9rem; color: var(--muted); }

.site-main--home {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.site-main--home > .home-section {
  --home-section-bg: #ffffff;
  --home-section-border: rgba(64, 55, 42, 0.1);
  --home-section-shadow: 0 10px 30px rgba(31, 26, 20, 0.08);
  max-width: 1400px;
  margin-top: clamp(1rem, 2.4vw, 1.8rem);
  margin-bottom: clamp(1rem, 2.4vw, 1.8rem);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.1rem, 2vw, 1.7rem) clamp(0.9rem, 2.2vw, 1.5rem);
  background-color: var(--home-section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--home-section-border);
  border-radius: clamp(12px, 1.2vw, 18px);
  box-shadow: var(--home-section-shadow);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.site-main--home > .home-section--has-bg-image {
  isolation: isolate;
}
.site-main--home > .home-section--has-bg-image > * {
  position: relative;
  z-index: 1;
}
.site-main--home > .home-section:first-of-type {
  margin-top: 0;
}
.site-main--home > .home-section--bestsellers + .home-section--new {
  margin-top: clamp(1.2rem, 3vw, 2.1rem);
}
.site-main--home .section__title {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  transform-origin: 50% 58%;
  animation: home-title-wave 6.8s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}
.site-main--home .home-section.is-visible .section__title {
  animation-play-state: running;
}
.site-main--home > .home-section.home-section--reviews{
  max-width: 100%;
}
@keyframes home-title-wave {
  0%,
  100% { transform: translateY(0) rotate(0deg); }
  20% { transform: translateY(-1px) rotate(-0.45deg); }
  50% { transform: translateY(0.9px) rotate(0.45deg); }
  75% { transform: translateY(-0.6px) rotate(-0.2deg); }
}
@media (max-width: 960px) {
  .site-main--home > .home-section {
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
    padding: 1rem 0.8rem 1.1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(31, 26, 20, 0.07);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-main--home .section__title {
    animation: none;
    transform: none;
  }
}
.shop-product-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .shop-product-grid { gap: 1rem; }
}
@media (min-width: 961px) {
  .shop-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.home-section__empty {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.home-section__empty a {
  color: var(--gold-deep);
}

.home-section--brands {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.home-brands-marquee__heading {
  margin-bottom: 1.1rem;
}
.home-brands-marquee {
  width: 100%;
}
.home-brands-marquee__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.home-brands-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  animation: home-brands-marquee 48s linear infinite;
  will-change: transform;
}
.home-brands-marquee__viewport:hover .home-brands-marquee__track {
  animation-play-state: paused;
}
.home-brands-marquee--static .home-brands-marquee__viewport {
  overflow: visible;
  mask-image: none;
}
.home-brands-marquee--static .home-brands-marquee__track {
  animation: none;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  will-change: auto;
}
@keyframes home-brands-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.home-brands-marquee__link {
  flex: 0 0 calc((min(1400px, 100vw) - 4rem) / 5);
  box-sizing: border-box;
  max-width: 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.5rem 0.75rem;
  text-decoration: none;
  color: inherit;
  background: #faf8f4;
  border: 1px solid rgba(43, 38, 31, 0.08);
  border-radius: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.home-brands-marquee__link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.home-brands-marquee__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.5rem;
}
.home-brands-marquee__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.home-brands-marquee__name {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  color: var(--ink);
}

.home-section--certificates {
  padding-bottom: 1.25rem;
}
.home-certificates-marquee {
  margin-top: 1rem;
  overflow: hidden;
  padding: 0.25rem 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.home-certificates-marquee__track {
  display: flex;
  width: max-content;
  animation: home-certificates-marquee-rtl 32s linear infinite;
  will-change: transform;
}
.home-certificates-marquee:hover .home-certificates-marquee__track {
  animation-play-state: paused;
}
.home-certificates-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  padding-right: 1rem;
}
.home-certificates-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(100px, 72vw);
  max-width: 220px;
  padding: 0.5rem 1.1rem;
}
.home-certificates-marquee__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 5rem;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
@keyframes home-certificates-marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (min-width: 768px) {
  .home-certificates-marquee__item {
    min-width: 200px;
  }
}

.category-card-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .category-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .category-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #faf8f4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(43, 38, 31, 0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.category-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e4dc;
}
.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 639px) {
  .category-card__media img {
    aspect-ratio: 1 / 1;
  }
}
.category-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.category-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}
.category-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}
.category-card__cta {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 0.35rem;
}

.shop-product-card {
  background: #faf8f4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(43, 38, 31, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.shop-product-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e9e4dc;
}
.shop-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .shop-product-card:hover .shop-product-card__media img {
    transform: scale(1.05);
  }
}
.shop-product-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-product-card__category {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
  min-height: 1.9rem;
  max-height: 1.9rem;
  overflow: hidden;
}
.shop-product-card__title {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  line-height: 1.3;
  min-height: 2.6rem;
  max-height: 2.6rem;
  overflow: hidden;
}
.shop-product-card__title a {
  color: inherit;
  text-decoration: none;
}
.shop-product-card__title a:hover {
  color: var(--gold-deep);
}
.shop-product-card__desc {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
  min-height: 3.7rem;
  max-height: 3.7rem;
  overflow: hidden;
}
.shop-product-card__price {
  margin: 0.55rem 0 0;
  font-weight: 600;
  color: var(--gold-deep);
  min-height: 1.5rem;
  font-size: 25px;
}
.shop-product-card__form {
  margin-top: auto;
}
.shop-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.shop-product-card__btn {
  flex: 1 1 calc(50% - 0.25rem);
  min-width: 6.5rem;
}

/* Missoma-style product card */
.shop-product-card--missoma {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.shop-product-card--missoma .shop-product-card__media-wrap {
  position: relative;
  overflow: hidden;
  background: #ececec;
}
.shop-product-card--missoma .shop-product-card__media {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ececec;
  position: relative;
}
.shop-product-card--missoma .shop-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
  border-radius: 0;
}
.shop-product-card--missoma .shop-product-card__img--back {
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media (hover: hover) {
  .shop-product-card--missoma:hover .shop-product-card__img--front {
    opacity: 0;
  }
  .shop-product-card--missoma:hover .shop-product-card__img--back {
    opacity: 1;
  }
}
.shop-product-card--missoma .shop-product-card__badge {
  position: absolute;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  line-height: 1;
  pointer-events: none;
}
.shop-product-card--missoma .shop-product-card__badge--label {
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.32rem 0.5rem;
  font-size: 15px;
  font-weight: 600;
  background: #111;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
}
.shop-product-card--missoma .shop-product-card__sticker {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 4.75rem;
  height: 4.75rem;
  pointer-events: none;
}
.shop-product-card--missoma .shop-product-card__sticker-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: top right;
  animation: product-card-sticker-shake 3.5s ease-in-out infinite;
}
@keyframes product-card-sticker-shake {
  0%, 70%, 100% { transform: rotate(0) translate3d(0, 0, 0); }
  72% { transform: rotate(-10deg) translate3d(-2px, 0, 0); }
  74% { transform: rotate(-2deg) translate3d(2px, 0, 0); }
  76% { transform: rotate(-10deg) translate3d(-2px, 0, 0); }
  78% { transform: rotate(-2deg) translate3d(2px, 0, 0); }
  80% { transform: rotate(-8deg) translate3d(-1px, 0, 0); }
  82% { transform: rotate(-4deg) translate3d(1px, 0, 0); }
  84% { transform: rotate(0) translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .shop-product-card--missoma .shop-product-card__sticker-img {
    animation: none;
  }
}
.shop-product-card--missoma .shop-product-card__cart-btn {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(43, 38, 31, 0.1);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.shop-product-card--missoma .shop-product-card__cart-btn:hover {
  opacity: 1;
  background: #111;
  color: #fff;
}
.shop-product-card--missoma .shop-product-card__cart-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.shop-product-card--missoma .shop-product-card__cart-icon {
  flex-shrink: 0;
}
.shop-product-card--missoma .shop-product-card__body {
  padding: 0.75rem 0 0;
  gap: 0.35rem;
}
.shop-product-card--missoma .shop-product-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 1rem;
}
.shop-product-card--missoma .shop-product-card__swatch {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.shop-product-card--missoma .shop-product-card__swatch-dot {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 1px solid rgba(43, 38, 31, 0.25);
  background-color: #e8e8e8;
  background-image: linear-gradient(135deg, #d4af37, #f5e6b8);
}
.shop-product-card--missoma .shop-product-card__swatch-dot--custom {
  background-image: none;
}
.shop-product-card--missoma .shop-product-card__swatches {
  margin-top: 0.45rem;
}
.shop-product-card--missoma .shop-product-card__swatch.is-active .shop-product-card__swatch-dot {
  box-shadow: 0 0 0 1px var(--ink);
}
.shop-product-card--missoma .shop-product-card__title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  min-height: auto;
  max-height: none;
  font-weight: 500;
  font-family: inherit;
}
.shop-product-card--missoma .shop-product-card__title a {
  color: var(--ink);
}
.shop-product-card--missoma .shop-product-card__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.shop-product-card--missoma .shop-product-card__price {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  min-height: auto;
}
.shop-product-card--missoma .shop-product-card__compare {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: #9a9a9a;
  text-decoration: line-through;
  opacity: 1;
}

/* Missoma catalog */
.catalog-missoma {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.catalog-breadcrumb {
  margin: 0 0 0.85rem;
}
.catalog-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.catalog-breadcrumb__item + .catalog-breadcrumb__item::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.55;
}
.catalog-breadcrumb__item a {
  color: var(--muted);
  text-decoration: none;
}
.catalog-breadcrumb__item a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.catalog-breadcrumb__item[aria-current="page"] {
  color: var(--ink);
}
.catalog-page-head {
  text-align: left;
  max-width: 52rem;
  margin: 0 0 1rem;
}
.catalog-page-head__title {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}
.catalog-page-head__desc {
  max-width: 42rem;
}
.catalog-page-head__summary {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
  font-size: 0.95rem;
}
.catalog-page-head__summary.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-page-head__toggle {
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
}
.catalog-chips {
  margin: 0 0 1.15rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.catalog-chips::-webkit-scrollbar {
  display: none;
}
.catalog-chips__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding-bottom: 0.15rem;
}
.catalog-chips__link {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(43, 38, 31, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.25;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.catalog-chips__link:hover {
  border-color: var(--ink);
}
.catalog-chips__link.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.catalog-toolbar {
  position: sticky;
  top: var(--site-header-height, 0px);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.25rem;
  background: rgba(250, 245, 239, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(43, 38, 31, 0.14);
  /* border-radius: 10px; bỏ phần này */
}
.catalog-toolbar__filters-btn {
  border: 1px solid rgba(43, 38, 31, 0.14);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
}
.catalog-toolbar__filters-icon {
  flex-shrink: 0;
}
.catalog-toolbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0 0.3rem;
}
.catalog-toolbar__count {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}
.catalog-toolbar__sort {
  margin: 0;
  flex-shrink: 0;
}
.catalog-toolbar__sort-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.catalog-toolbar__sort-select {
  border: 1px solid rgba(43, 38, 31, 0.14);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  color: var(--ink);
  min-width: 9.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%232b261f' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  appearance: none;
}
.catalog-toolbar__sort-select:focus {
  outline: 2px solid rgba(201, 166, 107, 0.55);
  outline-offset: 1px;
}
.catalog-filters-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  pointer-events: none;
}
.catalog-filters-drawer[hidden] {
  display: none !important;
}
.catalog-filters-drawer:not([hidden]) {
  pointer-events: auto;
}
.catalog-filters-drawer.is-open .catalog-filters-drawer__backdrop {
  opacity: 1;
}
.catalog-filters-drawer.is-open .catalog-filters-drawer__panel {
  transform: translateX(0);
}
.catalog-filters-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(43, 38, 31, 0.4);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.catalog-filters-drawer__panel {
  position: relative;
  z-index: 1;
  width: min(360px, 92vw);
  max-width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 32px rgba(43, 38, 31, 0.12);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.catalog-filters-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid rgba(43, 38, 31, 0.1);
}
.catalog-filters-drawer__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.catalog-filters-drawer__close {
  border: 0;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  padding: 0 0.15rem;
  cursor: pointer;
  color: var(--ink);
}
.catalog-filters-drawer .catalog-filters {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.catalog-filters-drawer .catalog-filters label {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.catalog-filters-drawer .catalog-filters__actions {
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) {
  .catalog-toolbar {
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .catalog-toolbar__filters-btn,
  .catalog-toolbar__sort {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
  }
  .catalog-toolbar__filters-btn {
    justify-content: center;
  }
  .catalog-toolbar__sort-label,
  .catalog-toolbar__sort-select {
    width: 100%;
  }
}
.site-main--catalog .shop-product-grid--catalog {
  margin-top: 1.15rem;
  gap: 1.25rem 0.85rem;
}
@media (min-width: 640px) {
  .site-main--catalog .shop-product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }
}
@media (min-width: 1100px) {
  .site-main--catalog .shop-product-grid--catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.15rem;
  }
}
.catalog-show-more-wrap {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0.5rem;
}
.catalog-show-more {
  min-width: 14rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
body.is-catalog-filters-open {
  overflow: hidden;
}

.cart-line__variant {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.checkout-aside__variant {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Product card drawer (Missoma-style) */
.pc-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}
.pc-drawer[hidden] {
  display: none !important;
}
.pc-drawer:not([hidden]) {
  display: flex;
  justify-content: flex-end;
  pointer-events: auto;
}
.pc-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 38, 31, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pc-drawer.is-open .pc-drawer__backdrop {
  opacity: 1;
}
.pc-drawer__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  width: min(920px, 100vw);
  height: 100%;
  max-height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(43, 38, 31, 0.12);
}
.pc-drawer__shell--bag-only {
  grid-template-columns: minmax(0, 1fr);
  width: min(420px, 100vw);
}
.pc-drawer.is-open .pc-drawer__shell {
  transform: translateX(0);
}
.pc-drawer__upsells {
  background: #f7f4ef;
  border-right: 1px solid rgba(43, 38, 31, 0.08);
  padding: 1.25rem 1rem;
  overflow-y: auto;
}
.pc-drawer__upsells-title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.pc-drawer__upsells-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.pc-drawer__upsell-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.pc-drawer__upsell-media {
  display: block;
  background: #ece8e1;
  border-radius: 8px;
  overflow: hidden;
}
.pc-drawer__upsell-media img {
  width: 100%;
  height: auto;
  display: block;
}
.pc-drawer__upsell-name {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.pc-drawer__upsell-price {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
}
.pc-drawer__upsell-add {
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
}
.pc-drawer__upsell-add:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
}
.pc-drawer__upsell-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pc-drawer__bag {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
}
.pc-drawer__bag-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.75rem;
  border-bottom: 1px solid rgba(43, 38, 31, 0.08);
}
.pc-drawer__bag-title {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.pc-drawer__close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}
.pc-drawer__add-product {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(43, 38, 31, 0.08);
  background: #faf8f4;
}
.pc-drawer__add-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pc-drawer__add-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: #ece8e1;
}
.pc-drawer__add-name {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.pc-drawer__add-price {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.pc-drawer__variants {
  margin-bottom: 0.75rem;
}
.pc-drawer__variant-group + .pc-drawer__variant-group {
  margin-top: 0.55rem;
}
.pc-drawer__variant-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--muted);
}
.pc-drawer__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.pc-drawer__variant-btn {
  border: 1px solid rgba(43, 38, 31, 0.2);
  background: #fff;
  padding: 0.35rem 0.6rem;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}
.pc-drawer__variant-btn.is-active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.pc-drawer__add-btn {
  width: 100%;
  background: #111;
  border-color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}
.pc-drawer__bag-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 1.1rem 1rem;
  min-height: 0;
}
.pc-drawer__shipping-msg {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  text-align: center;
}
.pc-drawer__shipping-bar {
  height: 4px;
  background: rgba(43, 38, 31, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.pc-drawer__shipping-bar-fill {
  display: block;
  height: 100%;
  background: #111;
  border-radius: inherit;
}
.pc-drawer__empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.pc-drawer__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pc-drawer__line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0.65rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(43, 38, 31, 0.08);
}
.pc-drawer__line-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: #ece8e1;
}
.pc-drawer__line-name {
  color: inherit;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.pc-drawer__line-variant {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.pc-drawer__line-price {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
}
.pc-drawer__line-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  border: 1px solid rgba(43, 38, 31, 0.15);
  border-radius: 999px;
  padding: 0.1rem 0.35rem;
}
.pc-drawer__qty-btn {
  border: 0;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}
.pc-drawer__qty-val {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}
.pc-drawer__line-remove {
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  align-self: start;
  color: var(--muted);
}
.pc-drawer__footer {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(43, 38, 31, 0.08);
}
.pc-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}
.pc-drawer__note {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.pc-drawer__checkout {
  width: 100%;
  background: #111;
  border-color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.pc-drawer__footer .payment-icons {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
body.pc-drawer-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  .pc-drawer__shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: 100vw;
  }
  .pc-drawer__upsells {
    max-height: 38vh;
    border-right: 0;
    border-bottom: 1px solid rgba(43, 38, 31, 0.08);
  }
}

/* Missoma PDP */
.product-detail--missoma .product-detail__eyebrow {
  display: inline-block;
  text-decoration: none;
  color: var(--gold-deep);
  transition: color 0.15s ease, opacity 0.15s ease;
}
.product-detail--missoma .product-detail__eyebrow:hover,
.product-detail--missoma .product-detail__eyebrow:focus-visible {
  color: var(--ink);
  opacity: 0.9;
  outline: none;
}
.pd-variant-picker {
  margin: 1.15rem 0 0.25rem;
  display: grid;
  gap: 1rem;
}
.pd-variant-picker__group {
  display: grid;
  gap: 0.55rem;
}
.pd-variant-picker__label {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pd-variant-picker__swatches,
.pd-variant-picker__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.pd-variant-picker__swatch,
.pd-variant-picker__size {
  border: 1px solid rgba(43, 38, 31, 0.18);
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.pd-variant-picker__swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  border-color: transparent;
  padding: 2px;
}
.pd-variant-picker__swatch-dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(43, 38, 31, 0.22);
  background-color: #e8e8e8;
  background-image: linear-gradient(135deg, #d4af37, #f5e6b8);
}
.pd-variant-picker__swatch-dot--custom {
  background-image: none;
}
.pd-variant-picker__swatch--text {
  width: auto;
  height: auto;
  min-height: 2.125rem;
  border-radius: 999px;
  border-color: rgba(43, 38, 31, 0.18);
  background: #fff;
  padding: 0.35rem 0.85rem;
}
.pd-variant-picker__swatch-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.pd-variant-picker__size {
  min-width: 2.75rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-align: center;
}
.pd-variant-picker__swatch.is-active {
  box-shadow: 0 0 0 1px var(--ink);
}
.pd-variant-picker__swatch--text.is-active {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}
.pd-variant-picker__swatch--text.is-active .pd-variant-picker__swatch-label {
  color: #fff;
}
.pd-variant-picker__size.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.pd-variant-picker__swatch:hover:not(:disabled),
.pd-variant-picker__size:hover:not(:disabled) {
  border-color: rgba(43, 38, 31, 0.45);
}
.pd-variant-picker__swatch:disabled,
.pd-variant-picker__size:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.product-detail--missoma .add-form .btn--primary {
  width: 100%;
  background: #a67c3d;
  border-color: #a67c3d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-detail--missoma .add-form .btn--buy-now {
  width: 100%;
  margin-top: 0.45rem;
}
.pd-accordion {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(43, 38, 31, 0.12);
}
.pd-accordion__item {
  border-bottom: 1px solid rgba(43, 38, 31, 0.12);
}
.pd-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  padding: 0.95rem 0;
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
}
.pd-accordion__icon::before {
  content: "+";
}
.pd-accordion__btn[aria-expanded="true"] .pd-accordion__icon::before {
  content: "−";
}
.pd-accordion__panel {
  padding: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}
.pd-accordion__panel[hidden] {
  display: none;
}


.home-hero {
  position: relative;
  min-height: min(40vh, 45rem);
  max-height: 45rem;
  width: 100%;
  overflow: hidden;
}

/* Slider: all slides are position:absolute, so the frame needs an explicit height
   for img { height:100% } and absolute children to resolve reliably. */
.home-hero.home-hero--slider {
  min-height: clamp(330px, 60vh, 60rem);
  height: clamp(330px, 60vh, 60rem);
  max-height: 45rem;
}

.home-hero__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.home-hero--slider .home-hero__slides {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: clamp(330px, 60vh, 60rem);
  max-height: 45rem;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 1;
  visibility: visible;
}

.home-hero__slide-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  height: 100%;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-hero__slide-hit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
  border-radius: 2px;
}

.home-hero__slide-hit .home-hero__cta {
  cursor: pointer;
  border: none;
  text-align: center;
}

.home-hero__slide .home-hero__bg,
.home-hero__slide-hit .home-hero__bg {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.7s ease;
}

.home-hero__slide-hit picture,
.home-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .home-hero--slider .home-hero__slide.is-active:hover .home-hero__bg {
    transform: scale(1.04);
  }
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.home-hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-hero__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.home-hero__bg {
  width: 100%;
  height: 100%;
  min-height: min(40vh, 45rem);
  max-height: 45rem;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.7s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-hero:not(.home-hero--slider):hover .home-hero__bg {
    transform: scale(1.04);
  }
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding:2.5rem 0.5rem;
  color: #fff;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.home-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3.25rem);
  margin: 0;
}

.home-hero__lede {
  margin: 0;
  max-width: 30rem;
}

@media (max-width: 767px) {
  /* Let the banner image set height so nothing is cropped and overlay matches the image. */
  .home-hero.home-hero--slider {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .home-hero--slider .home-hero__viewport,
  .home-hero--slider .home-hero__slides {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .home-hero--slider .home-hero__slide {
    height: auto;
    min-height: 0;
    align-self: flex-start;
  }

  .home-hero--slider .home-hero__slide-hit {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
  }

  .home-hero--slider .home-hero__slide .home-hero__bg,
  .home-hero--slider .home-hero__slide-hit .home-hero__bg {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .home-hero--slider .home-hero__slide-hit picture,
  .home-hero--slider .home-hero__slide picture {
    height: auto;
  }
}

@media (min-width: 768px) {
  /* Match recommended slide art (1400×788) so object-fit: cover does not crop. */
  .home-hero.home-hero--slider {
    aspect-ratio: 1400 / 788;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .home-hero--slider .home-hero__viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home-hero--slider .home-hero__slides {
    min-height: 0;
    max-height: none;
    height: 100%;
  }

  .home-hero--slider .home-hero__slide .home-hero__bg,
  .home-hero--slider .home-hero__slide-hit .home-hero__bg,
  .home-hero--slider .home-hero__bg {
    min-height: 0;
    max-height: none;
    height: 100%;
  }
}

.home-section {
  width: 100%;
  padding: 1.5rem 1rem;
}

.home-section--spotlight {
  background: #fff;
}

.section__title--center {
  text-align: center;
}

.spotlight-grid {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.spotlight-card {
  background: #faf8f4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(43, 38, 31, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spotlight-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e9e4dc;
}

.spotlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .spotlight-card:hover .spotlight-card__media img {
    transform: scale(1.05);
  }
}

.spotlight-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.spotlight-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.spotlight-card__title a {
  text-decoration: none;
  color: inherit;
}

.spotlight-card__title a:hover {
  color: var(--gold-deep);
}

.spotlight-card__price {
  margin: 0;
  font-weight: 600;
  color: var(--gold-deep);
}

.spotlight-card__cart {
  margin: 0;
  margin-top: auto;
}

.spotlight-card__add {
  width: 100%;
}

.features-strip {
  background: #f5f2ec;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.feature-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(43, 38, 31, 0.08);
  padding: 1rem;
}

.feature-item h3 {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.home-section--featured {
  background: #fff;
}

.featured-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.featured-card {
  background: #faf8f4;
  border-radius: 12px;
  overflow: hidden;
}

.featured-card__link {
  text-decoration: none;
  color: inherit;
}

.featured-card__img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.featured-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card__title {
  margin: 0.55rem 0.65rem 0.8rem;
  font-size: 0.95rem;
}

.insights {
  background: #efede8;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.insight-card {
  background: #666;
  color: #fff;
  border-radius: 12px;
  padding: 1.1rem;
}

.insight-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3em;
}

.insight-card p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.btn--small {
  padding: 0.45rem 1rem;
  font-size: 0.86rem;
}

.reveal-on-scroll {
  transform: translateY(34px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: 0.5s;
}

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

/* Avoid parent translateY fighting track translate3d during iOS swipe. */
.home-hero--slider.reveal-on-scroll {
  transform: none;
  transition: opacity 0.55s ease;
  transition-delay: 0.5s;
}
.home-hero--slider.reveal-on-scroll:not(.is-visible) {
  opacity: 0;
}
.home-hero--slider.reveal-on-scroll.is-visible {
  opacity: 1;
}

/* Avoid parent translateY fighting track translate3d (journal carousel). */
.home-section--journal.reveal-on-scroll {
  transform: none;
  transition: opacity 0.55s ease;
  transition-delay: 0.5s;
}
.home-section--journal.reveal-on-scroll:not(.is-visible) {
  opacity: 0;
}
.home-section--journal.reveal-on-scroll.is-visible {
  opacity: 1;
}

@media (min-width: 700px) {
  .home-hero__overlay {
    padding: 2.5rem 3.5rem;
  }

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

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

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

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

/* ===========================================================
 * Checkout — 3-step flow (method → details → processing)
 * =========================================================== */
.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem auto 1.75rem;
  padding: 0;
  max-width: 720px;
  flex-wrap: wrap;
}
.checkout-stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}
.checkout-stepper__item + .checkout-stepper__item::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--border);
  margin-right: 0.25rem;
}
.checkout-stepper__bullet {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}
.checkout-stepper__item--current {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(166, 124, 61, 0.25);
}
.checkout-stepper__item--current .checkout-stepper__bullet {
  background: #fff;
  color: var(--gold-deep);
}
.checkout-stepper__item--done {
  background: #fffaf0;
  border-color: rgba(201, 166, 107, 0.55);
  color: var(--gold-deep);
}
.checkout-stepper__item--done .checkout-stepper__bullet {
  background: var(--gold-deep);
  color: #fff;
}

@media (max-width: 767px) {
  .checkout-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .checkout-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .checkout-summary-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .checkout-summary-banner__change {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .checkout-stepper {
    max-width: none;
    margin: 0.85rem 0 1.35rem;
    gap: 0.35rem;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.15rem 0.25rem 0.35rem;
  }
  .checkout-stepper__item {
    padding: 0.35rem 0.7rem;
    font-size: 0.84rem;
    flex-shrink: 0;
  }
  .checkout-stepper__item + .checkout-stepper__item::before {
    width: 12px;
    margin-right: 0.15rem;
  }
  .checkout-stepper__bullet {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.78rem;
  }
  .checkout-stepper__label {
    max-width: 7.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .payment-card {
    padding: 0.85rem 0.9rem;
    gap: 0.65rem;
    align-items: flex-start;
  }
  .payment-card__icon {
    width: 40px;
    height: 40px;
  }
  .payment-card__desc {
    font-size: 0.86rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .checkout-summary-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.25rem 0.75rem;
    padding: 0.75rem 0.95rem;
  }
  .checkout-summary-banner__label {
    grid-column: 1;
    grid-row: 1;
  }
  .checkout-summary-banner__method {
    grid-column: 1;
    grid-row: 2;
  }
  .checkout-summary-banner__change {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-left: 0;
    align-self: center;
  }

  .checkout-aside__item {
    display: flex;
    align-items: flex-start;
    padding: 0.6rem 0;
    gap: 0.5rem;
  }
  .checkout-aside__body {
    min-width: 0;
    flex: 1;
  }
  .checkout-aside__thumb img {
    width: 52px;
    height: 52px;
  }
  .checkout-aside__name {
    font-size: 0.9rem;
  }

  .checkout-actions {
    gap: 0.65rem;
    margin-top: 1rem;
  }
  .checkout-actions .btn--primary {
    flex: 1 1 12rem;
    justify-content: center;
  }

  .checkout-block__title {
    font-size: 1.25rem;
  }
  .checkout-form {
    gap: 1.25rem;
  }

  .gateway-pane {
    padding: 1.2rem 1.25rem;
  }
  .gateway-pane__title {
    font-size: 1.45rem;
  }
  .gateway-pane__qr-wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .gateway-pane__qr-meta {
    text-align: left;
  }

  .checkout-shipping-option {
    padding: 0.75rem 0.85rem;
  }
}

.payment-methods {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.payment-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.payment-card:hover { border-color: var(--gold); }
.payment-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #00000000;
}
.payment-card__icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.payment-card__icon-placeholder {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.payment-card__body { display: grid; gap: 0.15rem; }
.payment-card__label { font-weight: 600; color: var(--ink); }
.payment-card__desc { color: var(--muted); font-size: 0.92rem; }
.payment-card__check {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all 0.18s ease;
}
.payment-card:has(input[type="radio"]:checked) {
  border-color: var(--gold-deep);
  box-shadow: 0 12px 28px rgba(166, 124, 61, 0.18);
  transform: translateY(-1px);
}
.payment-card:has(input[type="radio"]:checked) .payment-card__check {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.checkout-summary-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.checkout-summary-banner__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-summary-banner__method {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-summary-banner__icon { display: inline-grid; place-items: center; width: 28px; height: 28px; }
.checkout-summary-banner__icon svg { width: 24px; height: 24px; }
.checkout-summary-banner__change {
  margin-left: auto;
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: none;
}
.checkout-summary-banner__change:hover { text-decoration: underline; }

.checkout-processing {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
.checkout-processing__order {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.checkout-processing__order-no { margin: 0; color: var(--muted); }
.checkout-processing__total { margin: 0; }

.gateway-pane {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.gateway-pane__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
.gateway-pane__steps {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}
.gateway-pane__cta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gateway-pane__hint {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.gateway-pane__hint--warn {
  color: #8b4513;
  padding: 0.65rem 0.85rem;
  background: #fff8e6;
  border-radius: 8px;
  border: 1px solid #e8d4a8;
}
.gateway-pane__paypal-buttons {
  min-height: 48px;
  margin-top: 0.75rem;
}
.gateway-pane__apple-pay {
  min-height: 48px;
  margin-top: 0.75rem;
  max-width: 320px;
}
.gateway-pane__details {
  background: var(--cream-dark);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
}
.gateway-pane__details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}
.gateway-pane__pre {
  margin: 0.6rem 0 0;
  padding: 0.65rem 0.8rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: "Source Sans 3", system-ui, sans-serif;
  white-space: pre-wrap;
  font-size: 0.92rem;
}
.gateway-pane__subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.gateway-pane__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--cream-dark);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.gateway-pane__qr,
.gateway-pane__qr-img {
  display: block;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.gateway-pane__qr-meta {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}
.gateway-pane__proof-form {
  display: grid;
  gap: 0.85rem;
}
.gateway-pane__file,
.gateway-pane__field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}
.gateway-pane__file-label {
  font-weight: 600;
  color: var(--ink);
}
.gateway-pane__field input[type="text"] {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
.gateway-pane__file .file-upload__label {
  font-weight: 600;
  color: var(--ink);
}
.banner--info {
  background: #eef6ff;
  border-color: #b8d4f0;
  color: #1a4a7a;
}
.banner--ok {
  background: #edf7ef;
  border-color: #b8dfc0;
  color: #1a5c2e;
}

.btn--paypal {
  background: linear-gradient(135deg, #009cde 0%, #003087 100%);
  box-shadow: 0 10px 24px rgba(0, 48, 135, 0.25);
}
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
}
.btn--venmo {
  background: linear-gradient(135deg, #008cff 0%, #0066cc 100%);
  box-shadow: 0 10px 24px rgba(0, 102, 204, 0.25);
}
.btn--cashapp {
  background: linear-gradient(135deg, #00d632 0%, #00a828 100%);
  box-shadow: 0 10px 24px rgba(0, 168, 40, 0.25);
}
.btn--applepay {
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.btn--applepay:hover { background: #1a1a1a; }

/* ===========================================================
 * Reviews — stars, list, form
 * =========================================================== */
.stars { display: inline-flex; gap: 0.1rem; color: var(--gold-deep); vertical-align: middle; }
.stars__icon { color: rgba(166, 124, 61, 0.35); }
.stars__icon.is-on { color: var(--gold-deep); }

.product-detail__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.25rem 0 0.75rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.product-detail__rating:hover { color: var(--gold-deep); }

.reviews { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.reviews__head { display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
@media (min-width: 720px) { .reviews__head { grid-template-columns: 1fr 2fr; align-items: start; } }
.reviews__summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; box-shadow: var(--shadow); }
.reviews__avg { display: flex; align-items: baseline; gap: 0.6rem; }
.reviews__avg-num { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.4rem; font-weight: 600; color: var(--ink); line-height: 1; }
.reviews__count { color: var(--muted); margin: 0.35rem 0 0.85rem; font-size: 0.95rem; }
.reviews__bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.reviews__bar { display: grid; grid-template-columns: 2.4rem 1fr 2rem; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--muted); }
.reviews__bar-track { display: block; height: 6px; background: var(--cream-dark); border-radius: 999px; overflow: hidden; }
.reviews__bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%); }
.reviews__bar-count { text-align: right; font-variant-numeric: tabular-nums; }
.reviews__empty { color: var(--muted); padding: 1.25rem; text-align: center; background: var(--cream-dark); border-radius: var(--radius); }

.reviews__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.review-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.review-card__title { margin: 0.35rem 0 0; font-size: 1.1rem; font-family: "Cormorant Garamond", Georgia, serif; }
.review-card__meta { margin: 0; color: var(--muted); font-size: 0.88rem; }
.review-card__content { margin: 0.6rem 0 0; color: var(--ink); }
.review-card__images { list-style: none; padding: 0; margin: 0.85rem 0 0; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.review-card__images a { display: block; }
.review-card__images img { width: 88px; height: 88px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-soft, var(--border)); }

/* Review submission form */
.review-form-wrap { display: grid; gap: 1.25rem; max-width: 720px; margin: 0 auto; }
@media (min-width: 720px) { .review-form-wrap { grid-template-columns: 220px 1fr; align-items: start; } }
.review-form-product { display: flex; gap: 0.85rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.85rem; }
.review-form-product img { border-radius: 10px; flex-shrink: 0; object-fit: cover; }
.review-form-product__title { margin: 0.25rem 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem; }
.review-form-product__title a { color: var(--ink); text-decoration: none; }

.review-form { display: grid; gap: 0.9rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.4rem; box-shadow: var(--shadow); }
.review-form label { display: grid; gap: 0.35rem; font-weight: 500; }
.review-form input[type="text"], .review-form textarea { width: 100%; padding: 0.55rem 0.7rem; border-radius: 8px; border: 1px solid var(--border); font: inherit; }
.review-form .file-upload__hint { color: var(--muted); font-size: 0.85rem; }
.review-form__rating { border: none; padding: 0; margin: 0; }
.review-form__rating legend { font-weight: 600; margin-bottom: 0.4rem; }
.review-form__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }

/* Stars input — radios reversed via flex direction so hovering a star highlights it + all to the left */
.rating-stars { display: inline-flex; flex-direction: row-reverse; gap: 0.15rem; }
.rating-stars input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.rating-stars label { color: rgba(166, 124, 61, 0.3); cursor: pointer; transition: color 0.15s ease, transform 0.15s ease; }
.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label { color: var(--gold-deep); }
.rating-stars label:hover { transform: scale(1.06); }
.rating-stars input:focus-visible + label { outline: 2px solid var(--gold-deep); outline-offset: 4px; border-radius: 4px; }

/* Contact form */
.site-main--contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100dvh - 11rem);
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.contact-page {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.contact-page .page-head {
  margin-bottom: 1.5rem;
}
.contact-page .page-head__summary {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
.contact-grid {
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact-info { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.4rem; }
.contact-info p { margin: 0.4rem 0; }
.contact-form-section {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: left;
}
.contact-form-section .product-detail__section-title,
.contact-form-section .muted {
  text-align: center;
}
.contact-form-section .muted { color: var(--muted); }
.contact-form { display: grid; gap: 0.85rem; margin-top: 0.85rem; }
.contact-form label { display: grid; gap: 0.35rem; font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.55rem 0.7rem; border-radius: 8px; border: 1px solid var(--border); font: inherit; }
.contact-form textarea { resize: none; }
.contact-form__actions { display: flex; justify-content: center; }
.contact-form__feedback {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center;
}
.contact-form__feedback.is-ok {
  background: #eef7ee;
  border: 1px solid #c6e5c6;
  color: #2f6b2f;
}
.contact-form__feedback.is-err {
  background: #fdeeee;
  border: 1px solid #f0c4c4;
  color: #8b2e2e;
}

/* Order confirmation per-item review action */
.order-items { margin-top: 1.5rem; }
.order-items__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.order-items__row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.85rem 1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); flex-wrap: wrap; }
.order-items__info { display: flex; flex-direction: column; gap: 0.15rem; }
.order-items__info .muted { color: var(--muted); font-size: 0.9rem; }
.order-items__reviewed { color: var(--gold-deep); font-weight: 600; font-size: 0.9rem; }
.order-items__continue { margin-top: 1.25rem; }
.btn--small { padding: 0.4rem 0.9rem; font-size: 0.88rem; }
.btn--buy-now { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.btn--buy-now:hover { background: #1f1a14; }
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.28); }

.home-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.home-hero__nav:hover { background: rgba(0, 0, 0, 0.58); }
.home-hero__nav--prev { left: 0.75rem; }
.home-hero__nav--next { right: 0.75rem; }
@media (max-width: 767px) {
  .home-hero__nav { display: none; }
}
@supports (-webkit-touch-callout: none) {
  .home-hero--slider .home-hero__slides,
  .home-journal-slider__track,
  .home-product-slider__track,
  .home-review-slider__track {
    will-change: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero--slider .home-hero__slides { transition: none}
  .home-journal-slider__track { transition: none; }
  .home-product-slider__track { transition: none; }
  .home-review-slider__track { transition: none; }
  .home-certificates-marquee__track { animation: none; }
  .home-certificates-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.home-section__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.home-section--journal .section__title {
  margin: 0;
  text-align: left;
}
.home-journal-slider {
  position: relative;
  margin-top: 0.25rem;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  --slide-basis: var(--slide-basis-mobile, 100%);
}
.home-journal-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  touch-action: pan-y;
}
.home-journal-slider__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 10px 0;
}
.home-journal-slider__slide {
  flex: 0 0 var(--slide-basis);
  width: var(--slide-basis);
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.4rem;
}
.home-journal-slider__slide:first-child { padding-left: 0; }
.home-journal-slider__slide:last-child { padding-right: 0; }
@media (min-width: 480px) {
  .home-journal-slider {
    --slide-basis: var(--slide-basis-tablet, var(--slide-basis-mobile, 100%));
  }
}
@media (min-width: 961px) {
  .home-journal-slider {
    --slide-basis: var(--slide-basis-desktop, var(--slide-basis-tablet, 33.333%));
  }
  .home-journal-slider__slide {
    padding: 0 0.5rem;
  }
}
@media (min-width: 480px) and (max-width: 960px) {
  .home-journal-slider__slide {
    padding: 0 0.4rem;
  }
  .home-journal-slider__slide .home-news-card__media img {
    height: 350px !important;
    min-height: 0;
  }
  .home-journal-slider__slide .home-news-card__body {
    padding: 0.85rem 0.9rem 1rem;
  }
  .home-journal-slider__slide .home-news-card__title {
    font-size: 1.05rem;
    height: auto;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-journal-slider__slide .home-news-card__excerpt {
    font-size: 0.85rem;
    height: auto;
    min-height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-journal-slider__slide .home-news-card__date {
    font-size: 0.8rem;
  }
  .home-journal-slider__slide .home-news-card__link {
    font-size: 0.88rem;
  }
  .home-journal-slider__slide article.home-news-card.home-journal {
    min-height: unset;
  }
  .home-journal-slider__nav {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1rem;
  }
  .home-journal-slider__dots {
    margin-top: 0.75rem;
  }
}
.home-journal-slider.is-static .home-journal-slider__nav,
.home-journal-slider.is-static .home-journal-slider__dots {
  display: none;
}
.home-journal-slider__slide .home-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  max-width: none;
}
.home-journal-slider__slide .home-news-card__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}
.home-journal .home-news-card__title {
  font-size: 1.2rem;
  height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-journal .home-news-card__excerpt {
  font-size: 0.9rem;
  height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 390px) and (max-width: 479px) {
  .home-journal-slider__slide .home-news-card__media img {
    height: 440px;
  }

}
@media (min-width: 961px) {
  .home-journal-slider__slide .home-news-card__media img {
    height: 440px;
  }
  .home-journal-slider__slide .home-news-card__title {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .home-journal-slider__slide .home-news-card__media img {
    height: 440px;
  }
  .home-journal-slider__slide .home-news-card__title {
    font-size: 1.2rem;
  }
}
.home-journal-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.home-journal-slider__nav:hover {
  border-color: var(--gold);
  background: #fffaf0;
}
.home-journal-slider__nav--prev { left: 0.5rem; }
.home-journal-slider__nav--next { right: 0.5rem; }
.home-journal-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.home-journal-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(166, 124, 61, 0.28);
  cursor: pointer;
}
.home-journal-slider__dot.is-active {
  background: var(--gold-deep);
  transform: scale(1.15);
}
@media (max-width: 479px) {
  .home-journal-slider__nav { display: none; }
}

.home-product-slider {
  position: relative;
  margin-top: 1rem;
}
.home-product-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.home-product-slider__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home-product-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.35rem;
}
.home-product-slider__slide:first-child { padding-left: 0; }
.home-product-slider__slide:last-child { padding-right: 0; }
.home-product-slider__slide .shop-product-card {
  height: 100%;
  margin: 0;
}
.home-product-slider.is-static .home-product-slider__nav,
.home-product-slider.is-static .home-product-slider__dots {
  display: none;
}
.home-product-slider__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.home-product-slider__nav:hover {
  border-color: var(--gold);
  background: #fffaf0;
}
.home-product-slider__nav--prev { left: 0.25rem; }
.home-product-slider__nav--next { right: 0.25rem; }
.home-product-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.home-product-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(166, 124, 61, 0.28);
  cursor: pointer;
}
.home-product-slider__dot.is-active {
  background: var(--gold-deep);
  transform: scale(1.15);
}
@media (max-width: 699px) {
  .home-product-slider__nav { display: none; }
}
@media (min-width: 700px) and (max-width: 959px) {
  .home-product-slider__slide {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (min-width: 960px) {
  .home-product-slider__viewport {
    overflow: visible;
  }
  .home-product-slider__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    transform: none !important;
    transition: none;
  }
  .home-product-slider__slide {
    flex: none;
    width: auto;
    padding: 0;
  }
  .home-product-slider__nav,
  .home-product-slider__dots {
    display: none;
  }
}

.home-news-card__date {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.home-hero__actions {
  position: absolute;
  left: 50%;
  bottom: 3.25rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  width: min(100% - 2rem, 520px);
}
.home-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.home-section__empty--center { text-align: center; }
.category-card-grid--collections {
  max-width: 1100px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .category-card-grid--collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 900px) {
  .category-card-grid--collections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 639px) {
  .home-section--collections .category-card {
    border-radius: 8px;
  }
  .home-section--collections .category-card__media {
    aspect-ratio: 1 / 1;
  }
  .home-section--collections .category-card__body {
    padding: 0.45rem 0.5rem 0.55rem;
    gap: 0.2rem;
  }
  .home-section--collections .category-card__title {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .home-section--collections .category-card__desc {
    font-size: 0.68rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-section--collections .category-card__cta {
    font-size: 0.65rem;
    margin-top: 0.1rem;
  }
}
.home-section--stories.reveal-on-scroll {
  transform: none;
  opacity: 1;
  transition: none;
}
.home-section--stories .home-stories__reveal {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.home-section--stories .home-stories__reveal--from-start {
  transform: translateX(-3.5rem);
  transition-delay: 0.08s;
}
.home-section--stories .home-stories__reveal--from-end {
  transform: translateX(3.5rem);
  transition-delay: 0.22s;
}
.home-section--stories.is-visible .home-stories__reveal {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .home-section--stories .home-stories__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home-stories {
  max-width: var(--content-max, 1100px);
  margin: 0 auto;
}
.home-stories__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.home-stories__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}
.home-stories__img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(420px, 55vw);
  object-fit: contain;
  border-radius: var(--radius, 12px);
}
.home-stories__body {
  text-align: left;
}
.home-stories__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink, inherit);
}
.home-stories__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}
@media (max-width: 1023px) {
  .home-stories__description-body.is-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-stories__description-body.is-expanded {
    display: block;
    overflow: visible;
  }
}
.home-stories__read-more {
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-stories__read-more:hover { color: var(--ink); }
.home-stories__read-more[hidden] { display: none; }
@media (max-width: 768px) {
  .home-stories__layout {
    grid-template-columns: 1fr;
  }
  .home-stories__body {
    text-align: center;
  }
  .home-section--stories .home-stories__reveal--from-start {
    transform: translateY(-2rem);
  }
  .home-section--stories .home-stories__reveal--from-end {
    transform: translateY(2rem);
  }
}
.home-about {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.home-about__lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}
.home-about__panel {
  margin: 0 0 0.65rem;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.home-about__summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.home-about__summary::-webkit-details-marker { display: none; }
.home-about__summary::after {
  content: "+";
  float: right;
  color: var(--gold-deep);
  font-weight: 700;
}
.home-about__panel[open] .home-about__summary::after { content: "−"; }
.home-about__body {
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.home-about__body p { margin: 0; }
.home-about .btn { margin-top: 1.25rem; }
.about-page__body { margin-bottom: 0; }
.about-page__panels {
  max-width: 720px;
  margin: 1.75rem auto 0;
  text-align: left;
}
.about-page__panels.home-about { text-align: left; }
.home-review-slider {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  --slide-basis: var(--slide-basis-mobile, 50%);
}
.home-review-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.home-review-slider__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home-review-slider__slide {
  flex: 0 0 var(--slide-basis);
  width: var(--slide-basis);
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.25rem;
}
.home-review-slider__slide:first-child { padding-left: 0; }
.home-review-slider__slide:last-child { padding-right: 0; }
@media (min-width: 820px) {
  .home-review-slider {
    --slide-basis: var(--slide-basis-tablet, var(--slide-basis-mobile, 50%));
  }
}
@media (min-width: 960px) {
  .home-review-slider {
    --slide-basis: var(--slide-basis-desktop, var(--slide-basis-tablet, 16.666%));
  }
  .home-review-slider__slide {
    padding: 0 0.35rem;
  }
}
.home-review-slider.is-static .home-review-slider__nav,
.home-review-slider.is-static .home-review-slider__dots {
  display: none;
}
.home-review-slider__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 4;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.home-review-slider__nav:hover {
  border-color: var(--gold);
  background: #fffaf0;
}
.home-review-slider__nav--prev { left: -0.15rem; }
.home-review-slider__nav--next { right: -0.15rem; }
.home-review-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}
.home-review-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(166, 124, 61, 0.28);
  cursor: pointer;
}
.home-review-slider__dot.is-active {
  background: var(--gold-deep);
  transform: scale(1.15);
}
@media (max-width: 819px) {
  .home-review-slider {
    padding: 0 0.35rem;
    box-sizing: border-box;
  }
  .home-review-slider__nav { display: none; }
  .home-review-slider__dots {
    margin-top: 0.65rem;
  }
  .home-feedback-card {
    border-radius: 6px;
  }
  .home-feedback-card__photo {
    aspect-ratio: 4 / 3;
    border-radius: 6px 6px 0 0;
  }
  .home-feedback-card__body {
    padding: 0.9rem 0.4rem 0.5rem;
    gap: 0.12rem;
  }
  .home-feedback-card__name {
    font-size: 0.68rem;
  }
  .home-feedback-card__date {
    font-size: 0.58rem;
  }
  .home-feedback-card__quote {
    margin: 0.2rem 0 0.15rem;
  }
  .home-feedback-card__quote p {
    font-size: 0.6rem;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }
  .home-feedback-card__quote-mark {
    font-size: 0.8rem;
  }
  .home-feedback-card__avatar {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.5rem;
    border-width: 1.5px;
  }
  .home-feedback-card__verified {
    width: 0.55rem;
    height: 0.55rem;
    border-width: 1px;
  }
  .home-feedback-card__stars .stars__icon {
    width: 9px;
    height: 9px;
  }
}
@media (min-width: 768px) {
  .home-review-slider__nav--prev { left: -0.85rem; }
  .home-review-slider__nav--next { right: -0.85rem; }
}

.home-feedback-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(31, 26, 20, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  overflow: visible;
}
.home-feedback-card__hero {
  position: relative;
  margin: 0;
}
.home-feedback-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.home-feedback-card__avatar-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 2;
}
.home-feedback-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #ece9e4;
  color: #1f1a14;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(31, 26, 20, 0.08);
}
.home-feedback-card__verified {
  position: absolute;
  right: -0.05rem;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  color: #f0b429;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(31, 26, 20, 0.12);
}
.home-feedback-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.2rem 0.6rem 0.7rem;
  flex: 1;
}
.home-feedback-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 0.8rem;
  color: #1a1a1a;
}
.home-feedback-card__date {
  margin: 0;
  font-size: 0.65rem;
  color: #9a9a9a;
}
.home-feedback-card__quote {
  margin: 0.35rem 0 0.25rem;
  padding: 0 0.2rem;
  border: none;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.home-feedback-card__quote p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #2a2a2a;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-feedback-card__quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1;
  color: #1a1a1a;
  font-weight: 700;
}
.home-feedback-card__quote-mark--open {
  display: block;
  text-align: left;
  margin-bottom: 0.05rem;
}
.home-feedback-card__quote-mark--close {
  display: block;
  text-align: right;
  margin-top: 0.05rem;
}
.home-feedback-card__stars {
  margin-top: auto;
  padding-top: 0.15rem;
}
.home-feedback-card__stars .stars {
  justify-content: center;
  gap: 0.05rem;
}
.home-feedback-card__stars .stars__icon {
  width: 12px;
  height: 12px;
  color: #e0d5c0;
}
.home-feedback-card__stars .stars__icon.is-on {
  color: #f0b429;
  fill: #f0b429;
}
.home-section--reviews .reviews__empty {
  max-width: 720px;
  margin-inline: auto;
}
.home-news-ticker {
  display: flex;
  align-items: stretch;
  background: #1f1a14;
  color: #f6f0e6;
  border-block: 1px solid rgba(201, 166, 107, 0.35);
  overflow: hidden;
}
.home-news-ticker__label {
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold-deep);
  color: #fff;
  display: grid;
  place-items: center;
}
.home-news-ticker__viewport { flex: 1; overflow: hidden; }
.home-news-ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.6rem 0;
  animation: home-news-ticker 36s linear infinite;
}
.home-news-ticker__item {
  white-space: nowrap;
  font-size: 0.92rem;
  padding-inline: 1rem;
}
@keyframes home-news-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.home-news-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-news-card__media img { width: 100%; height: auto; min-height: 440px; object-fit: cover; display: block; }
@media (max-width: 767px) {
  .home-news-card__media img {
    min-height: 280px;
  }
  article.home-news-card{
    min-height: unset;
  }
}
.home-news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.home-news-card__body { padding: 1rem 1.1rem 1.15rem; }
.home-news-card__title { margin: 0 0 0.45rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; }
.home-news-card__title a { color: inherit; text-decoration: none; }
.home-news-card__excerpt { margin: 0 0 0.65rem; color: var(--muted); font-size: 0.95rem; }
.home-news-card__link { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
@keyframes floating-shake {
  0%, 70%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  72% { transform: translate3d(-2px, 0, 0) rotate(-4deg); }
  74% { transform: translate3d(2px, 0, 0) rotate(4deg); }
  76% { transform: translate3d(-2px, 0, 0) rotate(-4deg); }
  78% { transform: translate3d(2px, 0, 0) rotate(3deg); }
  80% { transform: translate3d(-1px, 0, 0) rotate(-2deg); }
  82% { transform: translate3d(1px, 0, 0) rotate(2deg); }
  84% { transform: translate3d(0, 0, 0) rotate(0deg); }
}
.floating-actions {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: none;
}
.floating-actions__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 28px rgba(43, 38, 31, 0.18);
  animation: floating-shake 3.5s ease-in-out infinite;
  transform-origin: center center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-actions__btn--shop {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 10px 28px rgba(166, 124, 61, 0.38);
  animation-delay: 0s;
}
.floating-actions__btn--whatsapp {
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  animation-delay: 0.4s;
}
.floating-actions__btn:hover,
.floating-actions__btn:focus-visible {
  animation-play-state: paused;
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(43, 38, 31, 0.22);
}
.floating-actions__btn--whatsapp:hover,
.floating-actions__btn--whatsapp:focus-visible {
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}
.floating-actions__icon {
  flex-shrink: 0;
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}
.floating-actions__label {
  display: none;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .floating-actions__btn {
    width: auto;
    height: auto;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
  }
  .floating-actions__icon {
    width: 1.35rem;
    height: 1.35rem;
  }
  .floating-actions__label {
    display: block;
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: nowrap;
  }
}
body.has-product-cta-bar .floating-actions {
  bottom: 5.75rem;
}
@media (prefers-reduced-motion: reduce) {
  .floating-actions__btn {
    animation: none;
  }
}

.account-grid { display: grid; gap: 1.25rem; max-width: 880px; margin: 0 auto; }
@media (min-width: 720px) { .account-grid { grid-template-columns: 1fr 1fr; } }
.account-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.15rem 1.25rem; box-shadow: var(--shadow); }
.account-card__title { margin: 0 0 0.75rem; font-family: "Cormorant Garamond", Georgia, serif; }
.account-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; margin: 0 0 1rem; }
.account-dl dt { color: var(--muted); font-size: 0.88rem; }
.account-dl dd { margin: 0; }
.account-dl--lined { display: block; }
.account-dl--lined .account-dl__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.35rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border);
}
.account-dl--lined .account-dl__row:last-child { border-bottom: none; }
.account-orders-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.account-orders-list a { display: grid; gap: 0.15rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--border); text-decoration: none; color: inherit; }
.account-orders-list li:last-child a { border-bottom: none; }
.account-profile-card { max-width: 520px; margin: 0 auto; }
.account-profile-form { display: grid; gap: 0; }
.account-profile-form__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.35rem 1rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border);
}
.account-profile-form__row:last-of-type { border-bottom: none; }
.account-profile-form__label { font-weight: 500; font-size: 0.88rem; color: var(--muted); padding-top: 0.55rem; }
.account-profile-form__field { display: grid; gap: 0.35rem; }
.account-profile-form__field input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
}
.account-profile-form__field input:disabled { background: #f6f7f9; color: var(--muted); cursor: not-allowed; }
.account-profile-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 0.25rem;
}
.account-orders-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.account-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.account-orders-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f8f9fb;
  border-bottom: 1px solid var(--border);
}
.account-orders-table tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.account-orders-table tbody tr:last-child td { border-bottom: none; }
.account-orders-table tbody tr:hover { background: #fafbfc; }
.account-orders-table__th-products { width: 8.5rem; }
.account-orders-table__action { white-space: nowrap; text-align: right; }
.account-order-thumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.account-order-thumbs__img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
}
.account-order-thumbs__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.35rem;
  border-radius: 6px;
  border: 1px dashed var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: #f8f9fb;
}
.account-back-link { margin-top: 1.25rem; }
.account-order-no { font-family: "Source Sans 3", system-ui, sans-serif; font-weight: 600; }
.account-order-items { list-style: none; margin: 0 0 1rem; padding: 0; }
.account-order-items__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--border);
}
.account-order-items__row:last-child { border-bottom: none; }
.account-order-items__thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
}
.account-order-items__info { display: grid; gap: 0.15rem; min-width: 0; }
.account-order-items__info .muted { color: var(--muted); font-size: 0.9rem; }
.account-order-totals { margin: 0; padding-top: 0.75rem; border-top: 1px dashed var(--border); }
.account-order-totals__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
}
.account-order-totals__row dt { margin: 0; color: var(--muted); font-weight: 500; }
.account-order-totals__row dd { margin: 0; font-weight: 600; }
.account-order-totals__row--total { padding-top: 0.55rem; font-size: 1rem; }
.account-order-totals__row--total dt,
.account-order-totals__row--total dd { color: inherit; font-weight: 700; }
@media (max-width: 640px) {
  .account-orders-table thead { display: none; }
  .account-orders-table tbody tr {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
  }
  .account-orders-table tbody tr:last-child { border-bottom: none; }
  .account-orders-table tbody td {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .account-orders-table tbody td[data-label]:not([data-label=""])::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.15rem;
  }
  .account-order-thumbs {
    max-height: 3rem;
    overflow: hidden;
  }
  .account-orders-table__order-no {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .account-orders-table__action { text-align: left; }
}
.add-form { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; }
.product-cta-bar__form { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }

article {
  max-width: 100%;
}
article.post-detail img{
  width: 100%;
  height: auto;
  min-height: 440px;
  object-fit: contain;
  display: block;
}

article.home-news-card {
  max-width: 100%;
  min-height: 612px;
}

@media (max-width: 767px) {
  article.home-news-card {
    min-height: unset;
  }
}
/* ---------- Welcome popup (homepage) ---------- */
body.welcome-popup-open { overflow: hidden; }
.welcome-popup[hidden] { display: none !important; }
.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.welcome-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.52);
  backdrop-filter: blur(4px);
}
.welcome-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
}
.welcome-popup__close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  z-index: 3;
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.welcome-popup__close:hover { background: #000; }
.welcome-popup__card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(43, 38, 31, 0.22);
}
.welcome-popup__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.welcome-popup__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.65rem 1.5rem;
  text-align: center;
}
.welcome-popup__title {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.welcome-popup__form {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.welcome-popup__input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(43, 38, 31, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 3px rgba(43, 38, 31, 0.08);
}
.welcome-popup__input::placeholder {
  color: rgba(92, 85, 74, 0.55);
  font-weight: 400;
}
.welcome-popup__input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  background: #fff;
}
.welcome-popup__submit {
  width: 100%;
  padding: 0.72rem 1rem;
  border: none;
  border-radius: 10px;
  background: #d4b483;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(166, 124, 61, 0.25);
}
.welcome-popup__submit:hover { background: #c9a66b; }
.welcome-popup__submit:disabled { opacity: 0.65; cursor: wait; }
.welcome-popup__legal {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(92, 85, 74, 0.42);
}
.welcome-popup__legal p { margin: 0; }
.welcome-popup__legal a {
  color: rgba(70, 110, 170, 0.55);
  text-decoration: underline;
}
.welcome-popup__legal a:hover { color: rgba(50, 90, 150, 0.75); }
.welcome-popup__success {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.welcome-popup__success[hidden],
.welcome-popup__form[hidden] { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .welcome-popup__card { box-shadow: 0 12px 32px rgba(43, 38, 31, 0.15); }
}

/* —— Checkout page (Missoma-style single page) —— */
.checkout-page {
  --checkout-header-height: 3.5rem;
  background: #faf5ef;
  min-height: 100vh;
}
.checkout-page .checkout-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
}
.checkout-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.checkout-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-header__logo .logo__name { font-size: 1.05rem; }
.checkout-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.currency-form--checkout select {
  font: inherit;
  font-size: 0.88rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}
.checkout-header__cart {
  font-size: 0.9rem;
  color: var(--gold-deep);
  text-decoration: none;
  white-space: nowrap;
}
.checkout-header__cart:hover { text-decoration: underline; }
.checkout-banner { max-width: 1080px; margin: 0 auto; }
.checkout-shell { display: grid; gap: 1rem; }
.checkout-free-shipping {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}
.checkout-free-shipping__track {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #e8e4dc;
  overflow: hidden;
}
.checkout-free-shipping__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #c9a66b, var(--gold-deep));
  transition: width 0.25s ease;
}
.checkout-free-shipping__msg {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
}
.checkout-mobile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}
.checkout-mobile-summary__label {
  color: var(--gold-deep);
  text-decoration: underline;
  font-size: 0.95rem;
}
.checkout-mobile-summary__total {
  font-weight: 700;
  font-size: 1rem;
}
.checkout-page .checkout-layout {
  margin-top: 0;
}
@media (min-width: 768px) {
  .checkout-page .checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
    gap: 2rem;
  }
  .checkout-mobile-summary { display: none; }
  .checkout-page .checkout-layout__aside { display: block; }
}
@media (max-width: 767px) {
  .checkout-page .checkout-shell {
    min-height: calc(100vh - var(--checkout-header-height, 3.5rem) - 2rem);
    display: flex;
    flex-direction: column;
  }
  .checkout-page .checkout-layout {
    flex: 1;
    min-height: 0;
  }
}
.checkout-layout__aside--visible { display: block !important; }
.checkout-page .checkout-layout__main {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(28, 24, 18, 0.04);
}
.checkout-payment-accepted {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.checkout-payment-accepted__icons .payment-icons { gap: 0.35rem; }
.checkout-payment-accepted__icons .payment-icons__item {
  width: 2.75rem;
  height: 1.65rem;
}
.btn--checkout-pay {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
}
.checkout-actions { margin-top: 0.25rem; }
.checkout-footer {
  margin-top: 2rem;
  padding: 1.5rem 1rem 2rem;
  border-top: 1px solid var(--border);
  background: #fffdf8;
  text-align: center;
}
.checkout-footer__links {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.88rem;
}
.checkout-footer__links a {
  color: var(--muted);
  text-decoration: none;
}
.checkout-footer__links a:hover { color: var(--gold-deep); }
.checkout-footer__payments {
  max-width: 520px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
}
.checkout-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.checkout-processing-head {
  margin: 0 0 0.5rem;
}
.checkout-processing-head__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
}
.checkout-processing-head__summary {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.checkout-gateway-fields[hidden] { display: none !important; }
