/* ============================================================
   A Slice of G — main.css
   Shared across all pages
   ============================================================ */

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

:root {
  --forest:       #071410;
  --forest-deep:  #040d0a;
  --forest-mid:   #0d2119;
  --forest-up:    #152e22;
  --emerald:      #1a4a32;
  --emerald-pop:  #236642;
  --gold:         #C9A96E;
  --gold-light:   #E0C48A;
  --gold-faint:   #F5EDD8;
  --coral:        #E07055;
  --coral-light:  #EC8870;
  --cream:        #FAF5EE;
  --warm-white:   #FFFCF5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--forest);
  overflow-x: hidden;
}

/* ── Navigation ─────────────────────────────────────────── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(4,13,10,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-logo {
  font-family: 'Cormorant SC', serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold); text-decoration: none;
  flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }

.nav-links a {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cart {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid rgba(201,169,110,0.3);
  color: rgba(255,255,255,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 10px 18px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nav-cart:hover { border-color: var(--gold); color: var(--gold); }

.cart-count {
  background: var(--coral);
  color: white;
  font-size: 9px; font-weight: 700;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.cart-count[data-count="0"] { display: none; }

.nav-cta {
  background: var(--gold);
  color: var(--forest-deep);
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block; white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── Shared Buttons ─────────────────────────────────────── */

.btn-gold {
  padding: 16px 38px; background: var(--gold);
  color: var(--forest-deep); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  padding: 16px 38px; background: transparent;
  color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(201,169,110,0.35);
  display: inline-block; transition: all 0.2s;
  cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn-ghost:
hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── Marquee Band ────────────────────────────────────────── */

.band { background: var(--gold); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.band-inner {
  display: inline-flex; gap: 52px;
  animation: marquee 80s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.band-item {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--forest-deep);
  display: flex; align-items: center; gap: 22px; flex-shrink: 0;
}
.band-item::after { content: '◆'; font-size: 6px; color: rgba(4,13,10,0.35); }

/* ── Footer ─────────────────────────────────────────────── */

footer {
  background: var(--forest-deep); padding: 56px 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-logo { font-family: 'Cormorant SC', serif; font-size: 28px; font-weight: 500; letter-spacing: 0.2em; color: var(--gold); }
.footer-center { text-align: center; }
.footer-slogan { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.footer-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--coral-light); }
.footer-right { text-align: right; font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.9; }
.footer-right a { color: var(--gold); text-decoration: none; }

/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--forest-deep);
  padding-top: 73px; /* offset for fixed nav so arch centres in visible area */
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(21,46,34,0.95) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 5%,  rgba(201,169,110,0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 95%, rgba(224,112,85,0.1) 0%, transparent 40%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-stripe {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px; z-index: 5;
  background: linear-gradient(180deg, var(--gold) 0%, var(--coral) 100%);
}

.hero-arch {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 540px;
  border-radius: 200px 200px 0 0;
  overflow: hidden; z-index: 3;
  box-shadow:
    0 0 0 5px rgba(201,169,110,0.25),
    0 0 0 10px rgba(201,169,110,0.07),
    0 50px 100px rgba(0,0,0,0.7);
  animation: archIn 1.2s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

@keyframes archIn {
  from { opacity:0; transform:translateY(-45%) scale(0.95); }
  to   { opacity:1; transform:translateY(-50%) scale(1); }
}

.hero-arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

.palm {
  position: absolute; bottom: 0;
  right: calc(6% + 360px);
  z-index: 2; opacity: 0.055; width: 240px;
}

.hero-content {
  position: relative; z-index: 4;
  padding: 0 72px; max-width: 660px;
  animation: contentIn 1s cubic-bezier(0.22,1,0.36,1) both;
}

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

.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.eyebrow-line { width: 36px; height: 1px; background: var(--coral); }
.eyebrow-text { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--coral-light); }

.hero-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 26px; font-weight: 400;
  letter-spacing: 0.35em; color: var(--gold);
  display: block; margin-bottom: 20px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 700;
  line-height: 0.95; color: white;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-h1 em { font-style: italic; font-weight: 700; color: var(--gold-light); display: block; }

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px; line-height: 1.55;
}

.hero-detail {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 50px;
  max-width: 420px;
  flex-wrap: wrap;
}
.detail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

.hero-btns { display: flex; gap: 14px; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 72px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  animation: contentIn 1s 1s both;
}
.scroll-line { width: 36px; height: 1px; background: rgba(255,255,255,0.18); }
.scroll-text { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.28); }

