/* ══════════════════════════════════════════════
   GlamBags — Global Styles
   ══════════════════════════════════════════════ */

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

:root {
  --ivory:     #FAF8F4;
  --cream:     #F2EDE4;
  --parchment: #E5DDD0;
  --sand:      #C9BFB0;
  --taupe:     #6E5F4E; /* darkened from #9A8B7A for readability — muted text was blending into the ivory bg (client request) */
  --umber:     #6B5A48;
  --espresso:  #1E1610;
  --ink:       #120E09;
  --gold:      #B8912A;
  --gold-lt:   #D4AC4E;
  --gold-pale: #EDD89A;
  --bag-deep:  #0F0D0A;
  --bag-mid:   #1C1915;
  --bag-edge:  #2E2A22;
  --bag-sheen: #3D382E;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.45;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--espresso);
  padding: 9px 0;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 1;
}
.announce-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announce-track {
  display: flex; animation: marquee 28s linear infinite; white-space: nowrap;
}
.announce-item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 40px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand);
}
.announce-item a {
  color: var(--gold-lt); text-decoration: none;
  transition: color .3s;
}
.announce-item a:hover { color: var(--gold-pale); }
.announce-item .marquee-diamond { background: var(--gold); flex-shrink: 0; }

/* ── NAV ── */
#mainNav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  padding: 26px 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 0.5px solid transparent;
  transition: border-color .4s, background .4s, backdrop-filter .4s, top .35s ease;
}
#mainNav.scrolled {
  top: 0;
  border-color: var(--parchment);
  background: rgba(250, 248, 244, 0.93);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 21px;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--espresso); text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--espresso); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-right: 0.5px solid var(--taupe);
  border-bottom: 0.5px solid var(--taupe);
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform .3s, border-color .3s;
}
.nav-dropdown:hover .nav-dropdown-trigger::after {
  transform: rotate(-135deg);
  border-color: var(--espresso);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -24px;
  min-width: 200px;
  padding: 24px 28px;
  background: rgba(250, 248, 244, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 0.5px solid var(--parchment);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--umber);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 0.5px solid transparent;
  transition: color .3s, border-color .3s;
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-dropdown-all {
  font-weight: 400 !important;
  color: var(--espresso) !important;
  letter-spacing: 0.22em !important;
}
.nav-dropdown-all:hover { color: var(--gold) !important; }
.nav-dropdown-divider {
  height: 0.5px;
  background: var(--parchment);
  margin: 2px 0 6px;
}
.nav-actions { display: flex; gap: 28px; }
.nav-icon {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); cursor: pointer; transition: color .3s;
}
.nav-icon:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-phone, .editorial-phone {
  color: var(--gold); text-decoration: none; border-bottom: 0.5px solid var(--gold);
  transition: color .3s, border-color .3s;
}
.hero-phone:hover, .editorial-phone:hover { color: var(--umber); border-color: var(--umber); }

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 64px 80px;
  background: var(--ivory);
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(52px, 5.5vw, 90px); line-height: 0.94;
  color: var(--espresso); margin-bottom: 32px;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 13px; line-height: 1.95; color: var(--umber);
  max-width: 340px; letter-spacing: 0.04em; margin-bottom: 48px;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-ctas {
  display: flex; align-items: center; gap: 32px;
  animation: fadeUp 1s ease 0.8s both;
}
.btn-primary {
  padding: 14px 36px; background: var(--espresso); color: var(--ivory);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .3s;
}
.btn-primary:hover { background: var(--gold); }
/* Dark mode (account dashboard): the dark espresso button blends into the dark
   page — flip it to a light background with dark text so it stands out. */
html[data-theme="dark"] .account-shell .btn-primary {
  background: var(--ivory); color: var(--espresso);
}
html[data-theme="dark"] .account-shell .btn-primary:hover { background: var(--gold); color: var(--espresso); }
html[data-theme="dark"] .account-shell .btn-ghost { color: #d9cfbf; }
.btn-ghost {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 15px; color: var(--taupe); text-decoration: none;
  border-bottom: 0.5px solid var(--sand); padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-right {
  background: var(--cream);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-right::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255, 252, 245, 0.6) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.bag-art {
  position: relative; z-index: 1;
  animation: floatBag 7s ease-in-out infinite;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.22));
}

@keyframes floatBag {
  0%, 100% { transform: translateY(0) rotate(-0.8deg); }
  50%      { transform: translateY(-16px) rotate(0.8deg); }
}

.hero-corner-label {
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.22em; color: var(--sand);
  text-transform: uppercase; z-index: 2;
}
.tl { top: 44px; left: 44px; }
.br { bottom: 44px; right: 44px; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 64px;
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp 1s ease 1.1s both; z-index: 2;
}
.scroll-line { width: 36px; height: 0.5px; background: var(--sand); }
.scroll-text { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }

.hero-geo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.05; z-index: 0; pointer-events: none;
}

/* ── MARQUEE ── */
.marquee-bar {
  border-top: 0.5px solid var(--parchment);
  border-bottom: 0.5px solid var(--parchment);
  padding: 13px 0; overflow: hidden; background: var(--cream);
}
.marquee-track { display: flex; animation: marquee 24s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px; padding: 0 32px;
  font-family: 'Cormorant Garamond', serif; font-size: 12px;
  letter-spacing: 0.16em; color: var(--taupe); text-transform: uppercase;
}
.marquee-diamond { width: 4px; height: 4px; background: var(--gold-lt); transform: rotate(45deg); flex-shrink: 0; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── EDITORIAL ── */
.editorial {
  padding: 120px 64px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  align-items: start; border-bottom: 0.5px solid var(--parchment);
}
.editorial-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); padding-top: 8px; }
.editorial-heading {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 50px; line-height: 1.06; color: var(--espresso); margin-bottom: 28px;
}
.editorial-heading em { font-style: italic; color: var(--gold); }
.editorial-body {
  font-size: 13px; line-height: 1.95; color: var(--umber);
  max-width: 520px; letter-spacing: 0.04em; margin-bottom: 44px;
}
.editorial-stat-row { display: flex; gap: 56px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-top: 6px; }

/* ── COLLECTION ── */
.collection { padding: 100px 64px; border-bottom: 0.5px solid var(--parchment); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 42px; line-height: 1.1; color: var(--espresso); }
.section-title em { font-style: italic; color: var(--gold); }
.section-link {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px;
  color: var(--taupe); text-decoration: none;
  border-bottom: 0.5px solid var(--sand); padding-bottom: 2px; transition: color .3s;
}
.section-link:hover { color: var(--gold); }

.collection-cta { text-align: center; margin-top: 48px; }
.collection-cta .btn-primary { width: auto; }

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

.product-card { position: relative; overflow: hidden; background: var(--cream); cursor: pointer; }
.product-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-bg {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}
.product-card:hover .product-bg { transform: scale(1.04); }

.product-spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 48%, rgba(255, 253, 248, 0.45) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(242, 237, 228, 0.55) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s; z-index: 2;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-quick {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0; transition: opacity .3s, transform .3s;
  white-space: nowrap; padding: 10px 24px;
  border: 0.5px solid var(--espresso); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--espresso); background: rgba(250, 248, 244, 0.88);
  -webkit-backdrop-filter: blur(4px); z-index: 3;
  backdrop-filter: blur(4px); z-index: 3;
}
.product-card:hover .product-quick { opacity: 1; transform: translateX(-50%) translateY(0); }

.product-info {
  padding: 20px 20px 24px;
  border-top: 0.5px solid var(--parchment);
  background: var(--ivory);
}
.product-house { font-size: 9px; letter-spacing: 0.22em; color: var(--taupe); text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 18px; color: var(--espresso); margin-bottom: 4px; }
.product-desc { font-size: 11px; color: var(--taupe); letter-spacing: 0.04em; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--espresso); }
.wishlist-btn {
  width: 28px; height: 28px; border: 0.5px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; color: var(--sand);
  transition: border-color .3s, color .3s;
}
.wishlist-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── GALLERY ── */
.gallery { padding: 100px 64px; border-bottom: 0.5px solid var(--parchment); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 16, 0.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 4px;
}
.gallery-caption {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 18px; color: var(--ivory);
}

/* Masonry-like layout via grid spans */
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ── CATEGORIES ── */
.categories { padding: 100px 64px; border-bottom: 0.5px solid var(--parchment); background: var(--cream); }
.category-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 56px;
}
.category-card {
  background: var(--ivory); text-decoration: none;
  overflow: hidden; cursor: pointer;
  border-top: 2px solid transparent;
  transition: border-color .3s;
}
.category-card:hover { border-color: var(--gold); }
.category-img {
  width: 100%; aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.category-img svg {
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}
.category-card:hover .category-img svg { transform: scale(1.08); }
.category-info {
  padding: 18px 20px 22px;
  border-top: 0.5px solid var(--parchment);
  background: var(--ivory);
}
.category-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 18px; color: var(--espresso); margin-bottom: 4px;
}
.category-count {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe);
}

/* ── TESTIMONIAL ── */
.testimonial-section { padding: 120px 64px; text-align: center; border-bottom: 0.5px solid var(--parchment); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 110px; color: var(--gold-pale); line-height: 0.6; margin-bottom: 36px; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic; font-size: 27px; line-height: 1.55; color: var(--espresso); max-width: 680px; margin: 0 auto 28px; }
.quote-author { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }
.quote-author span { color: var(--gold); }

/* ══════════════════════════════════════════════
   SHOP — CATEGORY LISTING
   ══════════════════════════════════════════════ */
.shop-hero {
  padding: 180px 64px 60px;
  background: var(--ivory);
  border-bottom: 0.5px solid var(--parchment);
  text-align: center;
}
.shop-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px;
}
.shop-hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(48px, 5vw, 76px); line-height: 1;
  color: var(--espresso); margin-bottom: 14px;
}
.shop-hero-title em { font-style: italic; color: var(--gold); }
.shop-hero-count { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }

.shop-filter-bar {
  position: sticky; top: 108px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 8px 64px;
  background: rgba(250, 248, 244, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--parchment);
  flex-wrap: wrap;
}
.shop-filter-left {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}
.shop-filter-left::-webkit-scrollbar { display: none; }
.shop-filter-tab {
  padding: 18px 20px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.shop-filter-tab:hover { color: var(--espresso); }
.shop-filter-tab.active { color: var(--espresso); border-bottom-color: var(--espresso); }

.shop-sort-form { display: flex; align-items: center; }
.shop-sort-select {
  background: none; border: none; outline: none;
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe); cursor: pointer; padding: 18px 0 18px 16px;
}

.shop-search-input {
  background: none; border: none; border-bottom: 1px solid var(--parchment); outline: none;
  font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: 0.04em; color: var(--espresso); padding: 14px 8px; width: 160px;
  transition: border-color .2s, width .2s;
}
.shop-search-input::placeholder { color: var(--taupe); text-transform: none; letter-spacing: 0.02em; }
.shop-search-input:focus { border-bottom-color: var(--gold); }
@media (max-width: 560px) { .shop-search-input { width: 120px; } }

.shop-grid-section { padding: 64px 48px 100px; background: var(--ivory); }
.shop-layout { display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: start; }
.shop-main { min-width: 0; }
.shop-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
.shop-brand-sidebar {
  position: sticky; top: 130px;
  background: var(--ivory);
  padding: 0; max-height: calc(100vh - 160px); overflow-y: auto;
}
.shop-brand-sidebar-title {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--taupe); padding: 0 0 12px;
  border-bottom: 0.5px solid var(--parchment);
}
.shop-brand-list { list-style: none; padding: 8px 0 0; margin: 0; }
.shop-brand-list li { margin: 0; }
.shop-brand-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--espresso);
  font-weight: 300;
  border-bottom: 0.5px solid transparent;
  transition: color 0.15s ease;
}
.shop-brand-link:hover { color: var(--gold); }
.shop-brand-link.is-active { color: var(--gold); font-weight: 500; }
.shop-brand-count {
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.12em; color: var(--taupe);
}
.shop-brand-link.is-active .shop-brand-count { color: var(--gold); }
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; gap: 24px; }
  .shop-brand-sidebar { position: static; max-height: none; }
  .shop-brand-list { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 12px; }
  .shop-brand-list li {
    background: var(--ivory); border: 0.5px solid var(--parchment); border-radius: 999px;
  }
  .shop-brand-link { padding: 6px 12px; font-size: 13px; border-bottom: 0; }
  .shop-brand-link.is-active { background: var(--espresso); color: var(--ivory); border-radius: 999px; }
}

.shop-product-card { text-decoration: none; background: var(--cream); display: block; cursor: pointer; }
.shop-product-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.shop-product-bg {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}
.shop-product-card:hover .shop-product-bg { transform: scale(1.04); }
.shop-product-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory); background: var(--espresso);
  padding: 5px 10px; z-index: 2;
}
.shop-product-badge-sale { background: var(--gold); }
.shop-product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(242,237,228,0.4) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s; z-index: 1;
}
.shop-product-card:hover .shop-product-overlay { opacity: 1; }
.shop-product-quick {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0; transition: opacity .3s, transform .3s;
  white-space: nowrap; padding: 9px 20px;
  border: 0.5px solid var(--espresso); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--espresso); background: rgba(250,248,244,0.9);
  -webkit-backdrop-filter: blur(4px); z-index: 3;
  backdrop-filter: blur(4px); z-index: 3;
}
.shop-product-card:hover .shop-product-quick { opacity: 1; transform: translateX(-50%) translateY(0); }

.shop-product-info {
  padding: 18px 18px 22px;
  border-top: 0.5px solid var(--parchment);
  background: var(--ivory);
}
.shop-product-category { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 5px; }
.shop-product-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 17px; color: var(--espresso); margin-bottom: 8px; }
.shop-product-price-row { display: flex; align-items: baseline; gap: 10px; }
.shop-product-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: var(--espresso); }
.shop-product-compare { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--sand); text-decoration: line-through; }

.shop-empty { text-align: center; padding: 80px 0; }
.shop-empty-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--taupe); margin-bottom: 32px; }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════ */
.pd-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: calc(100vh - 36px);
  padding-top: 108px;
}

.pd-image-panel {
  position: sticky; top: 108px;
  height: calc(100vh - 108px);
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.pd-image-spotlight {
  position: absolute; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,254,250,0.55) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.pd-image-wrap {
  position: relative; z-index: 1;
  animation: floatBag 7s ease-in-out infinite;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,0.18));
}
.pd-thumbs {
  position: absolute; bottom: 28px;
  display: flex; gap: 6px; z-index: 2;
}
.pd-thumb {
  width: 56px; height: 56px;
  border: 0.5px solid var(--parchment);
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: border-color .3s;
}
.pd-thumb.active { border-color: var(--gold); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb:hover  { border-color: var(--sand); }

.pd-info-panel {
  padding: 52px 60px 80px;
  background: var(--ivory);
  overflow-y: auto;
}

.pd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe);
}
.pd-breadcrumb a { color: var(--taupe); text-decoration: none; transition: color .3s; }
.pd-breadcrumb a:hover { color: var(--gold); }
.pd-breadcrumb-sep { color: var(--parchment); font-size: 9px; }

.pd-category { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

.pd-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(36px, 3.5vw, 52px); line-height: 1.02;
  color: var(--espresso); margin-bottom: 20px;
}

.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 0; }
.pd-price { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; color: var(--espresso); }
.pd-compare-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--sand); text-decoration: line-through; }
.pd-sale-badge {
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory); background: var(--gold); padding: 4px 10px;
}

.pd-divider { height: 0.5px; background: var(--parchment); margin: 26px 0; }

.pd-description { font-size: 13px; line-height: 1.95; color: var(--umber); letter-spacing: 0.04em; }

.pd-details { display: flex; flex-direction: column; }
.pd-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 0.5px solid var(--parchment);
  font-size: 11px; letter-spacing: 0.06em;
}
.pd-detail-key { color: var(--taupe); }
.pd-detail-val { color: var(--espresso); text-align: right; }

.pd-option-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 12px;
}
.pd-option-selected { color: var(--espresso); }

.pd-colors { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pd-color {
  padding: 8px 16px;
  border: 0.5px solid var(--parchment);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--umber); cursor: pointer;
  transition: border-color .3s, color .3s;
}
.pd-color.active  { border-color: var(--espresso); color: var(--espresso); }
.pd-color:hover   { border-color: var(--gold); color: var(--gold); }

.pd-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pd-size {
  width: 48px; height: 48px;
  border: 0.5px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--umber); cursor: pointer;
  transition: border-color .3s, color .3s;
}
.pd-size.active { border-color: var(--espresso); color: var(--espresso); background: var(--ivory); }
.pd-size:hover  { border-color: var(--gold); color: var(--gold); }
button.pd-size { background: transparent; font-family: inherit; }
.pd-size-error {
  color: #b3261e; font-size: 11px; letter-spacing: 0.06em;
  margin: -16px 0 18px;
}
.cart-drawer-size, .cart-size {
  font-size: 11px; letter-spacing: 0.06em; color: var(--taupe);
  margin: 2px 0 4px;
}

.pd-actions { display: flex; gap: 10px; margin-bottom: 28px; }
.pd-qty {
  display: flex; align-items: center;
  border: 0.5px solid var(--parchment);
}
.pd-qty-btn {
  width: 40px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--taupe); font-size: 18px;
  background: none; border: none; transition: color .3s;
}
.pd-qty-btn:hover { color: var(--espresso); }
.pd-qty-val {
  width: 40px; text-align: center;
  font-size: 13px; letter-spacing: 0.08em; color: var(--espresso);
  background: transparent; border: none;
  -moz-appearance: textfield;
  font-family: inherit;
}
.pd-qty-val::-webkit-outer-spin-button,
.pd-qty-val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-add-btn { flex: 1; text-align: center; }
.pd-wish-btn {
  width: 48px; height: 48px;
  border: 0.5px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); cursor: pointer; font-size: 16px;
  background: none; transition: border-color .3s, color .3s;
}
.pd-wish-btn:hover { border-color: var(--gold); color: var(--gold); }

.pd-trust {
  display: flex; gap: 0;
  padding-top: 24px;
  border-top: 0.5px solid var(--parchment);
}
.pd-trust-item {
  flex: 1; padding: 0 20px 0 0;
  border-right: 0.5px solid var(--parchment);
  margin-right: 20px;
}
.pd-trust-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.pd-trust-title { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); margin-bottom: 5px; }
.pd-trust-text  { font-size: 11px; color: var(--taupe); line-height: 1.5; }
.pd-trust-phone { color: var(--gold); text-decoration: none; transition: color .3s; }
.pd-trust-phone:hover { color: var(--umber); }

.pd-related { padding: 80px 0 100px; border-top: 0.5px solid var(--parchment); }