/* ── Intro Section ───────────────────────────────────────── */

.intro {
  padding: 120px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
  max-width: 1300px; margin: 0 auto;
}

.intro-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--emerald-pop); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.intro-label::before { content: ''; display: inline-block; width: 28px; height: 1.5px; background: var(--coral); }

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px; font-weight: 400;
  line-height: 1.12; color: var(--forest); margin-bottom: 28px;
}
.intro h2 em { font-style: italic; font-weight: 700; color: var(--emerald); }

.intro-pullquote { border-left: 2px solid var(--gold); padding-left: 20px; margin-bottom: 24px; }
.intro-pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-style: italic;
  color: rgba(7,20,16,0.5); line-height: 1.7;
}

.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.85;
  color: rgba(7,20,16,0.65);
}

/* ── Allergen / Info Block ───────────────────────────────── */

.intro-allergens {
  margin-top: 28px;
  border-top: 1px solid rgba(7,20,16,0.1);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}

.allergen-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 400;
  color: rgba(7,20,16,0.55);
  line-height: 1.6;
}

.allergen-icon {
  flex-shrink: 0;
  font-size: 11px; font-weight: 700;
  color: var(--emerald-pop);
  margin-top: 1px;
}

.allergen-row strong { font-weight: 700; color: rgba(7,20,16,0.75); }

.arch-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.arch-img { border-radius: 140px 140px 0 0; overflow: hidden; aspect-ratio: 1/1.6; }
.arch-img:nth-child(2) { margin-top: 56px; }
.arch-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch-img-fill { width: 100%; height: 100%; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.fill-1 { background: linear-gradient(180deg, #1a4a32 0%, #040d0a 100%); }
.fill-2 { background: linear-gradient(180deg, rgba(201,169,110,0.2) 0%, #0d2119 60%, #040d0a 100%); }

/* ── Flavours Section ────────────────────────────────────── */

.flavors {
  background: var(--forest-deep);
  padding: 100px 80px; position: relative; overflow: hidden;
}
.flavors::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--coral));
}
.flavors-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant SC', serif;
  font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.018);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
}
.flavors-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.flavors-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--coral-light); display: block; margin-bottom: 14px; }
.flavors-header h2 { font-family: 'Playfair Display', serif; font-size: 50px; font-weight: 400; color: white; }
.flavors-header p { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.32); margin-top: 10px; }

.flavors-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; max-width: 1020px; margin: 0 auto;
  position: relative; z-index: 1;
}

.flavor-card {
  border: 1px solid rgba(201,169,110,0.15);
  padding: 40px 30px 36px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative;
}
.flavor-card:hover { border-color: rgba(201,169,110,0.38); transform: translateY(-6px); background: rgba(255,255,255,0.05); }
.flavor-card.featured { border-color: var(--gold); background: rgba(201,169,110,0.07); }

.featured-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--forest-deep);
  font-size: 8px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 16px; white-space: nowrap;
}

.flavor-number { font-family: 'Cormorant SC', serif; font-size: 11px; font-weight: 400; letter-spacing: 0.3em; color: rgba(201,169,110,0.45); display: block; margin-bottom: 12px; }
.flavor-name { font-family: 'Playfair Display', serif; font-size: 30px; font-style: italic; color: white; margin-bottom: 6px; }
.flavor-desc { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: rgba(255,255,255,0.38); margin-bottom: 28px; line-height: 1.65; }
.flavor-rule { width: 24px; height: 1px; background: var(--coral); margin-bottom: 20px; }
.flavor-price { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--gold-light); }
.flavor-card.featured .flavor-price { color: var(--coral-light); }

/* ── Slogan Section ──────────────────────────────────────── */

.slogan {
  background: var(--warm-white);
  padding: 110px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.slogan::before { content: ''; position: absolute; top: 0; left: 80px; right: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--emerald), transparent); }

.slogan-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant SC', serif; font-size: 160px; font-weight: 700;
  color: rgba(7,20,16,0.04); white-space: nowrap;
  pointer-events: none; letter-spacing: 0.05em;
}

.slogan-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--coral); display: block; margin-bottom: 24px; position: relative; z-index: 1; }
.slogan-headline { font-family: 'Playfair Display', serif; font-size: 66px; font-weight: 700; color: var(--forest-deep); line-height: 1.05; margin-bottom: 10px; position: relative; z-index: 1; }
.slogan-headline em { font-style: italic; font-weight: 700; color: var(--gold); }
.slogan-sub { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: rgba(7,20,16,0.45); max-width: 520px; margin: 0 auto 44px; line-height: 1.7; position: relative; z-index: 1; }
/* Bold all italic subheads site-wide */
h1 em, h2 em, h3 em { font-style: italic; font-weight: 700; }

.slogan-cta { display: inline-block; padding: 17px 52px; background: var(--forest-deep); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; position: relative; z-index: 1; font-family: 'Jost', sans-serif; }
.slogan-cta:hover { background: var(--emerald); }

/* ============================================================
   SHOP PAGE STYLES
   ============================================================ */

/* ── Shop Hero ───────────────────────────────────────────── */

.shop-hero {
  padding-top: 100px;
  background: var(--forest-deep);
  position: relative; overflow: hidden;
}

.shop-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--coral));
}

.shop-hero-stripe {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--coral) 100%);
}

.shop-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.shop-hero-inner {
  position: relative; z-index: 1;
  padding: 60px 80px 56px;
  max-width: 1300px; margin: 0 auto;
}

.shop-hero-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--coral-light);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.shop-hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--coral); }

.shop-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 62px; font-weight: 700; font-style: italic;
  color: white; line-height: 1; margin-bottom: 14px;
}
.shop-hero h1 span { color: var(--gold-light); }

.shop-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(255,255,255,0.38);
}

/* ── Filter Bar ──────────────────────────────────────────── */

.filter-bar {
  background: var(--warm-white);
  border-bottom: 1px solid rgba(7,20,16,0.08);
  padding: 0 80px;
  position: sticky; top: 73px; z-index: 50;
  display: flex; align-items: center; gap: 0;
  overflow-x: auto;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(7,20,16,0.45);
  padding: 18px 22px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.filter-btn:hover { color: var(--forest); }
.filter-btn.active { color: var(--forest); border-bottom-color: var(--gold); }

/* ── Products Section ────────────────────────────────────── */

.products-section {
  padding: 64px 80px 100px;
  max-width: 1300px; margin: 0 auto;
}

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

/* ── Product Card ────────────────────────────────────────── */

.product-card {
  background: white;
  border: 1px solid rgba(7,20,16,0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(7,20,16,0.1);
  border-color: rgba(201,169,110,0.4);
}

.product-card-arch {
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  margin: 20px 20px 0;
  background: linear-gradient(180deg, var(--emerald) 0%, var(--forest-deep) 100%);
  position: relative;
}
.product-card-arch img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.product-card-arch-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant SC', serif;
  font-size: 36px; font-weight: 700;
  color: rgba(201,169,110,0.25);
  letter-spacing: 0.1em;
}

.product-card-body { padding: 24px 28px 28px; }

.product-number {
  font-family: 'Cormorant SC', serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(201,169,110,0.6);
  display: block; margin-bottom: 8px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-style: italic; font-weight: 400;
  color: var(--forest); margin-bottom: 8px; line-height: 1.2;
}

.product-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic;
  color: rgba(7,20,16,0.5); line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rule { width: 20px; height: 1px; background: var(--coral); margin-bottom: 16px; }

.product-footer {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.variation-select {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--cream); color: var(--forest);
  border: 1px solid rgba(7,20,16,0.15);
  padding: 10px 14px; margin-bottom: 16px;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23071410'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.variation-select:focus { outline: none; border-color: var(--gold); }

.btn-add-cart {
  flex: 1; min-width: 140px;
  padding: 13px 20px;
  background: var(--forest);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--emerald); }

.product-loading {
  text-align: center; padding: 80px 20px;
  grid-column: 1 / -1;
}
.product-loading-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic;
  color: rgba(7,20,16,0.4);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.product-loading-text::before {
  content: '';
  width: 20px; height: 20px;
  border: 2px solid rgba(7,20,16,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.products-empty {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: rgba(7,20,16,0.4);
}

/* ── Cart Drawer ─────────────────────────────────────────── */

.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,13,10,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: 420px; max-width: 100vw;
  background: var(--forest-deep);
  border-left: 1px solid rgba(201,169,110,0.15);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: 'Cormorant SC', serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--gold);
}

.cart-close-btn {
  background: none; border: 1px solid rgba(201,169,110,0.2);
  color: rgba(255,255,255,0.5); width: 36px; height: 36px;
  cursor: pointer; font-size: 16px; line-height: 1;
  transition: border-color 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cart-close-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-drawer-items {
  flex: 1; overflow-y: auto; padding: 20px 32px;
}
.cart-drawer-items::-webkit-scrollbar { width: 4px; }
.cart-drawer-items::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-items::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.2); border-radius: 2px; }