/* ── FOOTER ── */
body > footer { padding: 80px 64px 40px; background: var(--espresso); color: var(--parchment); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 72px; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 26px; letter-spacing: 0.32em; color: var(--gold-lt); text-transform: uppercase; margin-bottom: 14px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--taupe); margin-bottom: 24px; line-height: 1.65; max-width: 250px; }
.footer-ornament { display: flex; align-items: center; gap: 10px; }
.fo-line { flex: 1; height: 0.5px; background: #3D3020; max-width: 44px; }
.fo-dia { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }
.footer-col-title { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 300; color: var(--sand); text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 36px; border-top: 0.5px solid #3D3020; }
.footer-copy { font-size: 10px; letter-spacing: 0.1em; color: var(--umber); }
.footer-est { font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 0.2em; color: #3D3020; }

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 216px 64px 80px;
  text-align: center;
  background: var(--ivory);
  border-bottom: 0.5px solid var(--parchment);
}
.contact-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}
.contact-hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(44px, 5vw, 72px); line-height: 1;
  color: var(--espresso); margin-bottom: 24px;
  animation: fadeUp 1s ease 0.4s both;
}
.contact-hero-title em { font-style: italic; color: var(--gold); }
.contact-hero-desc {
  font-size: 13px; line-height: 1.95; color: var(--umber);
  max-width: 440px; margin: 0 auto; letter-spacing: 0.04em;
  animation: fadeUp 1s ease 0.6s both;
}

.contact-section {
  padding: 80px 64px 120px;
  border-bottom: 0.5px solid var(--parchment);
}
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  max-width: 1080px; margin: 0 auto;
}

/* Form */
.contact-form-wrap { }
.contact-form-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 28px; color: var(--espresso); margin-bottom: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe);
}
.form-input {
  padding: 14px 16px;
  background: var(--ivory);
  border: 0.5px solid var(--parchment);
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 13px; color: var(--espresso);
  letter-spacing: 0.04em;
  transition: border-color .3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--sand); }
.form-textarea { resize: vertical; min-height: 140px; }
select.form-input { cursor: pointer; }

.contact-submit { align-self: flex-start; width: auto; }

/* Alerts */
.contact-alert {
  padding: 14px 20px; margin-bottom: 12px;
  font-size: 12px; letter-spacing: 0.04em; line-height: 1.6;
}
.contact-alert-success {
  background: rgba(184, 145, 42, 0.08);
  border: 0.5px solid var(--gold);
  color: var(--umber);
}
.contact-alert-error {
  background: rgba(180, 60, 60, 0.06);
  border: 0.5px solid #B43C3C;
  color: #8A2E2E;
}
.contact-alert-error p { margin-bottom: 2px; }
.contact-alert-error p:last-child { margin-bottom: 0; }

/* Info column */
.contact-info-wrap {
  padding-top: 12px;
  display: flex; flex-direction: column; gap: 32px;
}
.contact-info-card {
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--parchment);
}
.contact-info-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 10px;
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 20px; color: var(--espresso);
}
.contact-info-sub {
  font-size: 11px; color: var(--taupe); margin-top: 4px; letter-spacing: 0.04em;
}
.contact-social-row { display: flex; gap: 24px; }
.contact-social-link {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 15px; color: var(--taupe); cursor: pointer;
  border-bottom: 0.5px solid transparent;
  transition: color .3s, border-color .3s;
}
.contact-social-link:hover { color: var(--gold); border-color: var(--gold); }

.contact-ornament {
  display: flex; align-items: center; gap: 10px;
  padding-top: 4px;
}
.contact-ornament .fo-line { max-width: 44px; }

.contact-info-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 15px; color: var(--taupe); line-height: 1.6;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  margin: -12px;
  min-width: 44px;
  min-height: 44px;
  z-index: 9600;
  position: relative;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* When mobile menu is open, hide everything in the nav strip EXCEPT the
   hamburger so the open menu text isn't visually bled through by the logo,
   icons, account chip, and cart that sit at z-index 9700 above the menu.
   Hamburger stays visible + tappable so it can act as the close button. */
@media (max-width: 900px) {
    .mobile-menu.open ~ #mainNav .nav-logo,
    .mobile-menu.open ~ #mainNav .nav-links,
    .mobile-menu.open ~ #mainNav .nav-actions-v2 {
        visibility: hidden;
        pointer-events: none;
    }
    .mobile-menu.open ~ #mainNav {
        background: transparent !important;
        box-shadow: none !important;
        border-bottom-color: transparent !important;
    }
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--ivory);
  z-index: 9500;
  isolation: isolate;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  padding: 80px 24px 32px;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  letter-spacing: 0.1em; color: var(--espresso);
  text-decoration: none; text-transform: uppercase;
  transition: color .3s;
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-section {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.mobile-menu-label {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.mobile-menu-section a {
  font-size: 22px;
}
.mobile-menu-divider {
  width: 40px; height: 0.5px; background: var(--parchment);
}
.mobile-menu-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  margin-top: 16px;
  border-top: 0.5px solid var(--parchment);
  padding-top: 24px;
  max-width: 92vw;
}
.mobile-menu-actions a,
.mobile-menu-actions span {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}
@media (max-width: 380px) {
  .mobile-menu a { font-size: 24px; }
  .mobile-menu-actions { gap: 14px 16px; }
  .mobile-menu-actions a,
  .mobile-menu-actions span { font-size: 10px; letter-spacing: 0.18em; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  #mainNav { padding: 18px 24px; top: 34px; }
  /* Lift the whole nav above the full-screen mobile menu so the
     hamburger (acting as the close button when menu is open) stays
     tappable. Nav now creates a higher stacking context than .mobile-menu. */
  #mainNav { z-index: 9700; }
  .nav-logo { font-size: 18px; letter-spacing: 0.22em; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-actions-v2 { gap: 6px !important; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 32px 56px; order: 1; }
  .hero-right { order: 0; min-height: 52vw; }
  .hero-scroll-hint { left: 32px; }
  .bag-art svg { width: 260px; height: 304px; }

  .editorial { padding: 80px 32px; grid-template-columns: 1fr; gap: 24px; }
  .editorial-label { display: none; }

  .collection { padding: 72px 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery { padding: 72px 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .gallery-overlay { opacity: 1; }

  .shop-hero { padding: 174px 32px 48px; }
  .shop-filter-bar { padding: 0 32px; }
  .shop-grid-section { padding: 48px 32px 72px; }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }

  .pd-wrap { grid-template-columns: 1fr; padding-top: 108px; }
  /* Height auto (not a fixed short height) so tall/square images aren't clipped
     by the panel's overflow:hidden. Bottom padding reserves room for the
     absolutely-positioned thumbnails. */
  .pd-image-panel { position: relative; top: auto; height: auto; min-height: 0; padding: 16px 12px 80px; }
  .pd-image-spotlight { width: 320px; height: 320px; }
  .pd-photo { max-height: 66vh; }
  .pd-info-panel { padding: 40px 32px 64px; }

  .categories { padding: 72px 32px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-section { padding: 80px 32px; }
  .quote-text { font-size: 22px; }

  .contact-hero { padding: 174px 32px 60px; }
  .contact-section { padding: 60px 32px 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  footer { padding: 60px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .announce-bar { display: none; }

  #mainNav { padding: 14px 18px; top: 0; }
  .nav-logo { font-size: 16px; letter-spacing: 0.18em; }
  .nav-actions-v2 { gap: 4px !important; }
  .nav-iconbtn { width: 34px; height: 34px; }
  .nav-iconbtn svg { width: 17px; height: 17px; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 110px 20px 56px; order: 1; }
  .hero-right { order: 0; min-height: 72vw; }
  .hero-right::before { width: 300px; height: 300px; }
  .bag-art svg { width: 200px; height: 234px; }
  .hero-corner-label { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-title { font-size: clamp(40px, 11vw, 60px); margin-bottom: 20px; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-desc { margin-bottom: 32px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary { width: 100%; text-align: center; }

  .editorial { padding: 56px 20px; gap: 20px; }
  .editorial-heading { font-size: 34px; }
  .editorial-stat-row { gap: 28px; }
  .stat-num { font-size: 32px; }

  .collection { padding: 56px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .section-title { font-size: 32px; }
  .product-grid { grid-template-columns: 1fr; gap: 2px; }

  .gallery { padding: 56px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-caption { font-size: 15px; }

  .categories { padding: 56px 20px; }
  .section-header.mat-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 32px; }
  .category-name { font-size: 16px; }
  .category-info { padding: 14px 14px 18px; }

  .testimonial-section { padding: 64px 20px; }
  .quote-mark { font-size: 80px; }
  .quote-text { font-size: 19px; }

  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-name { font-size: 22px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-est { display: none; }

  .marquee-item { font-size: 11px; padding: 0 20px; gap: 14px; }

  .shop-hero { padding: 120px 20px 40px; }
  .shop-hero-title { font-size: 40px; }
  .shop-filter-bar { padding: 0 20px; top: 72px !important; }
  .shop-filter-tab { padding: 14px 12px; font-size: 9px; }
  .shop-grid-section { padding: 36px 20px 64px; }
  .shop-product-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .shop-product-name { font-size: 15px; }

  .pd-wrap { padding-top: 72px; }
  .pd-image-panel { height: auto; min-height: 0; padding: 12px 10px 76px; }
  .pd-image-spotlight { width: 240px; height: 240px; }
  .pd-thumbs { bottom: 16px; }
  .pd-thumb { width: 44px; height: 44px; }
  .pd-info-panel { padding: 32px 20px 56px; }
  .pd-name { font-size: 34px; }
  .pd-price { font-size: 28px; }
  .pd-actions { flex-wrap: wrap; }
  .pd-add-btn { flex: 1 1 100%; order: -1; }
  .pd-trust { flex-direction: column; gap: 16px; }
  .pd-trust-item { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 0.5px solid var(--parchment); padding-bottom: 16px; }
  .pd-trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .pd-related { padding: 56px 0 72px; }
  .pd-related .section-header,
  .pd-related .product-grid { padding: 0 20px !important; }
  .pd-related .product-grid { grid-template-columns: 1fr 1fr !important; }

  .contact-hero { padding: 120px 20px 48px; }
  .contact-hero-desc { max-width: 100%; }
  .contact-section { padding: 48px 20px 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
}

/* ── Product photos (real uploaded images) ── */
.product-photo,
.shop-product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-photo {
  display: block;
  max-width: 100%;
  max-height: 540px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   CART + CHECKOUT
   ══════════════════════════════════════════════ */

.nav-cart { font-weight: 500; }

/* Hero reused for cart / checkout / confirmation */
.cart-hero {
  padding: 216px 64px 40px;
  text-align: center;
  background: var(--ivory);
}
.cart-hero-eyebrow {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--taupe);
}
.cart-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; color: var(--espresso);
  margin: 14px 0 12px;
}
.cart-hero-title em { font-style: italic; color: var(--gold); }
.cart-hero-desc { font-size: 14px; color: var(--umber); }

.cart-section { padding: 56px 64px 100px; max-width: 1280px; margin: 0 auto; }

.cart-alert {
  padding: 12px 18px;
  margin-bottom: 20px;
  border: 0.5px solid var(--parchment);
  font-size: 13px;
}
.cart-alert-success { background: #F1F7ED; border-color: #CEDFC0; color: #3F6B28; }
.cart-alert-error   { background: #FDF1F0; border-color: #E8CBC7; color: #7A2E28; }
.cart-alert-info    { background: #FBF6E8; border-color: #E8D89A; color: #6B5012; }
.cart-alert-info strong { color: #1E1610; }
.cart-alert-info a { color: #B8912A; text-decoration: underline; }

.account-verify-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 18px; margin-bottom: 24px;
  background: #FBF6E8; border: 0.5px solid #E8D89A; color: #6B5012;
  font-size: 13px;
}
.account-verify-banner strong { display: block; color: #1E1610; margin-bottom: 2px; }
.account-verify-banner form { margin: 0; }

/* Master/admin notification cards on the customer dashboard */
.account-note-card {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  padding: 14px 18px; margin-bottom: 12px;
  background: #FBF6E8; border: 0.5px solid #E8D89A;
}
.account-note-body { font-size: 13px; color: #4a3f2e; }
.account-note-body strong { display: block; color: #1E1610; margin-bottom: 2px; }
.account-note-body span { display: block; margin-top: 2px; }
.account-note-link { display: inline-block; margin-top: 6px; color: #6B5012; text-decoration: underline; font-size: 12px; }
.account-note-dismiss {
  flex: none; background: transparent; border: 0; cursor: pointer;
  font-size: 22px; line-height: 1; color: #a08a52; padding: 0 2px;
}
.account-note-dismiss:hover { color: #1E1610; }
/* ══ Notification dropdown — premium, theme-aware (header + account sidebar) ══
   Storefront-wide, so --acc-* vars may be absent → hardcode + dark overrides. */
.nav-notif { position: relative; }
.nav-notif-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 340px; max-width: 92vw;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
  border: 1.5px solid rgba(184,145,42,0.45);
  border-radius: 16px;
  box-shadow: 0 0 0 4px rgba(184,145,42,0.10), 0 10px 24px rgba(30,22,16,0.14), 0 30px 70px -10px rgba(30,22,16,0.42);
  z-index: 9600; overflow: hidden;
  transform-origin: top right;
  animation: gbNotifIn .2s cubic-bezier(.2,.8,.2,1);
}
.nav-notif-list { max-height: min(60vh, 420px); overflow-y: auto; }
@keyframes gbNotifIn { from { opacity: 0; transform: translateY(-6px) scale(.97); } to { opacity: 1; transform: none; } }
/* little pointer up to the bell */
.nav-notif-menu::before {
  content: ''; position: absolute; top: -6px; right: 18px;
  width: 12px; height: 12px; background: #FFFDF8;
  border-left: 1px solid rgba(184,145,42,0.28); border-top: 1px solid rgba(184,145,42,0.28);
  transform: rotate(45deg); border-radius: 3px 0 0 0;
}
.nav-notif-head {
  position: relative; padding: 13px 16px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  color: #7a5f16;
  background: linear-gradient(90deg, rgba(184,145,42,0.10), rgba(184,145,42,0));
  border-bottom: 1px solid rgba(184,145,42,0.18);
}
.nav-notif-item {
  position: relative; display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 16px 16px 18px; border-bottom: 1px solid #F1EADB;
  transition: background .16s ease;
}
.nav-notif-item:last-of-type { border-bottom: 0; }
.nav-notif-item:hover { background: rgba(184,145,42,0.06); }
.nav-notif-item.is-unread { background: rgba(184,145,42,0.05); }
/* gold accent bar + dot for unread */
.nav-notif-item.is-unread::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px;
  background: linear-gradient(#D4AC4E, #B8912A); border-radius: 0 3px 3px 0;
}
.nav-notif-item-main { flex: 1; min-width: 0; text-decoration: none; color: #1E1610; display: block; }
.nav-notif-item-title { font-size: 13.5px; font-weight: 650; line-height: 1.35; letter-spacing: -0.01em; }
.nav-notif-item.is-unread .nav-notif-item-title::after {
  content: ''; display: inline-block; width: 7px; height: 7px; margin-left: 7px;
  border-radius: 50%; background: #B8912A; vertical-align: middle;
}
.nav-notif-item-body { font-size: 12px; color: #6b6152; margin-top: 3px; line-height: 1.45; }
.nav-notif-item-time { font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: #a8987d; margin-top: 5px; }
.nav-notif-del {
  flex: none; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer; font-size: 17px; line-height: 1;
  color: #b6a884; border-radius: 50%; transition: all .15s ease;
}
.nav-notif-del:hover { color: #fff; background: #d15b4a; transform: scale(1.08); }
.nav-notif-empty { padding: 30px 14px; text-align: center; font-size: 12.5px; color: #9a8d76; }
.nav-notif-foot {
  display: block; padding: 12px 14px; text-align: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: #8a6d18; text-decoration: none; border-top: 1px solid rgba(184,145,42,0.18);
  background: rgba(184,145,42,0.04); transition: background .15s ease;
}
.nav-notif-foot:hover { background: rgba(184,145,42,0.12); }
/* dark theme */
html[data-theme="dark"] .nav-notif-menu {
  background: linear-gradient(180deg, #241D15 0%, #1A1611 100%);
  border-color: rgba(212,172,78,0.45);
  box-shadow: 0 0 0 4px rgba(212,172,78,0.10), 0 10px 24px rgba(0,0,0,0.5), 0 30px 70px -10px rgba(0,0,0,0.8);
}
html[data-theme="dark"] .nav-notif-menu::before { background: #211B14; border-color: rgba(212,172,78,0.30); }
html[data-theme="dark"] .nav-notif-head { color: #e2c86a; background: linear-gradient(90deg, rgba(212,172,78,0.14), rgba(212,172,78,0)); border-color: rgba(212,172,78,0.20); }
html[data-theme="dark"] .nav-notif-item { border-color: rgba(255,255,255,0.06); }
html[data-theme="dark"] .nav-notif-item:hover { background: rgba(212,172,78,0.08); }
html[data-theme="dark"] .nav-notif-item.is-unread { background: rgba(212,172,78,0.07); }
html[data-theme="dark"] .nav-notif-item-main { color: #F5EFE3; }
html[data-theme="dark"] .nav-notif-item-body { color: #b5aa97; }
html[data-theme="dark"] .nav-notif-item-time { color: #8a7d64; }
html[data-theme="dark"] .nav-notif-del { color: #9a8d70; }
html[data-theme="dark"] .nav-notif-del:hover { color: #fff; background: #c0392b; }
html[data-theme="dark"] .nav-notif-empty { color: #8a7d64; }
html[data-theme="dark"] .nav-notif-foot { color: #e2c86a; background: rgba(212,172,78,0.06); border-color: rgba(212,172,78,0.20); }
html[data-theme="dark"] .nav-notif-foot:hover { background: rgba(212,172,78,0.14); }
.account-sidebar-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 6px; border-radius: 9px; background: #B8912A; color: #fff; font-size: 11px; font-weight: 700; }

/* Account sidebar notifications dropdown */
.account-sidebar-notif { position: relative; }
.account-sidebar-notif-btn { width: 100%; text-align: left; background: none; border: 0; font: inherit; cursor: pointer; }
.account-sidebar-notif-caret { margin-left: 6px; font-size: 10px; opacity: 0.6; }
.account-sidebar-notif-menu { margin: 8px 0 4px; border: 1.5px solid rgba(184,145,42,0.40); border-radius: 12px; overflow: hidden; background: var(--acc-surface, #fff); box-shadow: 0 0 0 3px rgba(184,145,42,0.08), 0 12px 28px rgba(30,22,16,0.16); }
.account-sidebar-notif-menu .nav-notif-item { padding: 13px 14px; }

/* Available coupons on the account dashboard */
.account-coupons { margin-bottom: 24px; }
.account-coupons-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--acc-text-muted); margin-bottom: 12px;
}
.account-coupons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.account-coupon {
  position: relative; padding: 16px 18px;
  background: linear-gradient(135deg, #FBF6E8, #F6EED6);
  border: 1.5px dashed #C7A94B; border-radius: 12px;
}
.account-coupon.is-vip { border-style: solid; border-color: #B8912A; box-shadow: 0 0 0 3px rgba(184,145,42,0.12); }
.account-coupon-vip { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: linear-gradient(90deg, #B8912A, #D4AC4E); padding: 3px 9px; border-radius: 999px; margin-bottom: 8px; }
.account-coupon-off { font-size: 20px; font-weight: 700; color: #8a6d18; letter-spacing: -0.02em; }
.account-coupon-code {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  padding: 6px 12px; border: 1px solid #C7A94B; border-radius: 8px; background: #fff;
  font-family: 'Courier New', monospace; font-size: 15px; font-weight: 700; letter-spacing: 2px; color: #1E1610;
  cursor: pointer;
}
.account-coupon-code:hover { background: #fffdf6; }
.account-coupon-copy { font-family: var(--font-sans, sans-serif); font-size: 10px; font-style: normal; letter-spacing: 1px; text-transform: uppercase; color: #a08a52; }
.account-coupon-terms { font-size: 11.5px; color: #6b5e48; margin-top: 8px; line-height: 1.4; }
html[data-theme="dark"] .account-coupon { background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05)); border-color: rgba(212,175,55,0.5); }
html[data-theme="dark"] .account-coupon-off { color: #e2c86a; }
html[data-theme="dark"] .account-coupon-code { background: #241d15; color: #f5efe3; border-color: rgba(212,175,55,0.5); }
html[data-theme="dark"] .account-coupon-terms { color: #b5aa97; }

.account-notes { margin-bottom: 24px; }
.account-notes-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--acc-text-muted); margin-bottom: 12px;
}
.account-notes-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: #B8912A; color: #fff; font-size: 11px; letter-spacing: 0; font-weight: 700;
}
.account-notes-empty { font-size: 13px; color: var(--acc-text-muted); margin: 0; }
/* Theme via html[data-theme="dark"] — the app's manual toggle (NOT prefers-color-scheme). */
html[data-theme="dark"] .account-note-card { background: rgba(212,175,55,0.10); border-color: rgba(212,175,55,0.30); }
html[data-theme="dark"] .account-note-body { color: #d8ccae; }
html[data-theme="dark"] .account-note-body strong { color: #f3ecd8; }
html[data-theme="dark"] .account-note-link { color: #e2c86a; }
.cart-summary-row-meta { font-size: 11px; color: var(--taupe); margin-left: 4px; }
.pd-stock-warn {
  display: inline-block; margin-left: 14px; align-self: center;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #B8531C; font-weight: 500;
}

/* Nav search overlay (slides down from top of viewport) */
.nav-search-btn { background: transparent; border: 0; cursor: pointer; font: inherit; color: inherit; padding: 0; }
.nav-search-overlay {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(250, 248, 244, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--parchment);
  padding: 18px 64px;
  transform: translateY(-100%);
  transition: transform 280ms cubic-bezier(.4, 0, .2, 1);
  /* Above #mainNav (z-index:9700 on mobile) so the open overlay fully covers the
     header instead of the logo + nav icons bleeding through over the search box. */
  z-index: 9800;
}
.nav-search-overlay.is-open { transform: translateY(0); }
.nav-search-form {
  display: flex; align-items: center; gap: 14px;
  max-width: 880px; margin: 0 auto;
  position: relative;
}
.nav-search-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 64px;
  background: var(--ivory); border: 0.5px solid var(--parchment);
  max-height: 70vh; overflow-y: auto;
  z-index: 110;
  box-shadow: 0 12px 40px rgba(30,22,16,0.08);
}
.nav-suggest-empty {
  padding: 24px; text-align: center;
  font-size: 12px; letter-spacing: 0.06em; color: var(--taupe);
}
.nav-suggest-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border-bottom: 0.5px solid var(--parchment);
  text-decoration: none; color: var(--espresso);
  transition: background 0.12s ease;
  min-width: 0; box-sizing: border-box;
}
.nav-suggest-item:hover, .nav-suggest-item.is-active {
  background: rgba(184,145,42,0.06);
}
.nav-suggest-thumb {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--parchment);
  overflow: hidden;
}
.nav-suggest-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nav-suggest-thumb-empty { background: var(--parchment); }
.nav-suggest-body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-suggest-name {
  font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 400;
  color: var(--espresso);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-suggest-cat {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
}
.nav-suggest-price {
  font-size: 13px; font-weight: 500; color: var(--espresso); flex-shrink: 0;
}
.nav-suggest-all {
  display: block; padding: 14px 16px;
  text-align: center; text-decoration: none;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  border-top: 0.5px solid var(--parchment);
  background: var(--ivory);
  transition: color 0.12s ease;
}
.nav-suggest-all:hover { color: var(--espresso); }
@media (max-width: 700px) {
  .nav-search-suggest { right: 0; max-width: 100vw; box-sizing: border-box; }
}
.nav-search-input {
  flex: 1; padding: 14px 18px;
  background: var(--ivory); border: 0.5px solid var(--parchment);
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
  color: var(--espresso); outline: none;
}
.nav-search-input:focus { border-color: var(--espresso); }
.nav-search-submit {
  padding: 12px 26px;
  background: var(--espresso); color: var(--ivory);
  border: 0.5px solid var(--espresso);
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
}
.nav-search-submit:hover { background: var(--ink); }
.nav-search-close {
  background: transparent; border: 0; cursor: pointer;
  font-size: 26px; color: var(--taupe);
  padding: 4px 10px; line-height: 1;
}
.nav-search-close:hover { color: var(--espresso); }
@media (max-width: 720px) {
  .nav-search-overlay { padding: 14px 20px; }
  .nav-search-input { font-size: 16px; }
  .nav-search-submit { padding: 10px 14px; font-size: 9px; }
}

/* Search results page form */
.search-page-form {
  display: flex; gap: 12px; max-width: 720px;
  margin: 24px auto 12px; padding: 0 64px;
}
.search-page-input {
  flex: 1; min-width: 0; padding: 12px 16px;
  background: var(--ivory); border: 0.5px solid var(--parchment);
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
  color: var(--espresso); outline: none;
}
.search-page-input:focus { border-color: var(--espresso); }
.search-page-submit {
  padding: 10px 22px; background: var(--espresso); color: var(--ivory);
  border: 0.5px solid var(--espresso);
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
}
.search-page-submit:hover { background: var(--ink); }
@media (max-width: 720px) {
  .search-page-form { padding: 0 20px; }
}

/* Wishlist heart on shop product cards */
.shop-product-card { position: relative; }
.shop-product-wish-form { position: absolute; top: 14px; right: 14px; z-index: 4; margin: 0; }
.shop-product-wish-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 0.5px solid rgba(30, 22, 16, 0.18);
  font-size: 18px; line-height: 1;
  color: var(--espresso); cursor: pointer;
  transition: background 200ms, color 200ms, transform 100ms;
  padding: 0; display: inline-flex; align-items: center; justify-content: center;
}
.shop-product-wish-btn:hover { background: var(--ivory); border-color: var(--espresso); }
.shop-product-wish-btn.is-active { color: #C73E5C; border-color: #C73E5C; }
.shop-product-wish-btn:active { transform: scale(0.94); }

/* PDP wishlist save row */
.pd-wish-form { margin: 14px 0 4px; display: flex; }
.pd-wish-btn {
  flex: 1; padding: 12px 18px;
  background: transparent; border: 0.5px solid var(--parchment);
  font-family: 'Raleway', sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--espresso); cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.pd-wish-btn:hover { background: var(--cream); border-color: var(--espresso); }
.pd-wish-btn.is-active { color: #C73E5C; border-color: #C73E5C; }

/* Reviews */
.pd-reviews { padding: 80px 64px; background: var(--ivory); border-top: 0.5px solid var(--parchment); }
.pd-reviews-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; gap: 24px; flex-wrap: wrap; }
.pd-reviews-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 32px; color: var(--espresso); margin: 0; }
.pd-reviews-summary { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--umber); }
.pd-reviews-stars { color: #B8912A; font-size: 14px; letter-spacing: 1px; }
.pd-reviews-avg { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--espresso); }
.pd-reviews-count { color: var(--taupe); }

.pd-rating-summary { display: inline-flex; gap: 8px; align-items: center; margin-top: 8px; text-decoration: none; cursor: pointer; }
.pd-rating-summary-text { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }

.pd-review-form {
  background: var(--cream);
  padding: 28px; margin: 0 0 36px;
  border: 0.5px solid var(--parchment);
}
.pd-review-form-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 22px; color: var(--espresso); margin: 0 0 14px; }

.pd-review-stars-input {
  display: inline-flex; flex-direction: row-reverse; justify-content: flex-end;
  margin: 4px 0 14px;
}
.pd-review-stars-input input { display: none; }
.pd-review-stars-input label {
  font-size: 26px; cursor: pointer; padding: 0 2px;
  color: var(--sand);
  transition: color 120ms;
}
.pd-review-stars-input input:checked ~ label,
.pd-review-stars-input label:hover,
.pd-review-stars-input label:hover ~ label { color: #B8912A; }

.pd-review-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.pd-review-field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--umber); }
.pd-review-opt { color: var(--taupe); text-transform: none; letter-spacing: 0; font-size: 11px; }
.pd-review-field input,
.pd-review-field textarea {
  padding: 10px 14px; background: var(--ivory); border: 0.5px solid var(--parchment);
  font-family: 'Raleway', sans-serif; font-size: 13px; color: var(--espresso);
  outline: none; resize: vertical;
}
.pd-review-field input:focus,
.pd-review-field textarea:focus { border-color: var(--espresso); }
.pd-review-error { font-size: 12px; color: #7A2E28; margin-top: 4px; display: block; }

.pd-review-signin { padding: 16px 18px; background: var(--cream); border: 0.5px solid var(--parchment); margin-bottom: 32px; font-size: 13px; color: var(--umber); }
.pd-review-signin a { color: var(--espresso); }

.pd-review-empty { color: var(--taupe); font-size: 13px; }
.pd-review-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.pd-review-item { padding: 20px 0; border-bottom: 0.5px solid var(--parchment); }
.pd-review-row-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pd-review-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 18px; color: var(--espresso); }
.pd-review-body { font-size: 14px; line-height: 1.7; color: var(--espresso); margin: 0 0 10px; white-space: pre-wrap; }
.pd-review-meta { font-size: 11px; color: var(--taupe); display: flex; gap: 6px; flex-wrap: wrap; }
.pd-review-verified { color: #3F6B28; }

@media (max-width: 720px) {
  .pd-reviews { padding: 56px 24px; }
  .pd-reviews-title { font-size: 26px; }
}
@media (max-width: 720px) {
  .account-verify-banner { flex-direction: column; align-items: flex-start; }
}

.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty-text { color: var(--umber); font-size: 16px; margin-bottom: 24px; }

.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; }
.cart-row {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--parchment);
}
.cart-row:first-child { border-top: 0.5px solid var(--parchment); }

.cart-thumb {
  width: 90px; height: 90px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 0.5px solid var(--parchment);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }

.cart-info { display: flex; flex-direction: column; gap: 4px; }
.cart-category {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--taupe);
}
.cart-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--espresso);
  text-decoration: none;
}
.cart-name:hover { color: var(--gold); }
.cart-unit { font-size: 12px; color: var(--umber); }

.cart-qty-form { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cart-qty-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--taupe);
}
.cart-qty {
  display: flex; align-items: center; gap: 0;
  border: 0.5px solid var(--parchment);
  background: #fff;
}
.cart-qty-btn {
  width: 32px; height: 34px;
  background: transparent; border: none; cursor: pointer;
  color: var(--espresso); font-size: 14px;
  transition: background .2s;
}
.cart-qty-btn:hover { background: var(--cream); }
.cart-qty input {
  width: 40px; height: 34px; text-align: center;
  border: none; background: transparent;
  font-family: inherit; font-size: 13px; color: var(--espresso);
  border-left: 0.5px solid var(--parchment);
  border-right: 0.5px solid var(--parchment);
  -moz-appearance: textfield;
}
.cart-qty input::-webkit-outer-spin-button,
.cart-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-line-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  min-width: 90px;
  text-align: right;
}
.cart-remove-form { line-height: 0; }
.cart-remove {
  width: 32px; height: 32px;
  background: transparent; border: 0.5px solid var(--parchment);
  color: var(--taupe); cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: all .2s;
}
.cart-remove:hover { color: #7A2E28; border-color: #7A2E28; }

.cart-summary {
  background: var(--cream);
  padding: 32px 32px;
  border: 0.5px solid var(--parchment);
  position: sticky; top: 120px;
}
.cart-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  margin: 0 0 20px;
  color: var(--espresso);
}
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--umber);
  padding: 8px 0;
}
.cart-summary-hint {
  font-size: 11px; color: var(--taupe); margin: 4px 0 8px;
  letter-spacing: 0.5px;
}
.cart-summary-total {
  border-top: 0.5px solid var(--parchment);
  padding-top: 16px; margin-top: 10px;
  font-size: 16px; color: var(--espresso); font-weight: 500;
}
.cart-checkout-btn {
  width: 100%; text-align: center;
  margin-top: 24px;
}
.cart-continue {
  display: block; text-align: center; margin-top: 14px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
}
.cart-continue:hover { color: var(--gold); }

/* Checkout */
.checkout-signin-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  margin-bottom: 28px;
  background: #fff;
  border: 0.5px solid var(--parchment);
  border-left: 3px solid var(--gold);
}
.checkout-signin-banner strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--espresso);
  font-weight: 400;
}
.checkout-signin-banner span {
  font-size: 12px;
  color: var(--umber);
  margin-left: 8px;
}
.checkout-signin-banner-auth { border-left-color: var(--gold); background: var(--cream); }
.checkout-signin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.checkout-signout-form { display: inline; }

.checkout-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--ivory);
  font-family: 'Inter', 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-right: 12px;
  vertical-align: middle;
}

.checkout-create-account {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 0.5px solid var(--parchment);
}
.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--umber);
  cursor: pointer;
  line-height: 1.5;
}
.checkout-check input { margin-top: 3px; accent-color: var(--gold); }
.checkout-account-fields {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-pay-name { font-weight: 500; font-size: 14px; margin-top: 2px; }

.checkout-reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0 0;
  margin-top: 8px;
}
.checkout-reassure-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 0.5px solid var(--parchment);
}
.checkout-reassure-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.checkout-reassure-item strong {
  display: block;
  font-size: 13px;
  color: var(--espresso);
  font-weight: 500;
}
.checkout-reassure-item span {
  display: block;
  font-size: 11px;
  color: var(--taupe);
  margin-top: 2px;
}

.checkout-form { width: 100%; }
.checkout-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start;
}
.checkout-main { display: flex; flex-direction: column; gap: 28px; }
.checkout-block {
  background: #fff;
  border: 0.5px solid var(--parchment);
  padding: 28px 32px;
}
.checkout-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  margin: 0 0 18px;
  color: var(--espresso);
}
.checkout-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.checkout-field label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--umber);
}
.checkout-field-opt { color: var(--taupe); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 10px; }
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  padding: 11px 14px;
  border: 0.5px solid var(--parchment);
  background: var(--ivory);
  font-family: inherit; font-size: 14px; color: var(--espresso);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.checkout-field select {
  /* Caret arrow drawn inline so the dropdown matches the inputs visually */
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e2417' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  cursor: pointer;
}
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus { outline: none; border-color: var(--gold); background-color: #fff; }
.checkout-field input[readonly] { background: var(--cream); color: var(--taupe); cursor: not-allowed; }
.checkout-field-help { font-size: 11.5px; color: var(--taupe); letter-spacing: 0.2px; margin-top: 2px; }
.checkout-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-field-req { color: var(--gold); font-weight: 600; }
.manual-pay-req { color: var(--gold); font-weight: 600; }
/* Phone: dial-code select + number input side by side. Select is auto-width so
   the flag + code stay compact and the number field takes the rest. */
.checkout-phone-row { display: grid; grid-template-columns: minmax(0, 44%) 1fr; gap: 10px; }
.checkout-phone-row .checkout-phone-code { width: 100%; }
.checkout-phone-row .checkout-phone-number { width: 100%; }
@media (max-width: 520px) {
  .checkout-phone-row { grid-template-columns: 1fr; }
}

.checkout-pay-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 20px;
}
.checkout-pay-tab {
  position: relative; display: block; cursor: pointer;
  border: 0.5px solid var(--parchment);
  background: var(--ivory);
  transition: border-color .2s, background .2s;
}
.checkout-pay-tab:hover { border-color: var(--taupe); }
.checkout-pay-tab.selected { border-color: var(--gold); background: #fff; box-shadow: inset 0 0 0 1px var(--gold); }
.checkout-pay-tab input { position: absolute; opacity: 0; pointer-events: none; }
.checkout-pay-tab-inner {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 16px 18px;
  font-size: 13px; color: var(--espresso);
}
.checkout-pay-tab-inner small { font-size: 11px; color: var(--taupe); }

.checkout-pay-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 28px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 4px;
}
.checkout-pay-logo-stripe { background: linear-gradient(135deg, #1A1F71, #00579F); color: #fff; }
.checkout-pay-logo-cashapp { background: #00D54B; color: #fff; font-size: 18px; letter-spacing: 0; font-weight: 900; }
.checkout-pay-logo-zelle { background: #6d1ed4; color: #fff; font-size: 16px; letter-spacing: 0; font-weight: 900; }
/* Automatic / Manual tag on each pay tile so the two groups stand out. */
.checkout-pay-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 99px; line-height: 1.4;
}
.checkout-pay-badge.is-auto { background: rgba(0,168,84,0.14); color: #0a7d43; }
.checkout-pay-badge.is-manual { background: rgba(109,30,212,0.12); color: #6d1ed4; }

.checkout-pay-panel { padding-top: 6px; }

/* Manual method panel (Zelle / personal Cash App) folded into the pay page. */
.checkout-pay-manual-handle {
  margin-top: 10px; padding: 12px 14px;
  background: var(--ivory); border: 0.5px solid var(--parchment);
  display: flex; flex-direction: column; gap: 3px;
}
.checkout-pay-manual-name { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.checkout-pay-manual-handle strong { font-size: 16px; color: var(--espresso); }
.checkout-pay-manual-note { border-left-color: var(--espresso); }
/* Back-to-bag link on the pay page. */
.checkout-pay-back {
  display: inline-block; margin-top: 18px;
  font-size: 12px; letter-spacing: 0.04em; color: var(--taupe);
  text-decoration: none; border-bottom: 1px solid transparent;
}
.checkout-pay-back:hover { color: var(--espresso); border-bottom-color: var(--espresso); }
.checkout-pay-note {
  font-size: 11px; color: var(--taupe); margin-top: 8px;
  padding: 10px 12px; background: var(--cream); border-left: 2px solid var(--gold);
}

.checkout-summary {
  background: var(--cream);
  padding: 32px 32px;
  border: 0.5px solid var(--parchment);
  position: sticky; top: 120px;
}

.checkout-items { list-style: none; padding: 0; margin: 0 0 20px; }
.checkout-item {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--parchment);
  font-size: 13px;
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-thumb {
  position: relative;
  width: 54px; height: 54px;
  background: var(--ivory);
  border: 0.5px solid var(--parchment);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.checkout-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--espresso); color: var(--ivory);
  font-size: 10px; font-weight: 500;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.checkout-item-name { color: var(--espresso); font-size: 13px; }
.checkout-item-meta { font-size: 11px; color: var(--taupe); margin-top: 2px; }
.checkout-item-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--gold);
}

/* Confirmation */
.confirm-panel {
  max-width: 760px; margin: 0 auto;
  background: #fff;
  border: 0.5px solid var(--parchment);
}
.confirm-head {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 32px 40px;
  border-bottom: 0.5px solid var(--parchment);
  background: var(--cream);
}
.confirm-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--taupe);
  margin-bottom: 6px;
}
.confirm-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--espresso);
}
.confirm-body { padding: 32px 40px; }
.confirm-note { font-size: 14px; color: var(--umber); line-height: 1.7; margin: 0 0 24px; }
.confirm-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  margin: 0 0 12px;
  color: var(--espresso);
}
.confirm-actions {
  padding: 24px 40px 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cart-hero { padding: 160px 20px 32px; }
  .cart-hero-title { font-size: 54px; }
  .cart-section { padding: 40px 20px 80px; }
  .cart-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-summary { position: static; }
  .cart-row { grid-template-columns: 70px 1fr; gap: 12px; row-gap: 10px; }
  .cart-row .cart-qty-form { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; }
  .cart-row .cart-line-total { grid-column: 1 / -1; text-align: left; }
  .cart-row .cart-remove-form { grid-column: 2; justify-self: end; }
  .cart-thumb { width: 70px; height: 70px; }

  .checkout-grid { grid-template-columns: 1fr; gap: 28px; }
  .checkout-summary { position: static; }
  .checkout-pay-tabs { grid-template-columns: 1fr; }
  .checkout-signin-banner { flex-direction: column; align-items: flex-start; }
  .checkout-account-fields { grid-template-columns: 1fr; }
  .checkout-reassure { grid-template-columns: 1fr; }
  .confirm-head { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .confirm-body, .confirm-actions { padding-left: 24px; padding-right: 24px; }
}

/* ══════════════════════════════════════════════
   CART DRAWER (slide-over)
   ══════════════════════════════════════════════ */

.cart-drawer-backdrop {
  /* Above the sticky nav (#mainNav z-index 9700 on mobile) so the header
     doesn't bleed through the open cart drawer. */
  position: fixed; inset: 0; z-index: 9750;
  background: rgba(28, 25, 21, 0);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: background .35s ease, opacity .35s ease, visibility .35s;
}
body.cart-open .cart-drawer-backdrop {
  background: rgba(28, 25, 21, 0.35);
  opacity: 1; visibility: visible; pointer-events: auto;
}

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 100vw;
  background: var(--ivory);
  z-index: 9800;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(28,25,21,0.12);
}
body.cart-open .cart-drawer { transform: translateX(0); }

.cart-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px;
  border-bottom: 0.5px solid var(--parchment);
}
.cart-drawer-eyebrow {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--taupe);
}
.cart-drawer-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--espresso);
  margin-top: 2px;
}
.cart-drawer-close {
  width: 36px; height: 36px;
  background: transparent; border: none;
  color: var(--umber); cursor: pointer;
  font-size: 28px; line-height: 1;
  transition: color .2s;
}
.cart-drawer-close:hover { color: var(--gold); }

.cart-drawer-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 32px;
  text-align: center;
  gap: 20px;
}
.cart-drawer-empty p { color: var(--umber); font-size: 15px; }
.cart-drawer-shop { display: inline-block; }

.cart-drawer-items {
  flex: 1; overflow-y: auto;
  padding: 0 28px;
}
.cart-drawer-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--parchment);
}
.cart-drawer-row:last-child { border-bottom: none; }

.cart-drawer-thumb {
  width: 72px; height: 72px;
  background: var(--cream);
  border: 0.5px solid var(--parchment);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer-thumb img { width: 100%; height: 100%; object-fit: cover; }

.cart-drawer-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-drawer-category {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--taupe);
}
.cart-drawer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: var(--espresso);
  text-decoration: none;
  line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-drawer-name:hover { color: var(--gold); }
.cart-drawer-price { font-size: 12px; color: var(--umber); margin-bottom: 4px; }

.cart-drawer-qty-form { display: flex; }
.cart-drawer-qty {
  display: flex; align-items: center;
  border: 0.5px solid var(--parchment);
  background: #fff;
}
.cart-drawer-qty-btn {
  width: 26px; height: 28px;
  background: transparent; border: none; cursor: pointer;
  color: var(--espresso); font-size: 13px;
}
.cart-drawer-qty-btn:hover { background: var(--cream); }
.cart-drawer-qty input {
  width: 34px; height: 28px; text-align: center;
  border: none; background: transparent;
  font-family: inherit; font-size: 12px; color: var(--espresso);
  border-left: 0.5px solid var(--parchment);
  border-right: 0.5px solid var(--parchment);
  -moz-appearance: textfield;
}
.cart-drawer-qty input::-webkit-outer-spin-button,
.cart-drawer-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-drawer-right {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.cart-drawer-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold);
}
.cart-drawer-remove-form { line-height: 0; }
.cart-drawer-remove {
  background: transparent; border: none; padding: 0;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--taupe); cursor: pointer;
  transition: color .2s;
}
.cart-drawer-remove:hover { color: #7A2E28; }

.cart-drawer-foot {
  padding: 20px 28px 28px;
  border-top: 0.5px solid var(--parchment);
  background: var(--cream);
}
.cart-drawer-summary-row {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  font-size: 13px; color: var(--umber);
}
.cart-drawer-hint {
  font-size: 11px; color: var(--taupe);
  padding: 6px 0 4px;
  letter-spacing: .5px;
}
.cart-drawer-total {
  border-top: 0.5px solid var(--parchment);
  padding-top: 14px; margin-top: 8px;
  font-size: 16px; color: var(--espresso); font-weight: 500;
}
.cart-drawer-checkout {
  display: block; width: 100%; text-align: center;
  margin-top: 18px;
}
.cart-drawer-viewbag {
  display: block; text-align: center; margin-top: 12px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
}
.cart-drawer-viewbag:hover { color: var(--gold); }

@media (max-width: 600px) {
  .cart-drawer { width: 100vw; max-width: 420px; }
  .cart-drawer-head, .cart-drawer-items, .cart-drawer-foot { padding-left: 20px; padding-right: 20px; }

  /* Roomier, less congested rows + finger-friendly steppers on touch. */
  .cart-drawer-row {
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    padding: 16px 0;
  }
  .cart-drawer-thumb { width: 60px; height: 60px; }
  .cart-drawer-name { font-size: 16px; }
  .cart-drawer-price { margin-bottom: 8px; }

  .cart-drawer-qty { border-radius: 6px; overflow: hidden; }
  .cart-drawer-qty-btn { width: 34px; height: 34px; font-size: 16px; }
  .cart-drawer-qty input { width: 38px; height: 34px; font-size: 13px; }

  /* Right column: total up top, generous space to the Remove tap target. */
  .cart-drawer-right { gap: 14px; }
  .cart-drawer-line { font-size: 17px; }
  .cart-drawer-remove { font-size: 11px; padding: 6px 2px; }
}

/* ══════════════════════════════════════════════
   CUSTOMER ACCOUNT — sidebar layout
   Account-scoped theme tokens (light default)
   ══════════════════════════════════════════════ */

.account-shell {
  --acc-bg:          var(--ivory);
  --acc-surface:     #FFFFFF;
  --acc-surface-2:   var(--cream);
  --acc-border:      var(--parchment);
  --acc-border-2:    #D4C9B5;
  --acc-text:        var(--espresso);
  --acc-text-muted:  var(--umber);
  --acc-text-dim:    var(--taupe);
  --acc-accent:      var(--gold);
  --acc-accent-soft: #EDE7DC;
  --acc-input-bg:    var(--ivory);
  --acc-shadow:      0 4px 24px rgba(28,25,21,0.04);

  position: relative;
  min-height: 100vh;
  background: var(--acc-bg);
  color: var(--acc-text);
  transition: background .3s;
}

/* Hide the storefront chrome on account pages — dashboard owns the viewport */
body:has(.account-shell) > nav#mainNav,
body:has(.account-shell) > #announceBar,
body:has(.account-shell) > .mobile-menu,
body:has(.account-shell) > #hamburger {
  display: none !important;
}

html[data-theme="dark"] .account-shell {
  --acc-bg:          #0F0D0A;
  --acc-surface:     #1A1611;
  --acc-surface-2:   #221D17;
  --acc-border:      #2E2822;
  --acc-border-2:    #3D362E;
  --acc-text:        #F5EFE3;
  --acc-text-muted:  #B5AA97;
  --acc-text-dim:    #7D7160;
  --acc-accent:      #E4C878;
  --acc-accent-soft: #2A2419;
  --acc-input-bg:    #120F0B;
  --acc-shadow:      0 4px 24px rgba(0,0,0,0.35);
}

.account-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 280px;
  background: var(--acc-surface);
  border-right: 0.5px solid var(--acc-border);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 50;
  transition: background .3s, border-color .3s, transform .35s cubic-bezier(.4,0,.2,1);
}

/* Footer inside account pages: push right so the fixed sidebar doesn't cover it */
body:has(.account-shell) > footer {
  margin-left: 280px;
  transition: margin-left .3s;
}
@media (max-width: 900px) {
  body:has(.account-shell) > footer { margin-left: 0; }
}
/* Top bar: brand on left, theme toggle + (mobile) close on right */
.account-sidebar-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 18px;
  border-bottom: 0.5px solid var(--acc-border);
}
.account-sidebar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.account-sidebar-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--acc-text);
  transition: color .3s;
}
.account-sidebar-brand:hover .account-sidebar-brand-name { color: var(--acc-accent); }
.account-sidebar-brand-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  margin-top: 3px;
}
.account-sidebar-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-sidebar-close {
  display: none;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  font-size: 24px; line-height: 1;
  color: var(--acc-text-muted);
  cursor: pointer;
}

.account-sidebar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 22px 20px;
  border-bottom: 0.5px solid var(--acc-border);
}
.account-sidebar-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--acc-text);
  color: var(--acc-surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.account-sidebar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--acc-text);
  line-height: 1.2;
  transition: color .3s;
}
.account-sidebar-email {
  font-size: 11px;
  color: var(--acc-text-dim);
  margin-top: 3px;
  word-break: break-word;
}