.cart-empty {
  padding: 60px 0; text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(255,255,255,0.25);
}

.cart-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-style: italic;
  color: white; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.cart-item-qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(201,169,110,0.2);
  flex-shrink: 0;
}

.qty-btn {
  background: none; border: none; color: rgba(255,255,255,0.5);
  width: 30px; height: 30px; cursor: pointer;
  font-size: 16px; line-height: 1;
  transition: color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(201,169,110,0.1); color: var(--gold); }

.qty-display {
  width: 32px; text-align: center;
  font-size: 12px; font-weight: 600;
  color: white; letter-spacing: 0.05em;
  border-left: 1px solid rgba(201,169,110,0.2);
  border-right: 1px solid rgba(201,169,110,0.2);
  height: 30px; display: flex; align-items: center; justify-content: center;
}

.cart-item-remove {
  background: none; border: none; color: rgba(255,255,255,0.2);
  cursor: pointer; font-size: 14px; padding: 4px;
  transition: color 0.2s; flex-shrink: 0;
}
.cart-item-remove:hover { color: var(--coral); }

.cart-drawer-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid rgba(201,169,110,0.12);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 20px;
}
.cart-subtotal-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cart-subtotal-amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--gold-light);
}

/* ── Fulfillment Selector ────────────────────────────────── */

.fulfillment-select {
  margin-bottom: 16px;
  display: none; /* shown by JS when cart has items */
}

.fulfillment-label {
  display: block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 10px;
}

.fulfillment-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 12px;
}

.fulfillment-btn {
  padding: 10px 0;
  background: none;
  border: 1px solid rgba(201,169,110,0.2);
  color: rgba(255,255,255,0.4);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.fulfillment-btn:hover { border-color: rgba(201,169,110,0.5); color: rgba(255,255,255,0.7); }
.fulfillment-btn.active { background: rgba(201,169,110,0.12); border-color: var(--gold); color: var(--gold); }

.fulfillment-datetime { margin-top: 12px; }

.fulfillment-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fulfillment-field { display: flex; flex-direction: column; gap: 6px; }

.fulfillment-shipping-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.fulfillment-date-wrap { display: flex; flex-direction: column; gap: 6px; }

.fulfillment-date-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.fulfillment-date-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.2s;
  color-scheme: dark;
}
.fulfillment-date-input:focus { outline: none; border-color: var(--gold); }
.fulfillment-date-input.input-error {
  border-color: var(--coral);
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.btn-checkout-main {
  width: 100%; padding: 17px;
  background: var(--gold); color: var(--forest-deep);
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-checkout-main:hover:not(:disabled) { background: var(--gold-light); }
.btn-checkout-main:disabled { background: rgba(201,169,110,0.3); color: rgba(4,13,10,0.4); cursor: not-allowed; }

/* ── Order Note Field ─────────────────────────────────────── */
.order-note-field {
  margin-bottom: 16px;
}
.order-note-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.order-note-optional {
  font-weight: 400; letter-spacing: 0; text-transform: none;
  color: rgba(255,255,255,0.2);
}
.order-note-input {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.18);
  color: var(--warm-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  padding: 10px 12px;
  resize: none;
  transition: border-color 0.2s;
}
.order-note-input::placeholder { color: rgba(255,255,255,0.2); }
.order-note-input:focus { outline: none; border-color: rgba(201,169,110,0.45); }

/* ── Order Confirmation Panel (inside cart drawer) ───────── */

.cart-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  color: rgba(255,255,255,0.9);
}

.confirm-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.confirm-item-row:last-of-type { border-bottom: none; }

.confirm-subtotal-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
  font-size: 15px;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 4px;
}

.confirm-fulfillment-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 14px 16px;
  margin: 16px 0;
}
.confirm-fulfillment-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.confirm-fulfillment-value {
  font-size: 14px; font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.confirm-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 14px;
}

.confirm-edit-btn {
  display: block; width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; padding: 12px;
  margin-top: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.confirm-edit-btn:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }

/* ── Checkout Modal ──────────────────────────────────────── */

.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4,13,10,0.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--warm-white);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-box::-webkit-scrollbar { display: none; }

.modal-header {
  background: var(--forest-deep);
  padding: 28px 36px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title {
  font-family: 'Cormorant SC', serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--gold);
}
.modal-close {
  background: none; border: 1px solid rgba(201,169,110,0.2);
  color: rgba(255,255,255,0.4); width: 32px; height: 32px;
  cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-body { padding: 36px; }

.modal-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(7,20,16,0.4); margin-bottom: 14px; margin-top: 24px;
  display: block;
}
.modal-section-label:first-child { margin-top: 0; }

.modal-input {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--forest);
  background: white;
  border: 1px solid rgba(7,20,16,0.15);
  padding: 14px 16px; margin-bottom: 12px;
  transition: border-color 0.2s;
}
.modal-input:focus { outline: none; border-color: var(--gold); }
.modal-input::placeholder { color: rgba(7,20,16,0.3); }

.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

#card-container {
  margin-bottom: 8px;
  min-height: 54px;
}

/* Square injects its own iframe — style the container */
#card-container iframe { width: 100% !important; }

.modal-status {
  min-height: 24px; margin: 12px 0;
  font-size: 13px; font-style: italic;
  color: rgba(7,20,16,0.55);
}
.modal-status.error { color: var(--coral); font-style: normal; font-weight: 600; }
.modal-status.success { color: var(--emerald-pop); font-style: normal; font-weight: 600; }

.btn-pay {
  width: 100%; padding: 17px;
  background: var(--forest-deep); color: white;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-pay:hover { background: var(--emerald); }
.btn-pay:disabled { background: rgba(7,20,16,0.2); cursor: not-allowed; }

/* ── Success State ───────────────────────────────────────── */

.checkout-success {
  text-align: center; padding: 20px 0;
}
.success-icon {
  width: 60px; height: 60px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px; color: white;
}
.success-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-style: italic;
  color: var(--forest); margin-bottom: 10px;
}
.success-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(7,20,16,0.5); margin-bottom: 24px;
  line-height: 1.6;
}
.success-receipt {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.4);
  padding-bottom: 2px;
}

/* ── Login Modal ─────────────────────────────────────────── */

.gift-card-bar {
  background: var(--forest);
  padding: 12px 80px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 73px;
}

.btn-gift-card {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 28px;
  transition: background 0.2s, color 0.2s;
}

.btn-gift-card:hover {
  background: var(--gold);
  color: var(--forest);
}

.customer-bar {
  background: rgba(201,169,110,0.06);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: 10px 80px;
  display: flex; align-items: center; gap: 20px;
  margin-top: 0;
}
.customer-greeting {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  color: rgba(7,20,16,0.5);
}
.customer-greeting span { color: var(--emerald-pop); font-weight: 700; }

.btn-text {
  background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 0;
}
.btn-text-gold { color: var(--gold); }
.btn-text-muted { color: rgba(7,20,16,0.4); }
.btn-text-muted:hover { color: var(--coral); }

/* ── Orders Modal ────────────────────────────────────────── */