.account-sidebar-nav { display: flex; flex-direction: column; padding: 14px 0; }
.account-sidebar-link {
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.account-sidebar-link:hover {
  background: var(--acc-surface-2);
  color: var(--acc-text);
}
.account-sidebar-link.active {
  background: var(--acc-surface-2);
  color: var(--acc-text);
  border-left-color: var(--acc-accent);
}
.account-sidebar-link-sub {
  font-size: 10px;
  color: var(--acc-text-dim);
  border-left: none !important;
  padding: 10px 22px;
}
.account-sidebar-link-sub:hover { background: transparent; color: var(--acc-accent); }

.account-sidebar-foot {
  margin-top: auto;
  border-top: 0.5px solid var(--acc-border);
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
}

.account-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  padding: 0;
  background: transparent;
  border: 0.5px solid var(--acc-border);
  border-radius: 50%;
  color: var(--acc-text-muted);
  cursor: pointer;
  transition: all .2s;
}
.account-theme-toggle:hover {
  background: var(--acc-surface-2);
  color: var(--acc-accent);
  border-color: var(--acc-accent);
}
.account-theme-toggle svg { width: 15px; height: 15px; }
.account-theme-toggle .icon-moon { display: block; }
.account-theme-toggle .icon-sun  { display: none; }
html[data-theme="dark"] .account-theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .account-theme-toggle .icon-sun  { display: block; }

.account-sidebar-logout {
  display: block;
  width: calc(100% - 44px);
  margin: 8px 22px 0;
  padding: 11px;
  background: transparent;
  border: 0.5px solid var(--acc-border);
  color: var(--acc-text-muted);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.account-sidebar-logout:hover {
  background: var(--acc-text);
  color: var(--acc-bg);
  border-color: var(--acc-text);
}

.account-sidebar-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(28, 25, 21, 0);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: background .3s ease, opacity .3s ease, visibility .3s;
}

/* ── Main content ── */
.account-main {
  margin-left: 280px;
  padding: 56px 56px 80px;
  max-width: 1100px;
  min-width: 0;
}

.account-mobile-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  color: var(--acc-text);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 20px;
}
.account-mobile-toggle-lines { display: inline-flex; flex-direction: column; gap: 3px; width: 16px; }
.account-mobile-toggle-lines span { display: block; height: 1.5px; background: var(--acc-text); }

.account-page-head {
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--acc-border);
  margin-bottom: 32px;
}
.account-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--acc-text);
  margin: 8px 0 8px;
  transition: color .3s;
}
.account-page-title em { font-style: italic; color: var(--acc-accent); }
.account-page-desc { font-size: 14px; color: var(--acc-text-muted); }

.account-hero-back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  text-decoration: none;
  margin-bottom: 10px;
}
.account-hero-back:hover { color: var(--acc-accent); }

/* ── Mobile drawer ── */
@media (max-width: 900px) {
  .account-main {
    margin-left: 0;
    padding: 24px 20px 60px;
  }
  .account-mobile-toggle { display: inline-flex; }

  .account-sidebar {
    top: 0; bottom: 0; left: 0;
    width: 300px; max-width: 86vw;
    height: 100dvh;
    transform: translateX(-100%);
    z-index: 200;
    box-shadow: 8px 0 40px rgba(28,25,21,.12);
  }
  body.account-open .account-sidebar { transform: translateX(0); }
  body.account-open .account-sidebar-backdrop {
    background: rgba(28, 25, 21, 0.4);
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  html[data-theme="dark"] body.account-open .account-sidebar-backdrop {
    background: rgba(0, 0, 0, 0.6);
  }
  .account-sidebar-close { display: block; }
  .account-page-title { font-size: 34px; }
}

.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.account-stat {
  padding: 22px 24px;
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  transition: background .3s, border-color .3s;
}
.account-stat-accent {
  background: linear-gradient(135deg, var(--acc-text) 0%, #3A3228 100%);
  color: var(--acc-bg);
  border-color: transparent;
}
.account-stat-accent .account-stat-label { color: rgba(255, 255, 255, 0.65); }
.account-stat-accent .account-stat-num { color: var(--acc-bg); }
.account-stat-accent .account-stat-sub { color: rgba(255, 255, 255, 0.55); }
html[data-theme="dark"] .account-stat-accent {
  background: linear-gradient(135deg, #2A2419 0%, #3D362E 100%);
  color: var(--acc-accent);
}
html[data-theme="dark"] .account-stat-accent .account-stat-num { color: var(--acc-accent); }

.account-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  margin-bottom: 10px;
}
.account-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--acc-text);
  line-height: 1;
}
.account-stat-sub { font-size: 11px; color: var(--acc-text-dim); margin-top: 8px; }

.account-dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.account-panel {
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  padding: 28px 32px;
  transition: background .3s, border-color .3s;
}
.account-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.account-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--acc-text);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--acc-border);
}
.account-panel-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  text-decoration: none;
}
.account-panel-link:hover { color: var(--acc-accent); }

.account-recent-list { list-style: none; padding: 0; margin: 0; }
.account-recent-list > li { border-bottom: 0.5px solid var(--acc-border); }
.account-recent-list > li:last-child { border-bottom: none; }
.account-recent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
  color: var(--acc-text);
}
.account-recent-row:hover .account-recent-num { color: var(--acc-accent); }
.account-recent-num { font-size: 14px; font-weight: 500; transition: color .2s; color: var(--acc-text); }
.account-recent-meta { font-size: 12px; color: var(--acc-text-dim); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.account-recent-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--acc-accent);
}

.account-empty-inline { text-align: center; padding: 24px 0; }
.account-empty-inline p { color: var(--acc-text-muted); font-size: 14px; margin-bottom: 16px; }

.account-profile-meta {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  font-size: 13px;
}
.account-profile-meta dt {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  padding-top: 3px;
}
.account-profile-meta dd {
  margin: 0;
  color: var(--acc-text);
}

.account-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.account-form { display: flex; flex-direction: column; gap: 16px; }
.account-field { display: flex; flex-direction: column; gap: 6px; }
.account-field label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-muted);
}
.account-field-opt { color: var(--acc-text-dim); text-transform: none; letter-spacing: 0; font-size: 10px; margin-left: 4px; }
.account-field-req { color: var(--gold); font-weight: 600; }
.account-field input {
  padding: 11px 14px;
  border: 0.5px solid var(--acc-border);
  background: var(--acc-input-bg);
  font-family: inherit;
  font-size: 14px;
  color: var(--acc-text);
  transition: border-color .15s, background .15s;
}
.account-field input:focus { outline: none; border-color: var(--acc-accent); background: var(--acc-surface); }
.account-field-error { font-size: 12px; color: #D16662; }
.account-form-actions { margin-top: 10px; }

@media (max-width: 900px) {
  .account-tabs { overflow-x: auto; margin-bottom: 32px; }
  .account-tab { padding: 10px 14px; white-space: nowrap; }
  .account-tab-logout { margin-left: 0; }
  .account-stat-grid { grid-template-columns: 1fr 1fr; }
  .account-dash-grid { grid-template-columns: 1fr; }
  .account-profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .account-stat-grid { grid-template-columns: 1fr; }
  .account-quick-actions { grid-template-columns: 1fr; }
}

/* ── Page head with action button on the right ── */
.account-page-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Quick actions ── */
.account-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.account-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  text-decoration: none;
  color: var(--acc-text);
  transition: border-color .2s, transform .2s, background .3s;
}
.account-action-card:hover {
  border-color: var(--acc-accent);
  transform: translateY(-2px);
}
.account-action-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--acc-accent-soft);
  color: var(--acc-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.account-action-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.account-sidebar-link-icon {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.account-sidebar-icon { width: 15px; height: 15px; flex-shrink: 0; opacity: .85; }
.account-action-title { font-size: 13px; font-weight: 500; color: var(--acc-text); }
.account-action-desc { font-size: 11px; color: var(--acc-text-dim); margin-top: 2px; }

/* ── Address grid (index page) ── */
.account-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.account-address-card {
  position: relative;
  padding: 24px;
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  transition: border-color .2s, background .3s;
  display: flex;
  flex-direction: column;
}
.account-address-card:hover { border-color: var(--acc-border-2); }
.account-address-card.is-default { border-color: var(--acc-accent); }
.account-address-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  padding: 3px 10px;
  background: var(--acc-accent);
  color: var(--acc-surface);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
html[data-theme="dark"] .account-address-badge { color: #0F0D0A; }
.account-address-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  margin-bottom: 8px;
}
.account-address-recipient {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--acc-text);
  margin-bottom: 10px;
}
.account-address-lines {
  font-size: 13px;
  line-height: 1.6;
  color: var(--acc-text-muted);
  flex: 1;
}
.account-address-phone { font-size: 12px; color: var(--acc-text-dim); margin-top: 4px; }

.account-address-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 0.5px solid var(--acc-border);
}
.account-address-link {
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--acc-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}
.account-address-link:hover { color: var(--acc-accent); }
.account-address-link-danger { color: #C35C55; }
.account-address-link-danger:hover { color: #C35C55; opacity: .7; }
.account-address-inline { display: inline; }

/* ── Dashboard: default address panel ── */
.account-dash-address { font-size: 13px; color: var(--acc-text-muted); }
.account-dash-address .account-address-label { margin-bottom: 6px; }
.account-dash-address .account-address-recipient { font-size: 18px; margin-bottom: 8px; }
.account-dash-address-actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 0.5px solid var(--acc-border);
}

/* ── Address form ── */
.account-panel-form { padding: 28px 32px; max-width: 640px; }

.account-message-identity {
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 0.5px solid var(--acc-border);
}
.account-message-identity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--acc-text);
  margin-top: 6px;
  flex-wrap: wrap;
}
.account-message-identity-row a { color: var(--acc-accent); text-decoration: none; }
.account-message-identity-row a:hover { text-decoration: underline; }
.account-message-identity-row span { color: var(--acc-text-dim); }