.orders-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.order-card {
  background: var(--cream); border: 1px solid rgba(7,20,16,0.08);
  padding: 20px 24px;
}
.order-card-date {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(7,20,16,0.4); margin-bottom: 10px;
}
.order-card-items { list-style: none; margin-bottom: 12px; }
.order-card-items li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: rgba(7,20,16,0.7); padding: 2px 0;
}
.order-card-total {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--forest);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
  .intro { grid-template-columns: 1fr; gap: 48px; }
  .arch-pair { max-width: 400px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 0;
    min-height: 100svh;
  }
  .hero-arch {
    display: block;
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 240px; height: 310px;
    margin: 36px auto 0;
    animation: none;
    order: 2;
  }
  .hero-content {
    padding: 0 32px;
    max-width: 100%;
    text-align: center;
    order: 1;
  }
  .hero-h1 { font-size: 52px; }
  .palm { display: none; }
  .eyebrow { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-detail { text-align: center; font-size: 13px; }

  .intro { padding: 72px 24px; }
  .products-section { padding: 40px 24px 72px; }
  .products-grid { grid-template-columns: 1fr; }

  .shop-hero-inner { padding: 40px 24px 40px; }
  .shop-hero h1 { font-size: 42px; }

  .filter-bar { padding: 0 24px; }

  .flavors { padding: 72px 24px; }
  .flavors-grid { grid-template-columns: 1fr; }

  .slogan { padding: 72px 24px; }
  .slogan-headline { font-size: 42px; }

  footer { padding: 40px 24px; flex-direction: column; gap: 28px; text-align: center; }
  .footer-right { text-align: center; }

  .gift-card-bar { padding: 12px 24px; }
  .customer-bar { padding: 10px 24px; }
  .cart-drawer { width: 100vw; }
  .modal-row { grid-template-columns: 1fr; }

  .scroll-hint { left: 32px; }
}

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

/* ── Order Confirmation Panel ─────────────────── */
.confirm-items {
  margin-bottom: 1.25rem;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 14px;
}

.confirm-item-name {
  color: var(--color-text-primary);
}

.confirm-item-price {
  font-weight: 500;
}

.confirm-total {
  font-weight: 500;
  font-size: 15px;
}

.confirm-divider {
  border-top: 0.5px solid var(--color-border-tertiary);
  margin: 8px 0;
}

.confirm-fulfillment {
  background: var(--color-background-secondary);
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.confirm-fulfillment-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.confirm-fulfillment-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.confirm-note {
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 1rem;
}

.confirm-back-link {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 13px;
  color: var(--color-text-secondary);
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  padding: 8px;
}

.confirm-back-link:hover {
  color: var(--color-text-primary);
}

/* ── Hamburger & Mobile Menu ──────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: 16px;
  z-index: 301;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--warm-white);
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--forest-deep);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 24px 48px;
}
.nav-mobile-menu.open { display: flex; }

.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: rgba(255,255,255,0.35); font-size: 20px;
  cursor: pointer; transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--gold); }

.nav-mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  width: 100%; text-align: center;
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a.active,
.nav-mobile-menu a:hover { color: var(--gold); }

.nav-mobile-cta {
  margin-top: 32px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold);
  text-decoration: none;
  padding: 14px 36px;
  border: none;
}

/* ── Google Reviews Section ───────────────────────────────── */
.reviews-section {
  padding: 80px 80px 72px;
  background: var(--cream);
}
.reviews-inner { max-width: 1200px; margin: 0 auto; }

.reviews-header { text-align: center; margin-bottom: 48px; }

.reviews-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}

.reviews-rating-row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

.reviews-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
}

.reviews-score {
  font-family: 'Cormorant SC', serif;
  font-size: 32px; font-weight: 300;
  color: var(--forest-deep);
}

.reviews-count {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(4,13,10,0.4);
  letter-spacing: 0.06em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.reviews-loading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(4,13,10,0.35);
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 0;
}

.review-card {
  background: var(--forest-deep);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(201,169,110,0.3); }

.review-card-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}

.review-author-info { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-avatar-placeholder {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,169,110,0.2);
  color: var(--gold);
  font-family: 'Cormorant SC', serif;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.review-author {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.04em;
}

.review-time {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

.review-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
}

.reviews-cta {
  display: block; text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--forest-deep);
  text-decoration: none;
  border: 1px solid rgba(4,13,10,0.2);
  padding: 14px 36px;
  max-width: 280px; margin: 0 auto;
  transition: border-color 0.2s, color 0.2s;
}
.reviews-cta:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .reviews-section { padding: 60px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}