.account-field textarea,
.account-field select {
  padding: 11px 14px;
  border: 0.5px solid var(--acc-border);
  background: var(--acc-input-bg);
  font-family: inherit;
  font-size: 14px;
  color: var(--acc-text);
  transition: border-color .15s, background .15s;
}
.account-field textarea { resize: vertical; min-height: 120px; }
.account-field textarea:focus,
.account-field select:focus {
  outline: none;
  border-color: var(--acc-accent);
  background: var(--acc-surface);
}

.account-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--acc-text-muted);
  cursor: pointer;
  padding: 6px 0;
}
.account-check input { accent-color: var(--acc-accent); width: 16px; height: 16px; }
.account-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 0.5px solid var(--acc-border);
}

@media (max-width: 900px) {
  .account-quick-actions { grid-template-columns: 1fr 1fr; }
  .account-page-head-row { flex-direction: column; align-items: stretch; }
  .account-panel-form { padding: 20px; }
}

/* ============================================================
   Orders index — redesigned
   ============================================================ */

.account-orders-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: var(--acc-shadow);
  width: max-content;
  max-width: 100%;
}
.account-orders-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acc-text-muted);
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.account-orders-tab:hover {
  background: var(--acc-surface-2);
  color: var(--acc-text);
}
.account-orders-tab.active {
  background: var(--acc-text);
  color: var(--acc-bg);
}
html[data-theme="dark"] .account-orders-tab.active {
  background: var(--acc-accent);
  color: #0F0D0A;
}
.account-orders-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--acc-surface-2);
  color: var(--acc-text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}
.account-orders-tab.active .account-orders-tab-count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--acc-bg);
}
html[data-theme="dark"] .account-orders-tab.active .account-orders-tab-count {
  background: rgba(15, 13, 10, 0.2);
  color: #0F0D0A;
}

.account-orders-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.account-order-card {
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: var(--acc-shadow);
  transition: border-color .2s, transform .2s;
}
.account-order-card:hover { border-color: var(--acc-border-2); }

.account-order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.account-order-card-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.account-order-card-id { min-width: 0; }
.account-order-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--acc-text);
  letter-spacing: 0.01em;
}
.account-order-card-sub {
  font-size: 12px;
  color: var(--acc-text-dim);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.account-order-card-dot { margin: 0 6px; opacity: .6; }

.account-order-card-total { text-align: right; flex-shrink: 0; }
.account-order-card-total-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  margin-bottom: 4px;
}
.account-order-card-total-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--acc-text);
}

.account-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0.5px solid transparent;
  width: max-content;
}
.account-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.account-status-pill-warning {
  background: #FBF4E3;
  color: #8B6F1E;
  border-color: #EFE1B8;
}
.account-status-pill-info {
  background: #E9EEF5;
  color: #3A5877;
  border-color: #CDD7E4;
}
.account-status-pill-ok {
  background: #E6F1E8;
  color: #2E6A3E;
  border-color: #C6DDC9;
}
.account-status-pill-off {
  background: #F2E9E8;
  color: #8A4A45;
  border-color: #E1CCC9;
}
html[data-theme="dark"] .account-status-pill-warning {
  background: rgba(228, 200, 120, 0.12); color: #E4C878; border-color: rgba(228, 200, 120, 0.25);
}
html[data-theme="dark"] .account-status-pill-info {
  background: rgba(150, 180, 220, 0.1); color: #9EB9DA; border-color: rgba(150, 180, 220, 0.22);
}
html[data-theme="dark"] .account-status-pill-ok {
  background: rgba(140, 200, 160, 0.1); color: #9ED3AC; border-color: rgba(140, 200, 160, 0.22);
}
html[data-theme="dark"] .account-status-pill-off {
  background: rgba(200, 140, 140, 0.1); color: #D69B96; border-color: rgba(200, 140, 140, 0.22);
}

.account-order-card-items {
  font-size: 13px;
  color: var(--acc-text-muted);
  padding: 12px 14px;
  background: var(--acc-surface-2);
  border-radius: 8px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.account-order-card-items-more { color: var(--acc-text-dim); font-size: 12px; }

.account-order-timeline {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  gap: 0;
}
.account-order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 60px;
}
.account-order-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acc-surface-2);
  border: 1.5px solid var(--acc-border-2);
  transition: all .2s;
  position: relative;
}
.account-order-step-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  font-weight: 500;
}
.account-order-step-bar {
  flex: 1 1 auto;
  height: 1.5px;
  background: var(--acc-border);
  margin: 0 -2px;
  align-self: flex-start;
  margin-top: 5px;
}
.account-order-step-bar-done { background: var(--acc-accent); }

.account-order-step-done .account-order-step-dot {
  background: var(--acc-accent);
  border-color: var(--acc-accent);
}
.account-order-step-done .account-order-step-label { color: var(--acc-text-muted); }

.account-order-step-current .account-order-step-dot {
  background: var(--acc-accent);
  border-color: var(--acc-accent);
  box-shadow: 0 0 0 4px rgba(184, 146, 79, 0.18);
  animation: gb-pulse 1.6s ease-out infinite;
}
.account-order-step-current .account-order-step-label {
  color: var(--acc-text);
  font-weight: 600;
}
html[data-theme="dark"] .account-order-step-current .account-order-step-dot {
  box-shadow: 0 0 0 4px rgba(228, 200, 120, 0.22);
}

@keyframes gb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184, 146, 79, 0.32); }
  70%  { box-shadow: 0 0 0 8px rgba(184, 146, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 146, 79, 0); }
}

.account-order-cancelled-bar {
  padding: 10px 14px;
  font-size: 12px;
  color: #8A4A45;
  background: #F8EDEB;
  border-radius: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
html[data-theme="dark"] .account-order-cancelled-bar {
  background: rgba(200, 140, 140, 0.08);
  color: #D69B96;
}

.account-order-tracking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--acc-surface-2);
  border: 0.5px solid var(--acc-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--acc-text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.account-order-tracking-code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--acc-text);
  letter-spacing: 0.02em;
}
.account-order-tracking-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--acc-accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.account-order-tracking-link:hover { text-decoration: underline; }

.account-order-card-foot {
  padding-top: 14px;
  border-top: 0.5px solid var(--acc-border);
  display: flex;
  justify-content: flex-end;
}
.account-order-card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc-text-muted);
  text-decoration: none;
  transition: color .2s;
}
.account-order-card-link:hover { color: var(--acc-accent); }

.account-orders-empty {
  text-align: center;
  padding: 56px 32px;
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  border-radius: 14px;
  box-shadow: var(--acc-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.account-orders-empty-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--acc-accent-soft);
  color: var(--acc-accent);
  margin-bottom: 24px;
}
.account-orders-empty-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}
.account-orders-empty-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--acc-text);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.account-orders-empty-desc {
  font-size: 13px;
  color: var(--acc-text-muted);
  margin: 0 0 24px;
  max-width: 380px;
  line-height: 1.6;
}
.account-orders-empty-link {
  color: var(--acc-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
}
.account-orders-empty-link:hover { opacity: .7; }

.account-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 720px) {
  .account-orders-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 12px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .account-order-card { padding: 20px; }
  .account-order-card-top {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .account-order-card-total { text-align: left; }
  .account-order-card-total-num { font-size: 22px; }
  .account-order-timeline {
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .account-order-step { min-width: 54px; }
  .account-order-tracking-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Live tracking feed (customer)
   ============================================================ */

.account-tracking-feed {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.account-tracking-entry {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}
.account-tracking-entry:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  bottom: -6px;
  width: 1px;
  background: var(--acc-border);
}
.account-tracking-entry-dot {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-top: 6px;
  position: relative;
  z-index: 1;
  background: var(--acc-accent);
  border: 2px solid var(--acc-surface);
  box-shadow: 0 0 0 1px var(--acc-border);
}
.account-tracking-entry-dot-ok { background: #3E8A56; }
.account-tracking-entry-dot-info { background: #4A78AE; }
.account-tracking-entry-dot-warning { background: var(--acc-accent); }
.account-tracking-entry-dot-off { background: #B85953; }

.account-tracking-entry.is-latest .account-tracking-entry-dot {
  box-shadow: 0 0 0 1px var(--acc-border), 0 0 0 5px rgba(184, 146, 79, 0.18);
  animation: gb-pulse 1.8s ease-out infinite;
}

.account-tracking-entry-body { flex: 1; min-width: 0; }
.account-tracking-entry-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--acc-text);
  letter-spacing: 0.02em;
}
.account-tracking-entry-time {
  font-size: 12px;
  color: var(--acc-text-dim);
  margin-top: 2px;
}
.account-tracking-entry-note {
  font-size: 13px;
  color: var(--acc-text-muted);
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--acc-surface-2);
  border-left: 2px solid var(--acc-accent);
  border-radius: 4px;
  line-height: 1.5;
}

/* ============================================================
   Track Orders list page
   ============================================================ */

.account-tracking-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.account-tracking-card {
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: var(--acc-shadow);
}

.account-tracking-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.account-tracking-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--acc-text);
  margin-top: 10px;
}
.account-tracking-card-sub {
  font-size: 12px;
  color: var(--acc-text-dim);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.account-tracking-card-carrier {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--acc-surface-2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--acc-text-muted);
  margin-bottom: 18px;
}
.account-tracking-card-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acc-text-dim);
  margin-bottom: 4px;
}

.account-tracking-card-latest {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--acc-accent-soft);
  border-radius: 10px;
  border: 0.5px solid var(--acc-border);
}
.account-tracking-card-latest .account-tracking-entry-dot {
  margin-top: 4px;
}
.account-tracking-card-latest-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--acc-text);
  letter-spacing: 0.02em;
}
.account-tracking-card-latest-time {
  font-size: 12px;
  color: var(--acc-text-muted);
  margin-top: 3px;
}
.account-tracking-card-latest-note {
  font-size: 13px;
  color: var(--acc-text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.account-tracking-card-empty {
  padding: 16px;
  background: var(--acc-surface-2);
  border: 0.5px dashed var(--acc-border-2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--acc-text-dim);
  text-align: center;
}

@media (max-width: 720px) {
  .account-tracking-card { padding: 20px; }
  .account-tracking-card-head { flex-direction: column; }
  .account-tracking-card-carrier { gap: 14px; flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Order detail page — redesigned
   ============================================================ */

.order-hero {
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 28px;
  box-shadow: var(--acc-shadow);
  position: relative;
  overflow: hidden;
}
.order-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acc-accent);
}
.order-hero-ok::before { background: #3E8A56; }
.order-hero-off::before { background: #B85953; }

.order-hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.order-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  margin-bottom: 6px;
}
.order-hero-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--acc-text);
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  line-height: 1.1;
}
.order-hero-placed {
  font-size: 13px;
  color: var(--acc-text-muted);
}
.order-hero-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.order-hero-total-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc-text-dim);
}
.order-hero-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--acc-text);
}
.order-hero-timeline {
  margin-bottom: 20px;
}
.order-hero-cancelled {
  padding: 14px 18px;
  font-size: 14px;
  color: #8A4A45;
  background: #F8EDEB;
  border-radius: 8px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
html[data-theme="dark"] .order-hero-cancelled {
  background: rgba(200, 140, 140, 0.08);
  color: #D69B96;
}
.order-hero-note {
  font-size: 14px;
  color: var(--acc-text-muted);
  line-height: 1.6;
  margin: 0;
  padding-top: 18px;
  border-top: 0.5px solid var(--acc-border);
}

.order-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}
.order-detail-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.order-card {
  background: var(--acc-surface);
  border: 0.5px solid var(--acc-border);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: var(--acc-shadow);
}
.order-card-sticky { position: sticky; top: 90px; }

.order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--acc-border);
}
.order-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--acc-text);
  margin: 0;
  letter-spacing: 0.01em;
}
.order-card-muted {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc-text-dim);
}
.order-card-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--acc-accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.order-card-link:hover { text-decoration: underline; }

.order-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 0;
}
.order-meta-grid > div { margin: 0; }
.order-meta-grid dt {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc-text-dim);
  margin-bottom: 4px;
}
.order-meta-grid dd {
  font-size: 14px;
  color: var(--acc-text);
  margin: 0;
  font-weight: 500;
}
.order-meta-mono {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.order-tracking-empty {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--acc-surface-2);
  border-radius: 10px;
  color: var(--acc-text-muted);
}
.order-tracking-empty svg {
  width: 32px;
  height: 32px;
  color: var(--acc-accent);
  flex-shrink: 0;
}
.order-tracking-empty-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--acc-text);
  margin-bottom: 2px;
}
.order-tracking-empty-desc {
  font-size: 12px;
  color: var(--acc-text-dim);
}

.order-address {
  font-style: normal;
  font-size: 14px;
  color: var(--acc-text-muted);
  line-height: 1.8;
}
.order-address-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--acc-text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.order-address-phone {
  margin-top: 6px;
  font-size: 12px;
  color: var(--acc-text-dim);
}

/* Items list (right column) */
.order-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.order-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--acc-border);
}
.order-item:last-child { border-bottom: none; }
.order-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--acc-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--acc-border);
}
.order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.order-item-img-placeholder {
  color: var(--acc-text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-item-img-placeholder svg { width: 22px; height: 22px; }
.order-item-body { min-width: 0; }
.order-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--acc-text);
  line-height: 1.3;
}
.order-item-name a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.order-item-name a:hover { color: var(--acc-accent); }
.order-item-meta {
  font-size: 11px;
  color: var(--acc-text-dim);
  margin-top: 3px;
}
.order-item-total {
  font-size: 14px;
  font-weight: 500;
  color: var(--acc-text);
  white-space: nowrap;
}

/* Summary */
.order-summary {
  padding-top: 18px;
  border-top: 0.5px solid var(--acc-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--acc-text-muted);
}
.order-summary-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--acc-text);
  padding-top: 12px;
  margin-top: 4px;
  border-top: 0.5px solid var(--acc-border);
}

.order-card-cta {
  display: block;
  margin-top: 18px;
  text-align: center;
  width: 100%;
}

@media (max-width: 960px) {
  .order-detail-grid { grid-template-columns: 1fr; }
  .order-card-sticky { position: static; }
}
@media (max-width: 720px) {
  .order-hero { padding: 24px 20px; }
  .order-hero-num { font-size: 26px; }
  .order-hero-total { font-size: 24px; }
  .order-hero-head { flex-direction: column; }
  .order-hero-right { align-items: flex-start; text-align: left; }
  .order-card { padding: 20px; }
  .order-meta-grid { grid-template-columns: 1fr; gap: 14px; }
  .order-hero-timeline { overflow-x: auto; padding-bottom: 6px; }
}

/* =========================================================
   Shared loaders, skeletons, modals (storefront + account)
   ========================================================= */

#nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-lt));
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, width 120ms linear;
  box-shadow: 0 0 8px rgba(184, 145, 42, 0.55);
}
#nav-progress.is-active { opacity: 1; }
#nav-progress.is-done   { transition: opacity 180ms ease 80ms, width 180ms ease; opacity: 0; }

.gb-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: gb-spin 600ms linear infinite;
}
@keyframes gb-spin { to { transform: rotate(360deg); } }

button.is-loading,
.btn-primary.is-loading,
.btn-ghost.is-loading {
  position: relative;
  pointer-events: none;
}
/* Spinner sits BEFORE the label (leading) so the button text stays visible
   while loading — never blank the text out. */
button.is-loading::before,
.btn-primary.is-loading::before,
.btn-ghost.is-loading::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: gb-spin 600ms linear infinite;
}

.gb-skel {
  display: block;
  background: linear-gradient(90deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0.06) 100%);
  background-size: 200% 100%;
  animation: gb-skel-shimmer 1200ms linear infinite;
  border-radius: 4px;
}
@keyframes gb-skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Generic modal — used by quick-view and future popovers. */
.gb-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 9, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.gb-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.gb-modal-card {
  position: relative;
  background: var(--ivory);
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  border-radius: 4px;
  box-shadow: 0 24px 80px -20px rgba(0,0,0,0.4);
  transform: translateY(12px);
  transition: transform 220ms ease;
  -webkit-overflow-scrolling: touch;
}
.gb-modal-backdrop.is-open .gb-modal-card { transform: translateY(0); }
.gb-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(18, 14, 9, 0.18);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  z-index: 2;
}
.gb-modal-close:hover { background: var(--ivory); border-color: var(--ink); }
@media (max-width: 760px) {
  .gb-modal-backdrop { padding: 0; align-items: flex-end; }
  .gb-modal-card { max-height: 92vh; border-radius: 16px 16px 0 0; }
}

body.gb-modal-open { overflow: hidden; }

/* =========================================================
   Shop filters, product card actions, pagination, quick view
   ========================================================= */

/* Filter form (lives next to the existing category tabs) */
.shop-filter-form {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: flex-end;
  margin: 0;
}
.shop-filter-label {
  font-family: 'Raleway', sans-serif;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
}
.shop-filter-price {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.shop-filter-num {
  width: 56px; padding: 6px 8px;
  background: var(--ivory); border: 0.5px solid var(--parchment);
  font-family: 'Raleway', sans-serif; font-size: 11px; color: var(--espresso);
  text-align: center; outline: none; border-radius: 0;
  -moz-appearance: textfield;
}
.shop-filter-num::-webkit-outer-spin-button,
.shop-filter-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.shop-filter-num:focus { border-color: var(--espresso); }
.shop-filter-dash { color: var(--sand); font-size: 12px; }
.shop-filter-stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.12em; color: var(--espresso); cursor: pointer;
  white-space: nowrap;
}
.shop-filter-stock input { accent-color: var(--gold); }
.shop-filter-clear {
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
  border-bottom: 0.5px solid var(--sand);
  padding-bottom: 2px;
  white-space: nowrap;
}
.shop-filter-clear:hover { color: var(--espresso); border-color: var(--espresso); }
.shop-filter-form .shop-sort-select {
  padding: 8px 0;
  font-size: 10px;
}
.shop-filter-form noscript .shop-filter-apply {
  padding: 8px 18px; cursor: pointer;
  background: var(--espresso); color: var(--ivory);
  border: 0.5px solid var(--espresso);
  font-family: 'Raleway', sans-serif; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* Card structural override — was an <a>, now an <article>. */
.shop-product-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  cursor: default;
  text-decoration: none;
}
.shop-product-link {
  display: block; text-decoration: none; color: inherit;
  flex: 1;
}
.shop-product-link:hover .shop-product-bg { transform: scale(1.04); }
.shop-product-link:hover .shop-product-overlay { opacity: 1; }

/* Product action row (Quick View + Add to Bag) */
.shop-product-actions {
  display: flex; gap: 8px;
  padding: 0 18px 22px;
  background: var(--ivory);
  border-top: 0; /* info already drew the divider */
}
.shop-product-add-form { flex: 1; display: flex; margin: 0; }
.shop-product-add-form .shop-product-add-btn { width: 100%; }

.shop-product-quick-btn,
.shop-product-add-btn {
  flex: 1;
  padding: 11px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  border-radius: 0;
}
.shop-product-quick-btn {
  background: transparent;
  border: 0.5px solid var(--espresso);
  color: var(--espresso);
}
.shop-product-quick-btn:hover { background: var(--espresso); color: var(--ivory); }
.shop-product-add-btn {
  background: var(--espresso);
  border: 0.5px solid var(--espresso);
  color: var(--ivory);
}
.shop-product-add-btn:hover { background: var(--ink); }
.shop-product-add-btn-out {
  background: transparent;
  color: var(--taupe);
  border-color: var(--sand);
  cursor: not-allowed;
}

/* Pagination */
.shop-pagination {
  display: flex; justify-content: center;
  margin-top: 64px;
}
.pagination-list {
  display: flex; align-items: center; gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.pagination-list li > a,
.pagination-list li > span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 12px;
  font-family: 'Raleway', sans-serif; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none; color: var(--espresso);
  background: transparent; border: 0.5px solid transparent;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.pagination-list li > a:hover {
  background: var(--cream); border-color: var(--parchment);
}
.pagination-num.active > span {
  background: var(--espresso); color: var(--ivory);
  border-color: var(--espresso);
}
.pagination-list li.disabled > span {
  color: var(--sand); cursor: not-allowed;
}
.pagination-prev > a,
.pagination-next > a,
.pagination-prev > span,
.pagination-next > span {
  letter-spacing: 0.1em;
}

/* Quick view modal content */
.quick-view-card { max-width: 880px; min-height: 380px; }
.quick-view-body { display: contents; }
.quick-view-skeleton:not([hidden]),
.quick-view-content:not([hidden]) {
  display: grid; grid-template-columns: 1fr 1fr; width: 100%;
}
.quick-view-skeleton[hidden],
.quick-view-content[hidden],
.quick-view-error[hidden] { display: none !important; }

/* Product detail — Private Collection disclaimer */
.pd-private-notice {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 10px 14px;
  margin-bottom: 24px;
  background: rgba(184, 145, 42, 0.08);
  border-left: 2px solid var(--gold, #B8912A);
  font-family: 'Raleway', sans-serif;
}
.pd-private-notice-tag {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold, #B8912A); font-weight: 500;
}
.pd-private-notice-text {
  font-size: 12px; color: var(--umber); line-height: 1.5;
}
.quick-view-skel-image { aspect-ratio: 3/4; min-height: 320px; }
.quick-view-skel-text { padding: 36px 40px; }
.quick-view-image-wrap {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.quick-view-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.quick-view-info {
  padding: 36px 40px; display: flex; flex-direction: column;
  background: var(--ivory);
}
.quick-view-category {
  font-family: 'Raleway', sans-serif; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe);
  margin-bottom: 8px;
}
.quick-view-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 28px; color: var(--espresso);
  margin: 0 0 12px; line-height: 1.15;
}
.quick-view-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.quick-view-price {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: var(--espresso); font-weight: 300;
}
.quick-view-compare {
  font-family: 'Cormorant Garamond', serif; font-size: 16px;
  color: var(--sand); text-decoration: line-through;
}
.quick-view-description {
  font-family: 'Raleway', sans-serif; font-size: 13px;
  line-height: 1.7; color: var(--umber);
  margin: 0 0 28px;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical;
  overflow: hidden;
}
.quick-view-form { margin: 0 0 18px; }
.quick-view-add {
  display: inline-block; padding: 14px 28px;
  background: var(--espresso); color: var(--ivory);
  border: 0.5px solid var(--espresso);
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; transition: background 200ms;
}
.quick-view-add:hover { background: var(--ink); }
.quick-view-add[disabled] { background: var(--sand); border-color: var(--sand); cursor: not-allowed; }
.quick-view-detail-link {
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
  margin-top: auto; padding-top: 18px;
  border-top: 0.5px solid var(--parchment);
}
.quick-view-detail-link:hover { color: var(--espresso); }
.quick-view-error { padding: 60px 40px; text-align: center; color: var(--umber); }

@media (max-width: 760px) {
  .quick-view-skeleton,
  .quick-view-content { grid-template-columns: 1fr; }
  .quick-view-image-wrap { aspect-ratio: 4/3; }
  .quick-view-info { padding: 24px 20px; }
  .quick-view-skel-image { aspect-ratio: 4/3; min-height: 0; }
  .quick-view-skel-text { padding: 24px 20px; }
}

@media (max-width: 720px) {
  .shop-filter-form { gap: 10px; padding: 12px 0; }
  .shop-filter-num { width: 56px; }
  .shop-product-actions { padding: 0 14px 18px; gap: 6px; }
  .shop-product-quick-btn,
  .shop-product-add-btn { padding: 10px 8px; font-size: 8px; letter-spacing: 0.18em; }
}

/* Per-page selector — shop / account variant */
.shop-per-page-form { display: inline-flex; align-items: center; margin: 0; }
.shop-per-page-form .per-page-label,
.account-pagination-bar .per-page-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe);
}
.account-pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.account-pagination-bar .account-pagination { margin: 0; }
/* ══════════════════════════════════════════════
   Stripe Pay Page — minimalist white
   ══════════════════════════════════════════════ */

.checkout-pay-stripe-mount {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    padding: 18px 16px;
    margin: 14px 0 12px;
    transition: border-color 0.2s ease;
}

.checkout-pay-stripe-mount:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-pale);
}

.checkout-pay-error {
    color: #B23B3B;
    font-size: 13px;
    line-height: 1.5;
    min-height: 18px;
    margin-bottom: 12px;
    font-weight: 400;
}
.checkout-pay-error:empty { margin-bottom: 0; }

.checkout-summary-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--parchment);
}

/* tighten the existing summary against the new white card aesthetic */
.checkout-side .checkout-summary {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    padding: 24px 22px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Summary rows — flex so labels and values sit on opposite sides */
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink);
}
.checkout-summary-row span:first-child { color: var(--umber); }
.checkout-summary-row span:last-child { font-weight: 500; }
.checkout-summary-row.checkout-summary-total {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--parchment);
    font-size: 16px;
}
.checkout-summary-row.checkout-summary-total span:first-child {
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}
.checkout-summary-row.checkout-summary-total span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 400;
}

/* Pay-page hero block (the order-number + total line) — calm, generous */
.checkout-pay form#gb-pay-form .checkout-pay-note:first-of-type {
    font-size: 14px;
    color: var(--umber);
    margin-bottom: 18px;
}

/* Pay-button styling: full-width on the pay page, gold accent */
.checkout-pay-btn,
button#card-pay-btn.btn-primary {
    width: 100%;
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Verifying loader — minimalist white card */
.checkout-verifying {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}
.checkout-verifying-card {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
}
.checkout-spinner {
    color: var(--gold);
    margin-bottom: 18px;
}
.checkout-verifying-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.checkout-verifying-msg {
    color: var(--umber);
    font-size: 14px;
    line-height: 1.55;
}
.checkout-verifying-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--parchment);
    font-size: 13px;
    color: var(--taupe);
}

/* Failed / canceled return cards — same shell as verifying */
.checkout-return {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
}
.checkout-return-card {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}
.checkout-return-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.checkout-return--failed .checkout-return-title { color: #B23B3B; }
.checkout-return--canceled .checkout-return-title { color: var(--umber); }
.checkout-return-msg {
    color: var(--umber);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
}
.checkout-return-meta {
    color: var(--taupe);
    font-size: 13px;
    margin-bottom: 28px;
}
.checkout-return-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.checkout-return-actions .btn-primary {
    width: 100%;
    max-width: 260px;
    padding: 12px 22px;
}
.btn-link {
    color: var(--umber);
    text-decoration: underline;
    font-size: 13px;
}
.btn-link:hover { color: var(--gold); }

/* Confirmation page payment row */
.confirm-payment-method {
    margin-top: 6px;
    font-size: 13px;
    color: var(--umber);
}

/* Order detail (customer side) payment block */
.order-detail-section {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    padding: 22px 24px;
    margin-bottom: 22px;
}
.order-detail-section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 16px;
}
.order-detail-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}
.order-detail-payment-method {
    color: var(--ink);
    font-weight: 500;
    font-size: 14px;
}
.order-detail-payment-time {
    color: var(--taupe);
    font-size: 12px;
}
.order-detail-callout {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.order-detail-callout-error {
    background: #FBEEEE;
    color: #8C2929;
    border: 1px solid #F1D2D2;
}
.order-detail-callout-off {
    background: var(--cream);
    color: var(--umber);
}
.order-detail-callout-btn {
    margin-left: auto;
    padding: 10px 18px;
    font-size: 13px;
}
.order-detail-callout-note { flex-basis: 100%; font-size: 13px; opacity: 0.9; }

/* ══════════════════════════════════════════════
   Account orders — data table (per item)
   ══════════════════════════════════════════════ */

.account-table-wrap {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    overflow-x: auto;
    margin-top: 18px;
}
.account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.account-table thead th {
    text-align: left;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--taupe);
    padding: 14px 18px;
    border-bottom: 1px solid var(--parchment);
    background: var(--ivory);
}
.account-table thead th.num { text-align: right; }
.account-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--cream);
    vertical-align: middle;
    color: var(--ink);
}
.account-table tbody tr:last-child td { border-bottom: none; }
.account-table tbody tr:hover { background: var(--ivory); }
.account-table td.num { text-align: right; }
.account-table-name { font-weight: 500; color: var(--ink); }
.account-table-sub {
    margin-top: 3px;
    color: var(--taupe);
    font-size: 12px;
}
.account-table-link {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--parchment);
    font-weight: 500;
}
.account-table-link:hover {
    border-bottom-color: var(--gold);
    color: var(--gold);
}
.account-table-date { color: var(--umber); white-space: nowrap; }
.account-table-paystatus {
    margin-top: 4px;
    color: var(--taupe);
    font-size: 11px;
}
.account-pagination {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}
.account-empty {
    background: #fff;
    border: 1px solid var(--parchment);
    border-radius: 6px;
    padding: 56px 32px;
    text-align: center;
    margin-top: 18px;
}
.account-empty p {
    color: var(--umber);
    margin-bottom: 18px;
    font-size: 15px;
}

@media (max-width: 700px) {
    .account-table thead { display: none; }
    .account-table, .account-table tbody, .account-table tr, .account-table td { display: block; width: 100%; }
    .account-table tbody tr {
        padding: 16px;
        border-bottom: 1px solid var(--cream);
    }
    .account-table tbody td {
        padding: 4px 0;
        border-bottom: none;
        text-align: left !important;
    }
    .account-table tbody td.num { text-align: left !important; }
    .account-table tbody td:first-child { font-size: 16px; padding-bottom: 8px; }
}

/* Cash App Pay button — green to match Cash App brand */
.checkout-pay-cashapp-btn {
    background: #00D54B;
    color: #fff;
    border: none;
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease;
}
.checkout-pay-cashapp-btn:hover { background: #00B83F; }
.checkout-pay-cashapp-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* Checkout payment method radios */
.checkout-pay-method {
    border: 0.5px solid var(--parchment); padding: 16px;
    margin: 18px 0 14px; display: flex; flex-direction: column; gap: 10px;
}
.checkout-pay-method legend {
    padding: 0 8px; font-size: 9px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--taupe);
}
.checkout-pay-radio {
    display: grid; grid-template-columns: 18px 1fr; column-gap: 12px; row-gap: 2px;
    padding: 10px 12px; border: 0.5px solid var(--parchment); cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease;
}
.checkout-pay-radio:hover { border-color: var(--taupe); }
.checkout-pay-radio input { grid-row: 1 / span 2; align-self: center; }
.checkout-pay-radio-title { font-size: 13px; font-weight: 500; color: var(--espresso); }
.checkout-pay-radio-sub { font-size: 11px; color: var(--taupe); }
.checkout-pay-radio input:checked ~ .checkout-pay-radio-title { color: var(--gold); }
.checkout-pay-radio:has(input:checked) { border-color: var(--gold); background: rgba(184,145,42,0.04); }
.checkout-pay-method-note {
    font-size: 11px; color: var(--taupe); margin: 4px 0 0;
}

/* Account — Payment History */
.account-payments {
    display: flex; flex-direction: column; gap: 1px;
    background: var(--acc-border);
    margin-top: 8px;
    border: 1px solid var(--acc-border);
}
.account-payment-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr auto;
    gap: 24px; align-items: center;
    background: var(--acc-surface);
    padding: 18px 20px;
    transition: background 0.15s ease;
}
.account-payment-row:hover { background: var(--acc-surface-2); }
.account-payment-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-weight: 400;
    color: var(--acc-text);
    letter-spacing: 0.02em;
}
.account-payment-meta {
    font-size: 9px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--acc-text-dim);
    margin-bottom: 4px;
}
.account-payment-method,
.account-payment-amount {
    font-size: 13px; color: var(--acc-text);
}
.account-payment-amount {
    font-weight: 500; font-size: 15px;
}
.account-payment-tag {
    display: inline-block; padding: 6px 12px;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    border-radius: 2px;
    transition: background 0.2s ease, color 0.2s ease;
}
.account-payment-tag-ok      { background: #E5F0D6; color: #4D7C0F; }
.account-payment-tag-wait    { background: #FBEAD0; color: #8C5A0F; }
.account-payment-tag-bad     { background: #F4D8D8; color: #8A1C1C; }
.account-payment-tag-neutral { background: var(--acc-surface-2); color: var(--acc-text-dim); }
[data-theme="dark"] .account-payment-tag-ok      { background: rgba(77,124,15,0.18); color: #B5DC8A; }
[data-theme="dark"] .account-payment-tag-wait    { background: rgba(140,90,15,0.25); color: #EDC580; }
[data-theme="dark"] .account-payment-tag-bad     { background: rgba(138,28,28,0.25); color: #F2A09B; }

.account-payment-actions { text-align: right; }
.account-payment-link {
    font-size: 11px; letter-spacing: 0.08em;
    color: var(--acc-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}
.account-payment-link:hover { border-color: var(--acc-accent); }

@media (max-width: 900px) {
    .account-payment-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
    }
    .account-payment-actions { grid-column: 1 / -1; text-align: left; }
}
@media (max-width: 540px) {
    .account-payment-row { grid-template-columns: 1fr; }
}

/* Checkout shipping restriction notice */
.checkout-ship-notice {
    margin: 0 0 16px; padding: 12px 14px;
    background: rgba(184,145,42,0.08);
    border: 0.5px solid var(--gold);
    font-size: 12px; letter-spacing: 0.04em; color: var(--espresso);
}
.checkout-ship-notice strong { color: var(--gold); }

/* Manual payment customer page */
.manual-pay { padding: 160px 24px 100px; background: var(--ivory); }
.manual-pay-inner { max-width: 1080px; margin: 0 auto; }
.manual-pay-eyebrow {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe);
    margin-bottom: 12px;
}
.manual-pay-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: 48px; line-height: 1; color: var(--espresso); margin: 0 0 32px;
}
.manual-pay-title em { font-style: italic; color: var(--gold); }
.manual-pay-banner {
    padding: 14px 16px; margin-bottom: 24px; font-size: 13px;
    border: 0.5px solid;
}
.manual-pay-banner-success { color: #3a5a25; border-color: #cad8b8; background: #f3f7ec; }
.manual-pay-banner-error   { color: #8a1c1c; border-color: #d9b7b7; background: #faf0f0; }
.manual-pay-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.manual-pay-section-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: 22px; color: var(--espresso); margin: 0 0 18px;
}
.manual-pay-handle-card {
    background: var(--espresso); color: var(--ivory);
    padding: 24px; margin-bottom: 18px;
}
.manual-pay-handle-label {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.manual-pay-handle-value {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
    -webkit-user-select: all;
    user-select: all;
}
.manual-pay-handle-sub {
    font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px;
}
.manual-pay-amount {
    padding: 14px 0; border-bottom: 0.5px solid var(--parchment);
    display: flex; justify-content: space-between; align-items: baseline;
}
.manual-pay-amount-label {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe);
}
.manual-pay-amount-value {
    font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--espresso);
    -webkit-user-select: all;
    user-select: all;
}
.manual-pay-instructions {
    margin: 18px 0 0; font-size: 13px; color: var(--espresso); line-height: 1.7;
}
.manual-pay-expires {
    margin: 14px 0 0; font-size: 11px; color: #8a1c1c;
}
.manual-pay-form { display: flex; flex-direction: column; gap: 18px; }
.manual-pay-field { display: flex; flex-direction: column; gap: 6px; }
.manual-pay-field label {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe);
}
.manual-pay-field input, .manual-pay-field textarea {
    padding: 12px 14px; background: var(--ivory);
    border: 0.5px solid var(--parchment);
    font-family: 'Raleway', sans-serif; font-size: 13px; color: var(--espresso);
}
.manual-pay-field input:focus, .manual-pay-field textarea:focus {
    outline: none; border-color: var(--espresso);
}
/* File input — restyle the native "Choose file" button to match the brand.
   Uses ::file-selector-button (all modern browsers); native input otherwise. */
.manual-pay-field input[type="file"] {
    padding: 10px 12px; font-size: 12px; color: var(--taupe); cursor: pointer;
}
.manual-pay-field input[type="file"]::file-selector-button {
    margin-right: 14px; padding: 9px 18px;
    background: var(--espresso); color: var(--ivory);
    border: 0; font-family: 'Raleway', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: background 0.15s ease;
}
.manual-pay-field input[type="file"]::file-selector-button:hover { background: #1f1814; }
.manual-pay-optional { font-size: 9px; color: var(--taupe); }
.manual-pay-submit {
    padding: 16px 32px; background: var(--espresso); color: var(--ivory);
    border: 0; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    cursor: pointer; transition: background 0.15s ease;
}
.manual-pay-submit:hover { background: #1f1814; }
.manual-pay-switch { margin-top: 16px; text-align: center; }
.manual-pay-switch-link {
    background: none; border: 0; font-size: 12px; color: var(--gold);
    text-decoration: underline; cursor: pointer; padding: 0;
}
.manual-pay-pending-card {
    border: 0.5px solid var(--parchment); padding: 32px; max-width: 640px;
}
.manual-pay-submitted { display: grid; grid-template-columns: max-content 1fr; gap: 8px 16px; margin-top: 18px; }
.manual-pay-submitted dt {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe);
}
.manual-pay-submitted dd { margin: 0; font-size: 13px; color: var(--espresso); }
@media (max-width: 900px) {
    .manual-pay-grid { grid-template-columns: 1fr; gap: 32px; }
    .manual-pay-title { font-size: 36px; }
}

/* Customer auth pages (login / register) — centered single column */
.gb-auth {
    padding: 180px 24px 120px;
    border-bottom: 0.5px solid var(--parchment);
    display: flex; justify-content: center;
}
.gb-auth-panel {
    width: 100%; max-width: 460px;
    display: flex; flex-direction: column;
}
.gb-auth-eyebrow {
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--taupe); margin-bottom: 18px;
}
.gb-auth-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: 56px; line-height: 1; color: var(--espresso);
    margin: 0 0 40px;
}
.gb-auth-title em { font-style: italic; color: var(--gold, #B89968); }
.gb-auth-alert {
    padding: 14px 16px; margin-bottom: 24px;
    font-size: 12px; letter-spacing: 0.04em;
    border: 0.5px solid;
}
.gb-auth-alert-error   { color: #8a1c1c; border-color: #d9b7b7; background: #faf0f0; }
.gb-auth-alert-success { color: #3a5a25; border-color: #cad8b8; background: #f3f7ec; }

.gb-auth-form { display: flex; flex-direction: column; gap: 22px; }
.gb-auth-field { display: flex; flex-direction: column; gap: 8px; }
.gb-auth-field label {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--taupe);
}
.gb-auth-inline-link {
    font-size: 10px; letter-spacing: 0.06em; text-transform: none;
    color: var(--taupe); text-decoration: underline;
}
.gb-auth-inline-link:hover { color: var(--espresso); }
.gb-auth-field input {
    padding: 14px 16px;
    background: var(--ivory);
    border: 0.5px solid var(--parchment);
    font-family: 'Raleway', sans-serif; font-weight: 300;
    font-size: 13px; color: var(--espresso);
    letter-spacing: 0.04em;
    transition: border-color 0.15s ease;
}
.gb-auth-field input:focus {
    outline: none; border-color: var(--espresso);
}
.gb-auth-submit {
    margin-top: 12px; padding: 16px 32px;
    background: var(--espresso); color: var(--ivory);
    border: none; cursor: pointer;
    font-family: 'Raleway', sans-serif; font-weight: 500;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    transition: background 0.15s ease;
}
.gb-auth-submit:hover { background: #1f1814; }
.gb-auth-alt {
    margin-top: 36px; padding-top: 24px;
    border-top: 0.5px solid var(--parchment);
    font-size: 12px; letter-spacing: 0.04em; color: var(--taupe);
}
.gb-auth-alt a {
    color: var(--espresso); text-decoration: underline; margin-left: 6px;
    font-weight: 500;
}
.gb-auth-error {
    color: #b3261e; font-size: 11px; letter-spacing: 0.04em; margin-top: 2px;
    text-transform: none;
}

.gb-auth-aside {
    background: var(--espresso); color: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    padding: 80px 64px; position: relative; overflow: hidden;
}
.gb-auth-aside::before {
    content: ''; position: absolute; inset: 24px;
    border: 0.5px solid rgba(255,255,255,0.12); pointer-events: none;
}
.gb-auth-aside-inner {
    max-width: 420px; text-align: center; position: relative;
}
.gb-auth-aside-eyebrow {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 20px; letter-spacing: 0.32em; text-transform: uppercase;
    font-weight: 300; opacity: 0.85;
}
.gb-auth-ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 24px 0 32px;
}
.gb-auth-ornament-line {
    width: 60px; height: 0.5px; background: rgba(255,255,255,0.5);
}
.gb-auth-ornament-dia {
    width: 6px; height: 6px; background: var(--gold, #B89968);
    transform: rotate(45deg);
}
.gb-auth-aside-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: 48px; line-height: 1.1;
    margin: 0 0 28px;
}
.gb-auth-aside-title em { font-style: italic; color: var(--gold, #B89968); }
.gb-auth-aside-tag {
    font-size: 13px; line-height: 1.7; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7); margin: 0;
}

@media (max-width: 600px) {
    .gb-auth { padding: 140px 20px 80px; }
    .gb-auth-title { font-size: 42px; margin-bottom: 32px; }
}

/* Password show/hide toggle + strength meter */
.pw-wrap { position: relative; display: block; }
.pw-wrap > input { width: 100%; padding-right: 44px; }
.pw-toggle {
    position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
    background: none; border: 0; padding: 4px; cursor: pointer;
    color: var(--taupe); display: inline-flex; align-items: center;
}
.pw-toggle:hover { color: var(--espresso); }
.pw-toggle:focus { outline: 1px dashed var(--taupe); outline-offset: 2px; }

.pw-meter { margin-top: 10px; }
.pw-meter-bar {
    height: 4px; background: var(--parchment);
    border-radius: 2px; overflow: hidden;
}
.pw-meter-bar span {
    display: block; height: 100%; width: 0;
    transition: width 0.18s ease, background 0.18s ease;
}
.pw-meter-bar span.is-empty  { background: transparent; }
.pw-meter-bar span.is-weak   { background: #b3261e; }
.pw-meter-bar span.is-fair   { background: #d97706; }
.pw-meter-bar span.is-good   { background: #ca8a04; }
.pw-meter-bar span.is-strong { background: #4d7c0f; }

.pw-meter-rules {
    list-style: none; padding: 0; margin: 10px 0 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px;
    font-size: 11px; color: var(--taupe); letter-spacing: 0.04em;
}
.pw-meter-rules li { display: flex; align-items: center; gap: 8px; }
.pw-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--parchment); flex-shrink: 0;
    transition: background 0.18s ease;
}
.pw-meter-rules li.is-ok { color: #4d7c0f; }
.pw-meter-rules li.is-ok .pw-dot { background: #4d7c0f; }

.pw-match {
    margin-top: 8px; font-size: 11px; letter-spacing: 0.04em; color: var(--taupe);
    min-height: 14px; display: inline-flex; align-items: center; gap: 6px;
}
.pw-match.is-ok  { color: #4d7c0f; }
.pw-match.is-bad { color: #b3261e; }
.pw-match svg { flex-shrink: 0; }

/* ============================================================ */
/* MEMBERS TEASER                                                */
/* ============================================================ */
.members-teaser {
    max-width: 720px;
    margin: 0 auto 120px;
    padding: 160px 24px 0;
    text-align: center;
}
.members-teaser-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    margin-bottom: 18px;
}
.members-teaser-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 400;
    color: var(--espresso, #1E1610);
    margin: 0 0 24px;
    line-height: 1.05;
}
.members-teaser-title em { font-style: italic; color: var(--gold, #B89968); }
.members-teaser-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted, #5C4A3C);
    max-width: 540px;
    margin: 0 auto 36px;
}
.members-teaser-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.members-teaser-btn {
    min-width: 200px;
}
.members-teaser-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: left;
}
.members-teaser-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.members-teaser-perk-icon {
    font-size: 24px;
    line-height: 1;
}
.members-teaser-perk strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--espresso, #1E1610);
}
.members-teaser-perk span {
    font-size: 13px;
    color: var(--text-muted, #5C4A3C);
    line-height: 1.5;
}

/* ============================================================ */
/* PUBLIC LANDING COLLECTION                                     */
/* ============================================================ */
.landing-hero {
    max-width: 880px;
    margin: 0 auto 32px;
    padding: 140px 24px 0;
    text-align: center;
}
.landing-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    margin-bottom: 16px;
}
.landing-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    color: var(--espresso, #1E1610);
    margin: 0 0 18px;
    line-height: 1.05;
}
.landing-hero-title em { font-style: italic; color: var(--gold, #B89968); }
.landing-hero-lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted, #5C4A3C);
    max-width: 580px;
    margin: 0 auto;
}

.landing-grid-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}
.landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.landing-card {
    background: var(--ivory, #FAF8F4);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.landing-card-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.landing-card-img-placeholder {
    color: var(--text-muted, #5C4A3C);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.landing-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.landing-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--espresso, #1E1610);
    margin: 0;
    line-height: 1.2;
}
.landing-card-price {
    font-size: 18px;
    font-weight: 500;
    color: var(--gold, #B89968);
}
.landing-card-desc {
    font-size: 13px;
    color: var(--text-muted, #5C4A3C);
    line-height: 1.5;
    margin: 0;
}
.landing-card-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 22px;
    font-size: 11px;
    letter-spacing: 0.24em;
}
.landing-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted, #5C4A3C);
}

.landing-cta {
    max-width: 720px;
    margin: 0 auto 120px;
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.landing-cta-text {
    margin: 0 0 18px;
    font-size: 15px;
    color: var(--text-muted, #5C4A3C);
}

/* ============================================================ */
/* CUSTOMER DASHBOARD — Members Shop highlighted card            */
/* ============================================================ */
.account-members-card {
    display: block;
    background: linear-gradient(135deg, var(--gold, #B89968) 0%, #9C7E50 100%);
    color: #FAF8F4;
    padding: 22px 26px;
    border-radius: 10px;
    margin: 0 0 24px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 14px rgba(184, 153, 104, 0.25);
}
.account-members-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 153, 104, 0.35);
    color: #FAF8F4;
    text-decoration: none;
}
.account-members-card-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}
.account-members-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
}
.account-members-card-desc {
    font-size: 13px;
    opacity: 0.92;
    margin-bottom: 14px;
    line-height: 1.5;
}
.account-members-card-cta {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Sidebar highlighted Members Shop link ── */
.account-sidebar-link-featured {
    background: var(--gold, #B89968) !important;
    color: #FAF8F4 !important;
    font-weight: 500;
    margin: 2px 0;
}
.account-sidebar-link-featured:hover {
    background: #9C7E50 !important;
    color: #FAF8F4 !important;
}

/* ── Contact form inquiry banner ── */
.contact-alert-info {
    background: #F4EFE6;
    color: #5C4A3C;
    border: 1px solid #D9CFC0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ============================================================ */
/* LANDING-PAGE HOME (public-facing, no categories)              */
/* ============================================================ */

.lp-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 64px 80px;
    align-items: center;
    min-height: calc(100vh - 36px);
}
.lp-hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    background: rgba(184, 153, 104, 0.1);
    padding: 6px 12px;
    margin-bottom: 24px;
}
.lp-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 400;
    color: var(--espresso, #1E1610);
    margin: 0 0 24px;
    line-height: 1.05;
}
.lp-hero-title em { font-style: italic; color: var(--gold, #B89968); }
.lp-hero-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted, #5C4A3C);
    margin: 0 0 36px;
    max-width: 480px;
}
.lp-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.lp-hero-image-wrap {
    position: relative;
    background: #fff;
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.lp-hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 560px;
    object-fit: contain;
}
.lp-hero-caption {
    position: absolute;
    left: 32px;
    bottom: 32px;
    background: #fff;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.lp-hero-caption-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    margin-bottom: 6px;
}
.lp-hero-caption-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--espresso, #1E1610);
}
.lp-hero-caption-sub {
    font-size: 12px;
    color: var(--text-muted, #5C4A3C);
    margin-top: 2px;
}

.lp-featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 64px;
    background: #fff;
}
.lp-featured-head {
    text-align: center;
    margin-bottom: 48px;
}
.lp-featured-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    margin-bottom: 12px;
}
.lp-featured-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    color: var(--espresso, #1E1610);
    margin: 0 0 14px;
    line-height: 1.1;
}
.lp-featured-title em { font-style: italic; color: var(--gold, #B89968); }
.lp-featured-lead {
    font-size: 14px;
    color: var(--text-muted, #5C4A3C);
    max-width: 540px;
    margin: 0 auto;
}
.lp-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.lp-featured-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #FAF8F4;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
}
.lp-featured-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lp-featured-card-body {
    padding: 18px 20px 22px;
}
.lp-featured-card-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--espresso, #1E1610);
    margin-bottom: 8px;
    line-height: 1.2;
}
.lp-featured-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}
.lp-featured-card-price {
    font-size: 16px;
    color: var(--espresso, #1E1610);
    font-weight: 500;
}
.lp-featured-card-cta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
}
.lp-featured-cta {
    text-align: center;
    margin-top: 40px;
}

.lp-why {
    background: #F4EFE6;
    padding: 80px 24px;
}
.lp-why-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.lp-why-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    margin-bottom: 12px;
}
.lp-why-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    color: var(--espresso, #1E1610);
    margin: 0 0 18px;
    line-height: 1.1;
}
.lp-why-title em { font-style: italic; color: var(--gold, #B89968); }
.lp-why-lead {
    font-size: 15px;
    color: var(--text-muted, #5C4A3C);
    line-height: 1.6;
}
.lp-why-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    text-align: center;
}
.lp-why-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 36px;
    color: var(--gold, #B89968);
    margin-bottom: 14px;
}
.lp-why-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: var(--espresso, #1E1610);
    margin-bottom: 10px;
}
.lp-why-desc {
    font-size: 13px;
    color: var(--text-muted, #5C4A3C);
    line-height: 1.6;
    margin: 0;
}

.lp-members-cta {
    background: var(--espresso, #1E1610);
    color: #FAF8F4;
    padding: 80px 24px;
    text-align: center;
}
.lp-members-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    margin: 0 0 18px;
    line-height: 1.15;
}
.lp-members-cta-lead {
    font-size: 15px;
    color: rgba(250, 248, 244, 0.75);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 32px;
}
.lp-members-cta-btn {
    min-width: 220px;
}

@media (max-width: 900px) {
    .lp-hero {
        grid-template-columns: 1fr;
        padding: 130px 24px 60px;
        gap: 40px;
        min-height: auto;
    }
    .lp-hero-right { order: -1; }
    .lp-hero-image-wrap { padding: 20px; }
    .lp-hero-image-wrap img { max-height: 380px; }
    .lp-featured { padding: 60px 24px; }
}

/* ============================================================ */
/* Nav v2 — icon buttons + Account chip                          */
/* ============================================================ */
.nav-actions-v2 {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}

.nav-iconbtn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--espresso, #1E1610);
    cursor: pointer;
    border: none;
    background: transparent;
    border-radius: 50%;
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
    padding: 0;
    text-decoration: none;
}
.nav-iconbtn:hover {
    background: var(--parchment, #E6DDD0);
    color: var(--espresso, #1E1610);
    text-decoration: none;
}
.nav-iconbtn svg { width: 19px; height: 19px; display: block; }
.nav-iconbtn-badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--gold, #B89968);
    color: #FAF8F4;
    font-size: 9px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0;
}

.nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    border: 1px solid var(--gold, #B89968);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold, #B89968);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
}
.nav-chip:hover {
    background: var(--gold, #B89968);
    color: #FAF8F4;
    text-decoration: none;
}
.nav-chip-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold, #B89968);
    color: #FAF8F4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-chip:hover .nav-chip-avatar {
    background: #FAF8F4;
    color: var(--gold, #B89968);
}
.nav-chip-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-chip-caret {
    font-size: 10px;
    opacity: 0.85;
    margin-left: 2px;
}
.nav-chip-guest {
    padding: 8px 16px;
    color: var(--espresso, #1E1610);
    border-color: var(--espresso, #1E1610);
}
.nav-chip-guest:hover {
    background: var(--espresso, #1E1610);
    color: #FAF8F4;
}

@media (max-width: 720px) {
    .nav-chip-name { display: none; }
    .nav-chip { padding: 6px 8px 6px 6px; }
    .nav-chip-caret { display: none; }
    .nav-chip-guest {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.12em;
        gap: 4px;
    }
    .nav-chip-guest svg {
        width: 12px; height: 12px;
        margin-right: 0 !important;
    }
}

.nav-account {
    position: relative;
    display: inline-block;
}
.nav-account-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    padding: 8px 0;
    z-index: 200;
    animation: gbFadeIn 0.12s ease;
}
@keyframes gbFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-account-head {
    padding: 14px 18px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 6px;
}
.nav-account-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--espresso, #1E1610);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-account-email {
    font-size: 11px;
    color: var(--text-muted, #5C4A3C);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-account-link {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--espresso, #1E1610);
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
}
.nav-account-link:hover {
    background: #F4EFE6;
    color: var(--espresso, #1E1610);
    text-decoration: none;
}
.nav-account-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 6px 0;
}
.nav-account-signout {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 9px 18px;
    font: inherit;
    font-size: 13px;
    color: #B3261E;
    text-align: left;
    cursor: pointer;
}
.nav-account-signout:hover { background: #FDF1F0; }

/* ── Sidebar Private Shop highlight card ── */
.account-sidebar-card {
    display: block;
    background: linear-gradient(135deg, var(--gold, #B89968) 0%, #9C7E50 100%);
    color: #FAF8F4;
    padding: 16px 18px;
    border-radius: 8px;
    margin: 12px 16px 18px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(184, 153, 104, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.account-sidebar-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(184, 153, 104, 0.32);
    color: #FAF8F4;
    text-decoration: none;
}
.account-sidebar-card-eyebrow {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 6px;
}
.account-sidebar-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
}
.account-sidebar-card-cta {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.95;
}


/* ============================================================
   Admin "viewing as admin" notice strip — top of storefront
   Renders only when an admin user is signed in but hitting a
   storefront URL. Tells them the storefront is read-only and
   offers a fast jump back to /admin or a sign-out form.
============================================================ */
.admin-viewing-strip {
    position: relative;
    background: linear-gradient(90deg, #2c2417 0%, #3d2f1d 100%);
    color: #d4af37;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    font-family: 'Raleway', sans-serif;
    font-size: 12.5px;
    z-index: 10000;
}
.admin-viewing-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.admin-viewing-strip-label {
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #f0c668;
}
.admin-viewing-strip-msg {
    color: rgba(212, 175, 55, 0.85);
    flex: 1 1 auto;
    min-width: 200px;
}
.admin-viewing-strip-cta {
    color: #f0c668;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 10.5px;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease;
}
.admin-viewing-strip-cta:hover {
    background: rgba(212, 175, 55, 0.16);
    color: #fff5d6;
}
.admin-viewing-strip-form {
    display: inline-block;
    margin: 0;
}
.admin-viewing-strip-signout {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 10.5px;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.18s ease, color 0.18s ease;
}
.admin-viewing-strip-signout:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 720px) {
    .admin-viewing-strip-inner {
        padding: 8px 16px;
        gap: 10px;
        font-size: 11.5px;
    }
    .admin-viewing-strip-msg {
        flex: 1 1 100%;
        order: 3;
    }
}

/* ============================================================
   Shop page mobile spacing tighten — phones were getting ~40 px
   of horizontal padding (filter bar + grid section both 20 px),
   eating real-estate from product cards. Bring it down so cards
   reach closer to the viewport edge.
============================================================ */
@media (max-width: 600px) {
    .shop-grid-section { padding: 36px 12px 56px !important; }
    .shop-filter-bar { padding: 0 12px !important; }
    .shop-hero { padding-left: 16px; padding-right: 16px; }
    .shop-hero-title { font-size: clamp(38px, 11vw, 56px); }
}
@media (max-width: 480px) {
    .shop-grid-section { padding: 28px 10px 48px !important; }
    .shop-filter-bar { padding: 0 10px !important; }
    .shop-product-grid { gap: 12px !important; }
}

/* ============================================================
   Shop AJAX filter loading state — keeps the grid in place but
   dims and disables interaction while a fetch is in flight.
============================================================ */
.shop-layout.is-loading {
    pointer-events: none;
    position: relative;
}
.shop-layout.is-loading .shop-main {
    opacity: 0.55;
    transition: opacity 0.15s ease;
}
.shop-layout.is-loading .shop-brand-sidebar {
    opacity: 0.55;
}
.shop-layout.is-loading::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(212, 175, 55, 0.25);
    border-top-color: var(--accent, #d4af37);
    border-radius: 50%;
    animation: shopFilterSpin 0.8s linear infinite;
    z-index: 5;
}
@keyframes shopFilterSpin {
    to { transform: translateX(-50%) rotate(360deg); }
}

/* ============================================================
   Shop AJAX progressive reveal
   Phase 1: skeleton placeholder cards while data is fetched.
   Phase 2: real cards fade-in one by one (cascade) so user feels
            the page is actively rendering, not just popping.
============================================================ */
.shop-skeleton-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(46, 36, 23, 0.04);
}
.shop-skeleton-img {
    aspect-ratio: 1 / 1.15;
    background: linear-gradient(110deg, #ece5d6 8%, #f4eee0 18%, #ece5d6 33%);
    background-size: 200% 100%;
    animation: shopSkelShimmer 1.4s linear infinite;
}
.shop-skeleton-meta {
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.shop-skeleton-line {
    height: 11px;
    border-radius: 3px;
    background: linear-gradient(110deg, #ece5d6 8%, #f4eee0 18%, #ece5d6 33%);
    background-size: 200% 100%;
    animation: shopSkelShimmer 1.4s linear infinite;
}
.shop-skeleton-line.is-short { width: 38%; height: 9px; }
.shop-skeleton-line.is-mid   { width: 72%; }
.shop-skeleton-line.is-price { width: 28%; margin-top: 4px; }
@keyframes shopSkelShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Cascade reveal on real cards once they replace skeletons. */
.shop-product-grid.is-revealing .shop-product-card {
    opacity: 0;
    transform: translateY(8px);
    animation: shopCardReveal 0.42s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
@keyframes shopCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tighten skeleton padding on mobile to match real cards. */
@media (max-width: 600px) {
    .shop-skeleton-meta { padding: 10px 10px 14px; gap: 6px; }
}

/* ============================================================
   Page-offline notice — rendered when master toggles a storefront
   page's is_visible flag off. Branded, replaces content.
============================================================ */
.page-offline {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(180deg, #faf6ed 0%, #f5efe2 100%);
}
.page-offline-inner {
    max-width: 520px;
    text-align: center;
}
.page-offline-eyebrow {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 18px;
}
.page-offline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #2e2417;
}
.page-offline-title em { font-style: italic; color: #d4af37; }
.page-offline-message {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(46, 36, 23, 0.62);
    margin-bottom: 32px;
}

/* ════════════════════════════════════════════════════════════════
   SHOP — 6-per-row grid + click-to-open filter drawer
   (final-revisions). Rules appended last so they win the cascade over
   the earlier 4-col grid + sidebar layout without needing !important.
═══════════════════════════════════════════════════════════════════ */

/* Full-width grid section (the old 180px brand column is gone — filters
   moved into the drawer). */
.shop-grid-section { padding: 28px 48px 100px; }
.shop-main { width: 100%; min-width: 0; }
.shop-product-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px; }

/* Slightly less-tall image so 6 narrow cards don't read as skinny columns. */
.shop-product-grid .shop-product-img { aspect-ratio: 4 / 5; }

/* ── Toolbar (Filters button + sort/per-page) ───────────────────── */
.shop-toolbar {
  position: sticky; top: 108px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 12px 48px;
  background: rgba(250, 248, 244, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--parchment);
}
.shop-filter-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px;
  background: #fff; border: 0.5px solid var(--espresso);
  color: var(--espresso);
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; border-radius: 0;
  transition: background .2s, color .2s;
}
.shop-filter-toggle:hover { background: var(--espresso); color: var(--ivory); }
.shop-filter-toggle-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; background: var(--gold); color: #fff;
  font-size: 9px; letter-spacing: 0; opacity: 0;
}
.shop-filter-toggle-count.is-on { opacity: 1; }
.shop-filter-toggle:hover .shop-filter-toggle-count { background: var(--ivory); color: var(--espresso); }
.shop-toolbar-right { display: flex; align-items: center; gap: 18px; }

/* ── Drawer + backdrop ──────────────────────────────────────────── */
.shop-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(30, 22, 16, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  /* Above the sticky nav (#mainNav is z-index 9700 on mobile) so the header
     doesn't bleed through the open filter drawer. */
  z-index: 9750;
}
.shop-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.shop-drawer {
  position: fixed; top: 0; bottom: 0; left: 0;
  width: 360px; max-width: 88vw;
  background: var(--ivory);
  transform: translateX(-100%);
  transition: transform .28s ease;
  z-index: 9800;
  display: flex; flex-direction: column;
  box-shadow: 0 0 60px rgba(30, 22, 16, 0.3);
}
.shop-drawer.is-open { transform: translateX(0); }
.shop-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 0.5px solid var(--parchment);
}
.shop-drawer-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 24px; color: var(--espresso);
}
.shop-drawer-close {
  background: none; border: 0; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--taupe);
  padding: 0 4px;
}
.shop-drawer-close:hover { color: var(--espresso); }
.shop-drawer-body { flex: 1; overflow-y: auto; padding: 22px 26px; }
.shop-drawer-group { margin-bottom: 26px; }
.shop-drawer-label {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 12px;
}

/* Category tabs render vertically in the drawer. */
.shop-drawer .shop-filter-left { flex-direction: column; align-items: stretch; overflow: visible; gap: 0; }
.shop-drawer .shop-filter-tab {
  padding: 10px 0; border-bottom: 0.5px solid transparent;
  border-left: 2px solid transparent; padding-left: 10px;
  font-size: 11px;
}
.shop-drawer .shop-filter-tab.active { border-bottom-color: transparent; border-left-color: var(--espresso); }

/* Brand filter renders as wrapping pill chips in the drawer, with breathing
   room between the brand name and its count. */
.shop-drawer .shop-brand-sidebar { position: static; max-height: none; overflow: visible; }
.shop-drawer .shop-brand-sidebar-title { margin-bottom: 4px; }
.shop-drawer .shop-brand-list { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 12px; }
.shop-drawer .shop-brand-list li {
  background: #fff;
  border: 0.5px solid var(--parchment);
  border-radius: 999px;
}
.shop-drawer .shop-brand-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-bottom: 0;
  justify-content: flex-start;
  font-size: 13.5px;
}
.shop-drawer .shop-brand-link.is-active { background: var(--espresso); border-radius: 999px; }
.shop-drawer .shop-brand-link.is-active,
.shop-drawer .shop-brand-link.is-active .shop-brand-count { color: var(--ivory); }
.shop-drawer .shop-brand-count { margin-left: 2px; font-size: 10.5px; }

.shop-drawer-foot {
  display: flex; gap: 12px; align-items: center;
  padding: 18px 26px;
  border-top: 0.5px solid var(--parchment);
}
.shop-drawer-clear {
  flex: 0 0 auto;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
  border-bottom: 0.5px solid var(--sand); padding-bottom: 2px;
}
.shop-drawer-clear:hover { color: var(--espresso); border-color: var(--espresso); }
.shop-drawer-apply {
  flex: 1;
  padding: 14px 18px;
  background: var(--espresso); border: 0.5px solid var(--espresso); color: var(--ivory);
  font-family: 'Raleway', sans-serif; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
}
.shop-drawer-apply:hover { background: var(--ink); }

/* ── Responsive: 6 → 5 → 4 → 3 → 2 ──────────────────────────────── */
@media (max-width: 1280px) {
  .shop-product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 1080px) {
  .shop-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .shop-toolbar { padding: 12px 32px; }
  .shop-grid-section { padding: 24px 32px 72px; }
}
@media (max-width: 820px) {
  .shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 560px) {
  /* 3 products per row on mobile (owner request). At this density the
     per-card action buttons + category label are too cramped, so we drop
     them and keep a clean image + name + price card — tapping the card opens
     the product page (where Add to Bag / Quick View live). */
  .shop-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 9px; }
  .shop-toolbar { padding: 10px 16px; top: 72px; }
  .shop-grid-section { padding: 18px 12px 64px; }
  /* Let the search + sort + per-page controls wrap and shrink instead of
     overflowing the viewport ("96 /" getting clipped on the right). */
  .shop-toolbar-right { gap: 8px 10px; flex-wrap: wrap; justify-content: flex-end; min-width: 0; max-width: 100%; }
  .shop-toolbar-right .shop-search-input { flex: 1 1 130px; min-width: 0; }
  .shop-toolbar-right .shop-sort-select { flex: 0 1 auto; min-width: 0; max-width: 48%; }
  .shop-product-grid .shop-product-card { background: transparent; }
  .shop-product-grid .shop-product-img { aspect-ratio: 3 / 4; border-radius: 4px; }
  .shop-product-grid .shop-product-info { padding: 8px 2px 2px; background: transparent; border-top: 0; min-height: 0; }
  .shop-product-grid .shop-product-category { display: none; }
  .shop-product-grid .shop-product-name { font-size: 11.5px; line-height: 1.25; min-height: 0; margin-bottom: 3px; -webkit-line-clamp: 2; }
  .shop-product-grid .shop-product-price { font-size: 12.5px; }
  .shop-product-grid .shop-product-compare { font-size: 10.5px; }
  .shop-product-grid .shop-product-actions { display: none; }
  .shop-product-grid .shop-product-wish-form { top: 7px; right: 7px; }
  .shop-product-grid .shop-product-wish-btn { width: 26px; height: 26px; }
  .shop-product-grid .shop-product-badge { font-size: 7px; padding: 3px 6px; top: 8px; left: 8px; }
  /* Pagination can have many page links — wrap instead of overflowing the
     viewport (which caused horizontal scroll + the grid looking cut-off). */
  .shop-pagination { overflow: hidden; max-width: 100%; }
  .shop-pagination .pagination-list { flex-wrap: wrap; max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   CHECKOUT — address autocomplete dropdown + saved-address picker
   (final-revisions)
═══════════════════════════════════════════════════════════════════ */
.checkout-autocomplete { position: relative; }
.checkout-ac-spin {
  position: absolute; right: 14px; top: 38px;
  width: 15px; height: 15px;
  border: 2px solid var(--parchment);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: gpsSpin 0.8s linear infinite;
  display: none;
}
.checkout-autocomplete.is-loading .checkout-ac-spin { display: block; }
@keyframes gpsSpin { to { transform: rotate(360deg); } }

.checkout-ac-drop {
  position: absolute; left: 0; right: 0; top: calc(100% - 18px);
  z-index: 40;
  background: #fff;
  border: 0.5px solid var(--parchment);
  box-shadow: 0 12px 30px rgba(46, 36, 23, 0.12);
  max-height: 300px; overflow-y: auto;
  display: none;
}
.checkout-ac-drop.is-open { display: block; }
.checkout-ac-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 0.5px solid var(--parchment);
}
.checkout-ac-item:last-child { border-bottom: 0; }
.checkout-ac-item:hover,
.checkout-ac-item.is-active { background: var(--ivory); }
.checkout-ac-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.checkout-ac-main { display: block; font-size: 14px; color: var(--espresso); }
.checkout-ac-sub  { display: block; font-size: 12px; color: var(--taupe); margin-top: 2px; }

.checkout-saved-pick { margin-bottom: 18px; }

/* ── Shop card polish for the 6-up grid (final-revisions) ─────────────
   Three fixes:
   1. Reserve two lines for the product name so every card in a row is the
      same height — kills the uneven beige "filler band" above the buttons.
   2. Card background = ivory (was cream) so any residual flex grow-space
      matches the info/action panels and reads as one seamless surface.
   3. Quick View / Add to Bag / Choose Size: equal height, centred, tighter
      type so "ADD TO BAG" stops wrapping into a ragged 3-line block. */
.shop-product-grid .shop-product-card { background: var(--ivory); }
.shop-product-grid .shop-product-name {
  min-height: 2.5em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-grid .shop-product-actions {
  gap: 6px;
  padding: 0 14px 18px;
}
.shop-product-grid .shop-product-quick-btn,
.shop-product-grid .shop-product-add-btn {
  min-height: 40px;
  padding: 4px 6px;
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 8.5px; letter-spacing: 0.1em; line-height: 1.25;
}
@media (max-width: 1280px) {
  .shop-product-grid .shop-product-quick-btn,
  .shop-product-grid .shop-product-add-btn { font-size: 8px; letter-spacing: 0.08em; padding: 4px 4px; }
}

/* ════════════════════════════════════════════════════════════════
   Shared address autocomplete dropdown (.gb-ac-*) — used by checkout
   and the account address book. Generated by address-autocomplete.js.
═══════════════════════════════════════════════════════════════════ */
.gb-ac-host { position: relative; }
.gb-ac-spin {
  position: absolute; right: 14px; top: 38px;
  width: 15px; height: 15px;
  border: 2px solid var(--parchment);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: gpsSpin 0.8s linear infinite;
  display: none;
}
.gb-ac-host.is-loading .gb-ac-spin { display: block; }
.gb-ac-drop {
  position: absolute; left: 0; right: 0; top: calc(100% + 2px);
  z-index: 40;
  background: #fff;
  border: 0.5px solid var(--parchment);
  box-shadow: 0 12px 30px rgba(46, 36, 23, 0.12);
  max-height: 300px; overflow-y: auto;
  display: none;
}
.gb-ac-drop.is-open { display: block; }
.gb-ac-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 0.5px solid var(--parchment);
}
.gb-ac-item:last-child { border-bottom: 0; }
.gb-ac-item:hover,
.gb-ac-item.is-active { background: var(--ivory); }
.gb-ac-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.gb-ac-main { display: block; font-size: 14px; color: var(--espresso); }
.gb-ac-sub  { display: block; font-size: 12px; color: var(--taupe); margin-top: 2px; }

/* ════════════════════════════════════════════════════════════════
   Always-visible header search (desktop). Mobile falls back to the
   icon button + full-width overlay. (final-revisions)
═══════════════════════════════════════════════════════════════════ */
.nav-search-inline {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 200px;
  padding: 7px 12px;
  border: 0.5px solid var(--parchment);
  border-radius: 999px;
  background: var(--ivory);
  transition: width .22s ease, border-color .15s ease, background .15s ease;
}
.nav-search-inline:focus-within {
  width: 260px;
  border-color: var(--gold);
  background: #fff;
}
.nav-search-inline-icon { width: 15px; height: 15px; color: var(--taupe); flex-shrink: 0; }
.nav-search-inline-input {
  border: 0; outline: 0; background: transparent;
  width: 100%;
  font-family: 'Raleway', sans-serif; font-size: 12.5px;
  color: var(--espresso);
}
.nav-search-inline-input::placeholder { color: var(--taupe); letter-spacing: 0.04em; }
.nav-search-inline-suggest {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 340px; max-width: 80vw;
  z-index: 200;
}
/* The inline bar is the desktop affordance; hide the search icon button there. */
.nav-search-iconbtn { display: none; }
@media (max-width: 1024px) {
  .nav-search-inline { display: none; }
  .nav-search-iconbtn { display: inline-flex; }
}

/* Reset native chrome when .btn-ghost (a text-link style) is used on a
   <button> — e.g. the Sign-out action on the awaiting-approval page. Without
   this the browser's default button border/background shows through. */
button.btn-ghost {
  background: none;
  border: 0;
  border-bottom: 0.5px solid var(--sand);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
}

/* Off-canvas panels (cart drawer, filter drawer, mobile menu) are parked
   off-screen and can add horizontal scroll on narrow viewports — which made
   the mobile product grid look shifted / cut off. Clip horizontal overflow at
   the page level. Body (not html) keeps position:sticky working. */
body { overflow-x: hidden; }

/* ════════════════════════════════════════════════════════════════
   Floating WhatsApp button (final-revisions). Master-controlled
   number / visibility / position.
═══════════════════════════════════════════════════════════════════ */
/* Luxe floating WhatsApp button — dark disc, gold ring, green glyph.
   Hover: fills green, glyph flips dark, gold ring glows, lifts. */
.wa-float {
  position: fixed;
  bottom: 22px;
  z-index: 9600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #15110a;
  border: 1.5px solid var(--gold);
  color: #25d366;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  -webkit-transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease, -webkit-transform .22s ease;
  transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.wa-float:hover {
  background: #25d366;
  color: #15110a;
  border-color: #f3d878;
  -webkit-transform: translateY(-3px) scale(1.06);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(212, 175, 55, 0.18);
}
.wa-float:active { -webkit-transform: translateY(-1px) scale(1.02); transform: translateY(-1px) scale(1.02); }
.wa-float-left { left: 22px; }
.wa-float-right { right: 22px; }
@media (max-width: 560px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; }
  .wa-float-left { left: 16px; }
  .wa-float-right { right: 16px; }
}

/* ── Credit bar — "Credit D": elegant serif, below the footer ── */
.credit-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: #100d09;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  text-align: center;
}
.credit-bar-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; letter-spacing: 0.3px; line-height: 1.3;
  color: rgba(245, 239, 226, 0.82);
}
/* URL link wraps the credit text — gold, underlined, brightens on hover */
.credit-bar-text a {
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  -webkit-transition: color .18s ease, border-color .18s ease;
  transition: color .18s ease, border-color .18s ease;
}
.credit-bar-text a:hover { color: #f3d878; border-bottom-color: #f3d878; }
/* WhatsApp link — small uppercase, lifts + golds on hover */
.credit-bar-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(245, 239, 226, 0.6); text-decoration: none;
  font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase;
  -webkit-transition: color .18s ease, -webkit-transform .18s ease;
  transition: color .18s ease, transform .18s ease;
}
.credit-bar-link svg { width: 15px; height: 15px; }
.credit-bar-link:hover { color: var(--gold); -webkit-transform: translateY(-1px); transform: translateY(-1px); }

/* Message conversation bubbles (account) — explicit colors, dark-mode aware */
.gb-chat { display: flex; flex-direction: column; gap: 10px; }
.gb-chat-msg { padding: 10px 14px; border-radius: 12px; max-width: 85%; font-size: 14px; line-height: 1.5; }
.gb-chat-msg--in { align-self: flex-start; background: #efe9dd; color: #241d12; }
.gb-chat-msg--out { align-self: flex-end; background: var(--espresso); color: #f5efe2; }
.gb-chat-meta { font-size: 10.5px; opacity: 0.7; margin-top: 3px; }
html[data-theme="dark"] .gb-chat-msg--in { background: #2a2419; color: #efe6d6; }
html[data-theme="dark"] .gb-chat-msg--out { background: #c9a53a; color: #1a1206; }

/* F8: profile completion nudge on the customer dashboard */
.account-profile-progress { display:block; text-decoration:none; color:inherit; background:var(--surface,#fff);
  border:1px solid rgba(201,165,58,0.4); border-radius:12px; padding:16px 18px; margin-bottom:20px;
  transition:transform .15s ease, box-shadow .15s ease; }
.account-profile-progress:hover { transform:translateY(-1px); box-shadow:0 8px 22px rgba(201,165,58,0.14); }
.account-profile-progress-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.account-profile-progress-title { font-family:'Cormorant Garamond',serif; font-size:19px; }
.account-profile-progress-pct { font-size:14px; font-weight:600; color:#b8912a; }
.account-profile-progress-track { height:8px; border-radius:99px; background:rgba(0,0,0,0.08); overflow:hidden; }
.account-profile-progress-fill { height:100%; border-radius:99px; background:linear-gradient(90deg,#d4af37,#b8912a); transition:width .4s ease; }
.account-profile-progress-hint { font-size:12.5px; color:var(--text-muted,#6b5e48); margin-top:8px; }
html[data-theme="dark"] .account-profile-progress { background:#1c1c1c; border-color:rgba(201,165,58,0.45); }
html[data-theme="dark"] .account-profile-progress-title { color:#f3ead3; }
html[data-theme="dark"] .account-profile-progress-pct { color:#d4af37; }
html[data-theme="dark"] .account-profile-progress-hint { color:#b8ad97; }
html[data-theme="dark"] .account-profile-progress-track { background:rgba(255,255,255,0.12); }
