/* ============================================================
   SOCO CHIC BOUTIQUE  ·  Stylesheet
   Soft · Cream · Blush · Gold
   ============================================================ */

/* ── 1. TOKENS ── */
:root {
  /* Backgrounds */
  --cream:        #FAF6F1;
  --ivory:        #FFFDF9;
  --blush:        #F4D9D7;
  --blush-deep:   #E8B4B0;
  --rose:         #D89690;
  --rose-gold:    #C49484;
  --gold:         #C9A961;
  --soft-gold:    #E8D5A8;

  /* Text & accents */
  --cocoa:        #5C4A3A;
  --warm-brown:   #8B6F5C;
  --text:         #4A3F38;
  --text-mid:     #877668;
  --text-light:   #B3A597;
  --line:         #EFE6DC;
  --line-soft:    #F4ECE2;
  --white:        #FFFFFF;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(180,140,120,.10);
  --shadow-card:  0 8px 32px rgba(140,100,80,.12);
  --shadow-lift:  0 18px 50px rgba(140,100,80,.18);

  /* Fonts */
  --font-script:  'Dancing Script', cursive;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  /* Motion */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --dur:  .35s;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. TYPOGRAPHY UTILITIES ── */
.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--cocoa);
  line-height: 1.1;
  margin-bottom: .6rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 1.2rem auto 0;
  line-height: 1.8;
}

/* ── 4. LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 100px 0; }
.section--ivory { background: var(--ivory); }
.section--cream { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ── 5. ORNAMENT ── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 1rem 0 1.4rem;
}
.ornament-divider--left { justify-content: flex-start; margin-left: 0; }
.ornament-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--soft-gold);
}
.ornament-diamond {
  color: var(--gold);
  font-size: .95rem;
  line-height: 1;
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .95rem 2.2rem;
  border-radius: 999px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blush-deep);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(216,150,144,.32);
}
.btn-primary:hover {
  background: var(--rose);
  box-shadow: 0 10px 26px rgba(216,150,144,.40);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--cocoa);
  background: transparent;
}
.btn-outline:hover {
  background: var(--soft-gold);
  border-color: var(--soft-gold);
  color: var(--cocoa);
}

/* ── 7. TOP ACCENT BAR ── */
.top-accent-bar {
  height: 3px;
  background: var(--rose-gold);
}

/* ── 8. NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 253, 249, .98);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 18px rgba(140,100,80,.06);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-lockup {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--cocoa); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-admin,
.nav-signin {
  color: var(--cocoa) !important;
}
.nav-admin::before,
.nav-signin::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  margin-right: .45rem;
  vertical-align: 1px;
}

.nav-cta {
  background: var(--blush-deep);
  color: var(--white) !important;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(216,150,144,.32);
  /* Extra breathing room so the CTA pill reads as its own cluster, separate
     from the regular nav links (About / Featured / Visit / Sign in). */
  margin-left: 1.4rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rose); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  margin: -10px;             /* expand tap target without affecting layout */
  background: transparent;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── 9. HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(60% 70% at 18% 22%, rgba(244,217,215,.65) 0%, rgba(244,217,215,0) 70%),
    radial-gradient(50% 60% at 85% 78%, rgba(232,213,168,.55) 0%, rgba(232,213,168,0) 70%),
    linear-gradient(160deg, var(--ivory) 0%, var(--cream) 55%, #F3E9DC 100%);
  overflow: hidden;
  padding: 90px 2rem 110px;
}
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  font-weight: 700;
  color: var(--cocoa);
  line-height: 1.04;
  margin-bottom: .35rem;
}
.hero-title em {
  font-style: normal;
  color: var(--rose-gold);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  font-style: italic;
  color: var(--warm-brown);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto 2.2rem;
  line-height: 1.85;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── 9b. HERO MOSAIC ──
   Replaces the centered hero text with a shopthemint-style asymmetric
   collage: one text tile + five photo tiles, each in a different shape.
   Uses CSS Grid named areas so the layout reads as a picture in code. */
.hero--mosaic {
  display: block;
  min-height: auto;
  padding: 110px clamp(1rem, 3vw, 2rem) clamp(3rem, 6vw, 5rem);
  background: var(--ivory);
}
.shelf-mosaic {
  display: grid;
  /* Zero gap on both axes — desktop tiles overlap by their pixel slant
     via negative margin-left so adjacent slanted edges coincide; the
     stacked tiles two + three share the same plane. At smaller widths
     the negative margins are removed (rectangular tiles) and the
     restacked layout uses its own implicit spacing. */
  column-gap: 0;
  row-gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  /* Single-row banner (mintemp.png reference): tall portrait first, then
     the wider brand card in slot 2, then mixed-shape photo tiles. Slot 3
     splits into two stacked thumbs so the row reads as a mix of tall +
     short shapes. Brand card is intentionally ~2× the width of the tall
     photo slots — that's what makes it read as a card, not another tile. */
  grid-template-columns:
    minmax(160px, 0.78fr)  /* one   — tall narrow portrait        */
    minmax(240px, 1.6fr)   /* txt   — wider brand card            */
    minmax(150px, 0.92fr)  /* two/three stack                     */
    minmax(170px, 0.85fr)  /* four  — full-height tall            */
    minmax(160px, 0.78fr); /* five  — full-height tall narrow     */
  grid-template-rows: 1fr 1fr;
  height: clamp(320px, 34vw, 440px);
  grid-template-areas:
    "one txt two   four five"
    "one txt three four five";
  animation: fadeUp .9s var(--ease) both;
}
.shelf-mosaic-area--txt   { grid-area: txt; }
.shelf-mosaic-area--one   { grid-area: one; }
.shelf-mosaic-area--two   { grid-area: two; }
.shelf-mosaic-area--three { grid-area: three; }
.shelf-mosaic-area--four  { grid-area: four; }
.shelf-mosaic-area--five  { grid-area: five; }

.shelf-mosaic-text {
  background: var(--ivory);
  border: 1px solid var(--rose-gold);
  border-radius: 16px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.shelf-mosaic-text > * { position: relative; z-index: 1; }
.shelf-mosaic-text .hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  margin-bottom: .25rem;
}
.shelf-mosaic-text .hero-eyebrow { font-size: clamp(.7rem, .85vw, .82rem); }
.shelf-mosaic-text .hero-tagline { margin-bottom: 1rem; font-size: clamp(.95rem, 1.15vw, 1.15rem); }

/* Brand block in the hero card — horizontal lockup (already contains the
   circular mark + wordmark). Replaces the old "Soco Chic" h1 + tagline pair.
   The SVG has ~30% transparent padding inside its viewBox; the negative
   top/bottom margins claw that space back so the eyebrow above and the CTAs
   below sit visually adjacent to the wordmark instead of getting pushed
   out by invisible whitespace. */
.hero-brand {
  display: flex;
  align-items: center;
  margin: clamp(-3.5rem, -3.5vw, -2rem) 0 clamp(-2.2rem, -2vw, -1.2rem);
}
.hero-brand-lockup {
  display: block;
  height: clamp(216px, 28vw, 352px);
  width: auto;
  max-width: 100%;
}
.shelf-mosaic-text .hero-desc {
  margin: 0 0 1.4rem;
  max-width: none;
  font-size: clamp(.92rem, 1vw, 1rem);
  line-height: 1.7;
}
.shelf-mosaic-text .ornament-divider { margin: .4rem 0 .8rem; }
.shelf-mosaic-text .hero-ctas { gap: .6rem; }

/* Desktop banner: keep the brand card compact (mintemp-style). The long
   description and secondary CTA reappear at narrower breakpoints, where
   the mosaic restacks and there's room for them. */
@media (min-width: 981px) {
  .shelf-mosaic-text .hero-desc { display: none; }
  .shelf-mosaic-text .hero-ctas .btn-outline { display: none; }
  .shelf-mosaic-text .ornament-divider { display: none; }
}

.shelf-mosaic-tile {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--blush);
  border: 1px solid var(--rose-gold);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.shelf-mosaic-tile:hover {
  transform: translateY(-3px);
}
.shelf-mosaic-tile picture,
.shelf-mosaic-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slow camera pan so the tight crop reveals different parts of each
     wide source photo over time. Default is horizontal; tile five gets
     a vertical pan so the row has motion in two axes. Stagger via
     animation-delay so neighboring tiles are out of phase — no two
     tiles ever look identical at the same moment.
     `alternate` direction: when the pan reaches one side, it reverses
     and glides back to the other side, then reverses again — no
     visible snap, no reset, runs smoothly forever. */
  animation: mosaicPanX 12s ease-in-out infinite alternate;
  will-change: object-position;
}

/* Slanted-edge tiles, mintemp.png reference. Every tile in the row
   leans the *same* direction so the slant on one tile's right edge
   runs parallel to the next tile's left edge — that's the nesting
   behavior where "the first one stops and the next starts" along the
   same diagonal. The outer-most tiles keep one straight edge so the
   banner has clean left/right boundaries against the page.
   clip-path strips box-shadow + border-radius (the clipped silhouette
   is the whole shape), so depth is replaced by a drop-shadow filter
   that follows the polygon outline. Scoped to the desktop banner;
   smaller breakpoints restack and stay rectangular. */
@media (min-width: 981px) {
  /* Slant is now a fixed pixel value (not a percentage). Two reasons:
     (1) the diagonal slope stays constant across tiles of different
     widths, which looks more uniform; (2) each tile is shifted left
     by exactly `--slant` so its slanted left edge lands precisely on
     the previous tile's slanted right edge — the wedge of background
     that used to sit between two parallel slants disappears. */
  .shelf-mosaic { --slant: clamp(12px, 1.1vw, 16px); }

  /* Pull every tile (except the first) `--slant` to the left so the
     slanted edges of neighbors coincide. column-gap stays 0 — the
     overlap is what makes "1–3 px apart" actually look 1–3 px apart. */
  .shelf-mosaic-text,
  .shelf-mosaic-area--two,
  .shelf-mosaic-area--three,
  .shelf-mosaic-area--four,
  .shelf-mosaic-area--five {
    margin-left: calc(var(--slant) * -1);
  }

  .shelf-mosaic-tile {
    border: none;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 6px 14px rgba(140, 100, 80, .18));
  }
  .shelf-mosaic-tile:hover {
    filter: drop-shadow(0 10px 22px rgba(140, 100, 80, .26));
  }

  /* Leftmost tile: straight left edge (flush to container), right edge
     slants outward toward the top-right corner. */
  .shelf-mosaic-area--one {
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
  }

  /* Interior tiles (brand card + middle photo four): full parallelogram.
     Both edges share the same slope as tile-one's right, so the diagonal
     line passes cleanly through the whole row. */
  .shelf-mosaic-text,
  .shelf-mosaic-area--four {
    clip-path: polygon(var(--slant) 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
  }

  /* The stack column (two + three) is split halves of one parallelogram,
     not two independent parallelograms. The seam runs at half height of
     the column; each piece's edge points use slant/2 there so the bottom
     of tile two and the top of tile three share the same x-range and the
     diagonal carries through. With row-gap: 0 the two pieces read as one
     continuous tilted card. */
  .shelf-mosaic-area--two {
    clip-path: polygon(
      var(--slant) 0,
      100% 0,
      calc(100% - var(--slant) / 2) 100%,
      calc(var(--slant) / 2) 100%
    );
  }
  .shelf-mosaic-area--three {
    clip-path: polygon(
      calc(var(--slant) / 2) 0,
      calc(100% - var(--slant) / 2) 0,
      calc(100% - var(--slant)) 100%,
      0 100%
    );
  }

  /* Rightmost tile: slanted left edge picks up the chain; right edge
     straight again so the banner ends cleanly at the container edge. */
  .shelf-mosaic-area--five {
    clip-path: polygon(var(--slant) 0, 100% 0, 100% 100%, 0 100%);
  }

  /* The brand card is now a parallelogram — its border, radius, and
     box-shadow would be sliced by the clip and look wrong. Swap them
     for a soft drop-shadow that follows the slanted silhouette, and
     widen the side padding so the title and CTA stay clear of the
     angled corners. */
  .shelf-mosaic-text {
    border-radius: 0;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 8px 18px rgba(140, 100, 80, .14));
    padding-left: clamp(2rem, 3vw, 2.6rem);
    padding-right: clamp(2rem, 3vw, 2.6rem);
  }
}

/* ── 10. ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-copy h2 { margin-bottom: 1rem; }
.about-copy p {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.about-copy p:last-of-type { margin-bottom: 1.6rem; }
.about-signature {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--rose);
  margin-top: 1.2rem;
}

.about-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0) 60%),
    linear-gradient(155deg, var(--blush) 0%, var(--blush-deep) 55%, var(--soft-gold) 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.about-art::before,
.about-art::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about-art::before {
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--soft-gold) 0%, transparent 70%);
  opacity: .7;
}
.about-art::after {
  bottom: -50px; left: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.7) 0%, transparent 70%);
}
.about-art-mono {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-script);
  font-size: clamp(4rem, 10vw, 7rem);
  color: rgba(255,253,249,.9);
  text-shadow: 0 6px 30px rgba(140,100,80,.25);
  line-height: 1;
  font-weight: 700;
}

/* Photo-cycling variant of the about-art frame.
   Hides the abstract gradient blobs so the photo carries the panel. */
.about-art--photos {
  background: var(--ivory);
  border: 1px solid var(--rose-gold);
}
.about-art--photos::before,
.about-art--photos::after { display: none; }

.about-slideshow {
  position: absolute;
  inset: 0;
}
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-slide.is-active { opacity: 1; }

/* ── 11. FEATURED ── */
/* Featured carousel — one row of three larger cards that auto-cycles
   slowly through the full set. The viewport clips to three card-widths;
   the track holds every card and slides via transform. */
.featured-carousel {
  position: relative;
  padding: 0 2.4rem;
}
.featured-viewport {
  overflow: hidden;
  margin: 0 auto;
}
.featured-track {
  --gap: 1.8rem;
  display: flex;
  gap: var(--gap);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.featured-track .product-card {
  flex: 0 0 calc((100% - var(--gap) * 2) / 3);
  min-width: 0;
}
.featured-empty {
  text-align: center;
  color: var(--text-mid);
  font-family: var(--font-serif);
  font-style: italic;
  padding: 2.4rem 0;
}

/* Prev/next chevron buttons sit outside the viewport so they don't
   eat into the card row. Translucent until hover. */
.featured-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 253, 249, .92);
  border: 1px solid var(--line);
  color: var(--cocoa);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 3;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
  opacity: .82;
}
.featured-nav:hover {
  background: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}
.featured-nav--prev { left: -10px; }
.featured-nav--next { right: -10px; }
.featured-nav[disabled] {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.featured-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.6rem;
}
.featured-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.featured-dot.is-active {
  background: var(--blush-deep);
  transform: scale(1.25);
}
.featured-dot:hover { background: var(--rose); }
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rose-gold);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.product-media {
  aspect-ratio: 4 / 5;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: rgba(255,255,255,.92);
  text-shadow: 0 4px 16px rgba(140,100,80,.22);
}
.product-media--empty .placeholder-ornament {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: .3em;
  color: rgba(255,255,255,.7);
  text-shadow: none;
}
.product-media--empty .placeholder-mono {
  font-family: var(--font-script);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -.02em;
}
.product-media--tone-blush  { background: #EECDCA; }
.product-media--tone-sage   { background: #CDD5BD; }
.product-media--tone-gold   { background: #D9C089; }
.product-media--tone-cream  { background: #EADECB; }
.product-info {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--cocoa);
  margin-bottom: .4rem;
  font-weight: 500;
}
.product-blurb {
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: .9rem;
  flex: 1;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--rose);
  font-weight: 600;
  letter-spacing: .04em;
}
.product-price-prefix {
  font-size: .68rem;
  color: var(--text-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-right: .3rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  flex-wrap: wrap;
}
.stock-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stock-pill--low {
  background: rgba(201,169,97,.14);
  color: #8a6f2c;
  border: 1px solid rgba(201,169,97,.35);
}
.stock-pill--out {
  background: rgba(179,82,74,.08);
  color: #a04b44;
  border: 1px solid rgba(179,82,74,.25);
}
.featured-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── 12. VISIT ── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.visit-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2.4rem;
  border: 1px solid var(--rose-gold);
  box-shadow: var(--shadow-soft);
}
.visit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cocoa);
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.visit-card h3::before {
  content: '✦';
  color: var(--gold);
  font-size: .85rem;
}
.visit-address {
  font-style: normal;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.visit-address strong {
  color: var(--cocoa);
  font-weight: 600;
}
.visit-inside {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--warm-brown);
  font-size: .92rem;
}
.hours-list { width: 100%; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .94rem;
  color: var(--text-mid);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li .day {
  font-weight: 600;
  color: var(--cocoa);
  letter-spacing: .05em;
}
.hours-list li.is-today {
  color: var(--rose);
}
.hours-list li.is-today .day { color: var(--rose); }
.hours-note {
  margin-top: 1.1rem;
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── 13. CONTACT ── */
.contact-panel {
  text-align: center;
  background: var(--ivory);
  border-radius: 14px;
  padding: 4rem 2rem;
  border: 1px solid var(--rose-gold);
}
.contact-panel p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 1.8rem;
  line-height: 1.85;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cocoa);
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.social-pill:hover {
  border-color: var(--blush-deep);
  background: var(--blush);
  transform: translateY(-2px);
}
.social-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── 14. FOOTER ── */
.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2rem 2rem 2.4rem;
}
.site-footer p {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .08em;
}
.site-footer a {
  color: var(--warm-brown);
  font-weight: 600;
}
.site-footer a:hover { color: var(--rose); }
.footer-sign {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: .4rem;
}

/* ── 14b. POWERED BY ── */
.powered-by {
  background: var(--ivory);
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2rem 1.4rem;
  flex-wrap: wrap;
}
.powered-by-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.powered-by-link {
  display: inline-flex;
  align-items: center;
  opacity: .75;
  transition: opacity var(--dur) var(--ease);
}
.powered-by-link:hover { opacity: 1; }
.powered-by-logo {
  height: 30px;
  width: auto;
}
@media (max-width: 480px) {
  .powered-by { gap: .6rem; padding: 1rem 1.2rem 1.2rem; }
  .powered-by-logo { height: 26px; }
  .powered-by-label { font-size: .62rem; }
}

/* ── 15. REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 16. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
/* ── ABOUT cross-fade timing (4 slides × 5s on, 1.4s fade) ── */
.about-slideshow .about-slide {
  animation: aboutFade 24s infinite;
  opacity: 0;
}
.about-slideshow .about-slide:nth-child(1) { animation-delay:  0s; }
.about-slideshow .about-slide:nth-child(2) { animation-delay:  6s; }
.about-slideshow .about-slide:nth-child(3) { animation-delay: 12s; }
.about-slideshow .about-slide:nth-child(4) { animation-delay: 18s; }
@keyframes aboutFade {
  0%, 22%  { opacity: 1; }
  28%, 100% { opacity: 0; }
}

/* ── HERO MOSAIC: camera-pan across each tile's cropped source.
   Range pushed all the way to the photo edges (0%–100%) so the whole
   source is revealed across one cycle. Every tile pans horizontally
   on its own duration/delay so neighbouring tiles never show the same
   crop at the same moment. */
@keyframes mosaicPanX {
  from { object-position:   0% center; }
  to   { object-position: 100% center; }
}
.shelf-mosaic-area--one   img { animation-delay:  -1s; }
.shelf-mosaic-area--two   img { animation-delay:  -3s; animation-duration: 10s; }
.shelf-mosaic-area--three img { animation-delay:  -5s; animation-duration: 11s; }
.shelf-mosaic-area--four  img { animation-delay:  -7s; }
.shelf-mosaic-area--five  img { animation-delay:  -4s; animation-duration: 13s; }

/* Paused while the tab is hidden so the animation doesn't keep advancing
   off-screen and visibly snap to a new crop when the user returns. The
   `.is-hidden` class is toggled by JS via the Page Visibility API. */
html.is-hidden .shelf-mosaic-tile img { animation-play-state: paused; }

/* Respect users who'd rather not have motion. */
@media (prefers-reduced-motion: reduce) {
  .about-slideshow .about-slide { animation: none; opacity: 0; }
  .about-slideshow .about-slide.is-active { opacity: 1; }
  .shelf-mosaic { animation: none; }
  .shelf-mosaic-tile img { animation: none; object-position: center; }
}

/* ── 17. RESPONSIVE ── */
@media (max-width: 980px) {
  .featured-track .product-card { flex-basis: calc((100% - var(--gap)) / 2); }
  .about-grid    { grid-template-columns: 1fr; gap: 2.6rem; }
  .visit-grid    { grid-template-columns: 1fr; gap: 2rem; }

  /* Single-column about: center the eyebrow, title, and ornament so they
     don't read as a left-flushed column once the photo art moves below. */
  .about-copy .eyebrow,
  .about-copy .section-title { text-align: center; }
  .about-copy .ornament-divider--left { justify-content: center; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* ── mobile navbar ── */
  .nav-inner { height: 68px; padding: 0 1.2rem; }

  /* Burger pinned to the right; visible only on mobile. */
  .nav-burger {
    display: flex;
    margin-left: auto;
  }

  /* Hide nav-links by default. `display: none` is bulletproof — no fragile
     transforms, no iOS Safari quirks where translateY can fail to clip a
     fixed element. Toggled to `display: flex` when the burger is open. */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .8rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(140,100,80,.10);
  }
  .nav-links.open { display: flex; }

  .nav-link {
    display: block;                       /* required: margins are no-ops on inline <a> */
    padding: .95rem 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-link::after { display: none; }
  .nav-link:last-child { border-bottom: none; }

  /* In the dropdown, "Sign in" / "Admin" are plain text rows like the
     other links — same row treatment, ornament prefix kept. */
  .nav-admin,
  .nav-signin {
    display: block;
    padding: .95rem 0;
  }

  /* Say Hi keeps its blush pill but becomes a full-width button at the
     bottom of the dropdown — not a floating circle. The desktop
     margin-left from .nav-cta gets reset here so it stays centered.
     display: block is what makes margin-top actually apply on an <a>. */
  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 2.6rem;
    margin-left: 0;
    padding: 1rem 1.4rem;
    border-bottom: none !important;
  }

  .hero--mosaic { padding: 90px 1rem 3rem; }
  /* Two-column collage on tablet: text + three tall images + two short ones.
     Drop the desktop fixed height so the stacked rows can size to content
     instead of cramming into ~320–440px and overlapping. */
  .shelf-mosaic {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto repeat(5, minmax(140px, 26vw));
    grid-template-areas:
      "txt   txt"
      "one   two"
      "one   three"
      "four  three"
      "four  five"
      "four  five";
  }
  .container { padding: 0 1.2rem; }
  .visit-card { padding: 2rem 1.6rem; }
  .contact-panel { padding: 3rem 1.4rem; }
}
@media (max-width: 768px) {
  .featured-carousel { padding: 0 1rem; }
  .featured-nav { width: 38px; height: 38px; font-size: 1.5rem; }
  .featured-nav--prev { left: -6px; }
  .featured-nav--next { right: -6px; }
}
@media (max-width: 600px) {
  /* Phones: stack the text on its own, then a 2-up grid of photos.
     `height: auto` releases the desktop fixed height — otherwise the five
     stacked rows get crammed into ~320px and the tiles overlap the text. */
  .shelf-mosaic {
    height: auto;
    row-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(160px, 42vw);
    grid-template-rows: auto;
    grid-template-areas:
      "txt   txt"
      "one   one"
      "two   three"
      "four  four"
      "five  five";
  }
  .shelf-mosaic-text {
    padding: 1.6rem 1.4rem;
    align-items: center;
    text-align: center;
  }
  .shelf-mosaic-text .hero-title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .shelf-mosaic-text .hero-ctas { justify-content: center; }
  .shelf-mosaic-text .hero-brand { align-items: center; }

  /* No camera pan on phones — saves battery and feels calmer at this size. */
  .shelf-mosaic-tile img {
    animation: none;
    object-position: center;
  }
}
@media (max-width: 480px) {
  .featured-track { --gap: 1.2rem; }
  .featured-track .product-card { flex-basis: 100%; }
  .btn { padding: .85rem 1.6rem; font-size: .78rem; }
  .hero-ctas { gap: .6rem; }
}

/* ============================================================
   BLOG · JOURNAL
   ============================================================ */

/* ── Blog hero (list + detail) ── */
.blog-hero {
  position: relative;
  padding: 88px 1.5rem 64px;
  background:
    radial-gradient(60% 70% at 18% 22%, rgba(244,217,215,.55) 0%, rgba(244,217,215,0) 70%),
    radial-gradient(50% 60% at 85% 78%, rgba(232,213,168,.45) 0%, rgba(232,213,168,0) 70%),
    linear-gradient(160deg, var(--ivory) 0%, var(--cream) 55%, #F3E9DC 100%);
  overflow: hidden;
  text-align: center;
}
.blog-hero--compact { padding: 70px 1.5rem 40px; }

.blog-hero-body {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  animation: fadeUp .8s var(--ease) both;
}

.blog-hero-title {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--cocoa);
  line-height: 1.05;
  margin-bottom: .25rem;
}
.blog-hero-desc {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-style: italic;
  color: var(--warm-brown);
  max-width: 560px;
  margin: .4rem auto 1.2rem;
  line-height: 1.75;
}
.blog-filter-pill {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid var(--soft-gold);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--text-mid);
  background: rgba(255,253,249,.7);
  margin-top: .4rem;
}
.blog-filter-pill strong { color: var(--cocoa); font-weight: 600; }
.blog-filter-pill a {
  color: var(--rose);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.blog-filter-pill a:hover { border-bottom-color: var(--rose); }
.blog-rss-link {
  margin-top: 1rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-rss-link a { color: inherit; }
.blog-rss-link a:hover { color: var(--cocoa); }

/* ── Filter chips ── */
.blog-filter-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.blog-filter-group { min-width: 0; }
.blog-filter-label { margin-bottom: .8rem; }
.blog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.blog-chip {
  display: inline-block;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .78rem;
  color: var(--text-mid);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.blog-chip:hover {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--cocoa);
  transform: translateY(-1px);
}
.blog-chip--tag { font-family: var(--font-body); }
.blog-chip--active {
  background: var(--blush-deep);
  border-color: var(--blush-deep);
  color: var(--white);
}
.blog-chip--active:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

/* ── Blog list cards ── */
.blog-list-section { padding: 80px 0 100px; }
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  max-width: 860px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem 2.4rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--soft-gold) 30%,
    var(--gold) 50%,
    var(--soft-gold) 70%,
    transparent 100%);
  border-radius: 2px;
  opacity: .7;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-card-meta {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.blog-card-cat {
  color: var(--rose);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.blog-card-cat:hover { border-bottom-color: var(--rose); }
.blog-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 .4rem;
}
.blog-card-title a {
  color: var(--cocoa);
  transition: color var(--dur) var(--ease);
}
.blog-card-title a:hover { color: var(--rose); }
.blog-card-summary {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 1rem;
}
.blog-card-cta {
  margin-top: 1.2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.blog-card-cta a {
  color: var(--rose);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.blog-card-cta a:hover { border-bottom-color: var(--rose); color: var(--cocoa); }
.blog-card-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .75rem;
  color: var(--text-light);
}
.blog-card-tags a {
  color: var(--text-light);
  transition: color var(--dur) var(--ease);
}
.blog-card-tags a:hover { color: var(--gold); }
.blog-empty {
  text-align: center;
  color: var(--text-mid);
  font-family: var(--font-serif);
  font-style: italic;
  padding: 4rem 0;
}

/* ── Blog article (detail) ── */
.blog-back {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.blog-back:hover { border-bottom-color: var(--rose); }
.blog-article-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 500;
  color: var(--cocoa);
  line-height: 1.15;
  margin: .8rem 0 .4rem;
}
.blog-article-meta {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-article-meta a {
  color: var(--rose);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.blog-article-meta a:hover { border-bottom-color: var(--rose); }

.blog-article-section { padding: 60px 0 100px; }
.blog-article-container { max-width: 760px; }
.blog-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 3.2rem clamp(1.6rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-soft);
}

.blog-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
}
.blog-body > * + * { margin-top: 1.1rem; }
.blog-body h2,
.blog-body h3,
.blog-body h4 {
  font-family: var(--font-serif);
  color: var(--cocoa);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 2.4rem;
}
.blog-body h2 { font-size: 1.7rem; }
.blog-body h3 { font-size: 1.35rem; }
.blog-body h4 { font-size: 1.15rem; }
.blog-body p { color: var(--text); }
.blog-body strong { color: var(--cocoa); font-weight: 600; }
.blog-body em { color: var(--warm-brown); }
.blog-body a {
  color: var(--rose);
  border-bottom: 1px solid var(--blush);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.blog-body a:hover { color: var(--cocoa); border-bottom-color: var(--gold); }
.blog-body ul,
.blog-body ol {
  padding-left: 1.4rem;
  color: var(--text);
}
.blog-body ul { list-style: none; }
.blog-body ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-top: .55rem;
}
.blog-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: .8rem;
  line-height: 1.85;
}
.blog-body ol li { margin-top: .55rem; }
.blog-body blockquote {
  margin: 1.6rem 0;
  padding: 1rem 1.4rem;
  border-left: 3px solid var(--soft-gold);
  background: var(--cream);
  border-radius: 0 8px 8px 0;
  color: var(--warm-brown);
  font-family: var(--font-serif);
  font-style: italic;
}
.blog-body code {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: .92em;
  background: var(--line-soft);
  color: var(--cocoa);
  padding: .12em .42em;
  border-radius: 4px;
}
.blog-body pre {
  background: #2d2620;
  color: #fbe7d3;
  padding: 1.1rem 1.3rem;
  border-radius: 10px;
  overflow-x: auto;
  font-size: .92rem;
  line-height: 1.65;
}
.blog-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}
.blog-body img {
  border-radius: 10px;
  margin: 1.6rem auto;
  box-shadow: var(--shadow-soft);
}
.blog-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
  margin: 2.4rem 0;
}

.blog-article-tags {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  font-size: .8rem;
  color: var(--text-light);
}
.blog-article-tags a {
  color: var(--text-light);
  letter-spacing: .04em;
  transition: color var(--dur) var(--ease);
}
.blog-article-tags a:hover { color: var(--gold); }
.blog-article-end { margin: 2.4rem auto 0; }

/* ── Comments ── */
.blog-comments {
  max-width: 760px;
  margin: 4rem auto 0;
}
.blog-comments-title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  text-align: left;
}
.blog-comments-list {
  margin: 1.6rem 0 2rem;
}
.blog-comment {
  padding: 1.2rem 0;
  border-bottom: 1px dashed var(--line);
}
.blog-comment:last-child { border-bottom: none; }
.blog-comment-meta {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .04em;
}
.blog-comment-meta strong {
  color: var(--cocoa);
  font-family: var(--font-serif);
  font-weight: 500;
}
.blog-comment-body {
  margin-top: .5rem;
  color: var(--text);
  white-space: pre-wrap;
  line-height: 1.8;
}
.blog-comments-empty {
  color: var(--text-mid);
  font-family: var(--font-serif);
  font-style: italic;
  margin: 1rem 0 1.5rem;
}
.blog-comment-help {
  font-size: .85rem;
  color: var(--text-mid);
  margin: 1.2rem 0 1rem;
}

.blog-comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}
.blog-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.blog-field-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-field-label small {
  text-transform: none;
  letter-spacing: 0;
  font-size: .68rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: .25rem;
}
.blog-comment-form input,
.blog-comment-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .8rem 1rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-comment-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.16);
}
.blog-honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.blog-comment-submit {
  align-self: flex-start;
}
.blog-comment-msg {
  margin-top: .4rem;
  font-size: .9rem;
  color: var(--text-mid);
  min-height: 1.2em;
}
.blog-comment-msg.is-pending { color: var(--warm-brown); }
.blog-comment-msg.is-success { color: #6B8E5A; }
.blog-comment-msg.is-error   { color: #B3524A; }

@media (max-width: 720px) {
  .blog-filter-bar { grid-template-columns: 1fr; gap: 1.6rem; }
  .blog-card { padding: 1.8rem 1.6rem; }
  .blog-article { padding: 2.2rem 1.4rem; }
  .blog-list-section { padding: 60px 0 80px; }
}

/* ────────────────────────────────────────────────────────────────────────
   Shop · in-store-pill, notify form, cart controls
   Previously inline on home.html; moved here so the partial renders the
   same way on /shop/ pages and any future surface.
   ──────────────────────────────────────────────────────────────────────── */
.product-card--instore .product-media { position: relative; }
.in-store-pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--ivory, #FFFDF9);
  color: var(--cocoa, #5C4A3A);
  border: 1px solid var(--soft-gold, #E8D5A8);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(140,100,80,.12);
  z-index: 2;
}
.in-store-ctas {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.cta-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-body, 'Raleway', sans-serif);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.cta-pill--solid {
  background: var(--cocoa, #5C4A3A);
  color: var(--ivory, #FFFDF9);
}
.cta-pill--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(140,100,80,.22);
}
.cta-pill--ghost {
  background: transparent;
  color: var(--cocoa, #5C4A3A);
  border-color: var(--blush, #F4D9D7);
}
.cta-pill--ghost:hover {
  background: var(--blush, #F4D9D7);
  transform: translateY(-2px);
}
.notify-form {
  display: flex; gap: 8px; align-items: stretch; flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line, #EFE6DC);
}
.notify-form[hidden] { display: none; }
.notify-form input[type=email] {
  flex: 1;
  min-width: 180px;
  padding: 9px 14px;
  border: 1px solid var(--line, #EFE6DC);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  background: var(--ivory, #FFFDF9);
  color: var(--text, #4A3F38);
  transition: border-color .2s, box-shadow .2s;
}
.notify-form input[type=email]:focus {
  outline: none;
  border-color: var(--gold, #C9A961);
  box-shadow: 0 0 0 3px rgba(201,169,97,.14);
}
.notify-form button[type=submit] {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: var(--gold, #C9A961);
  color: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.notify-form button[type=submit]:hover {
  background: #b59653;
  transform: translateY(-2px);
}
.notify-msg {
  width: 100%;
  margin-top: 4px;
  font-size: 12px;
  color: var(--warm-brown, #8B6F5C);
}
.notify-msg.is-error { color: #B3524A; }
.notify-msg.is-success { color: #6B8E5A; }

/* Shop list layout */
.shop-page { padding: 60px 0 100px; background: var(--cream, #FAF6F1); }
/* Shop list owns the full page width (modulo a small breath margin), and
   uses square cards — overrides the site-wide narrow .container + rounded
   .product-card defaults without touching the home Featured carousel. */
.shop-page .container { max-width: 95vw; padding: 0 clamp(1rem, 2vw, 2rem); }
.shop-grid .product-card { border-radius: 0; border-color: transparent; }
.shop-grid .product-card .in-store-pill { border-radius: 999px; }  /* keep the badge pill round */
.shop-header { text-align: center; margin-bottom: 36px; }
.shop-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: center;
  margin: 0 auto 36px;
  max-width: 900px;
}
.shop-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line, #EFE6DC);
  background: var(--ivory, #FFFDF9);
  color: var(--cocoa, #5C4A3A);
  font-family: var(--font-body, 'Raleway', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.shop-chip:hover { transform: translateY(-1px); border-color: var(--gold, #C9A961); }
.shop-chip.is-active {
  background: var(--blush, #F4D9D7);
  border-color: var(--rose, #D89690);
  color: var(--cocoa, #5C4A3A);
}
.shop-grid {
  display: grid;
  /* Fixed 3-per-row on desktop now that we paginate at 6 (two clean rows).
     Drops to 2 cols on tablet, 1 on phone. */
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 620px) { .shop-grid { grid-template-columns: 1fr; gap: 18px; } }
.shop-empty {
  text-align: center;
  color: var(--warm-brown, #8B6F5C);
  font-family: var(--font-script, 'Dancing Script', cursive);
  font-size: 1.4rem;
  padding: 60px 0;
}

/* Product detail page */
.product-detail { padding: 60px 0 100px; background: var(--cream, #FAF6F1); }
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.product-gallery-main {
  aspect-ratio: 4/5;
  background: var(--ivory, #FFFDF9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(140,100,80,.10);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-gallery-thumbs img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 10px;
  border: 1px solid var(--line, #EFE6DC); cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.product-gallery-thumbs img:hover { border-color: var(--gold, #C9A961); transform: translateY(-1px); }
.product-detail-info h1 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 2.4rem;
  color: var(--cocoa, #5C4A3A);
  margin: 0 0 8px;
}
.product-detail-price {
  font-family: var(--font-body, 'Raleway', sans-serif);
  font-size: 1.4rem;
  color: var(--cocoa, #5C4A3A);
  font-weight: 600;
  margin: 8px 0 18px;
}
.product-detail-desc { color: var(--text, #4A3F38); line-height: 1.7; margin: 18px 0; }
.variant-picker { margin: 22px 0; }
.variant-picker-label {
  font-family: var(--font-body, 'Raleway', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm-brown, #8B6F5C);
  margin-bottom: 8px;
}
.variant-picker select {
  width: 100%;
  max-width: 420px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line, #EFE6DC);
  background: var(--ivory, #FFFDF9);
  color: var(--cocoa, #5C4A3A);
  font-family: inherit;
  font-size: 14px;
}
.detail-ctas { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Nav bag link + count badge */
.nav-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--rose, #D89690);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Cart page */
.cart-page { padding: 60px 0 100px; background: var(--cream, #FAF6F1); }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty .lead {
  font-family: var(--font-script, 'Dancing Script', cursive);
  font-size: 1.7rem;
  color: var(--warm-brown, #8B6F5C);
}
.cart-list {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 760px; margin: 0 auto 28px;
}
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px; align-items: center;
  padding: 14px;
  background: var(--ivory, #FFFDF9);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(140,100,80,.07);
}
.cart-line img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; }
.cart-line-meta { display: flex; flex-direction: column; gap: 4px; }
.cart-line-meta .name { font-family: var(--font-display, 'Playfair Display', serif); color: var(--cocoa, #5C4A3A); font-size: 1.05rem; }
.cart-line-meta .variant { color: var(--warm-brown, #8B6F5C); font-size: 0.85rem; letter-spacing: .04em; }
.cart-line-meta .price { color: var(--cocoa, #5C4A3A); font-weight: 600; }
.cart-line-right { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.cart-qty-form { display: flex; gap: 4px; align-items: center; }
.cart-qty-form input[type=number] {
  width: 56px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line, #EFE6DC);
  background: var(--ivory, #FFFDF9);
  text-align: center;
  font-family: inherit;
}
.cart-qty-form button {
  border: none;
  background: var(--blush, #F4D9D7);
  color: var(--cocoa, #5C4A3A);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.cart-remove {
  border: none;
  background: transparent;
  color: var(--warm-brown, #8B6F5C);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-totals {
  max-width: 760px; margin: 0 auto;
  background: var(--ivory, #FFFDF9);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 14px rgba(140,100,80,.07);
  display: flex; flex-direction: column; gap: 8px;
}
.cart-total-line { display: flex; justify-content: space-between; }
.cart-total-line.grand {
  border-top: 1px dashed var(--line, #EFE6DC);
  padding-top: 12px;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cocoa, #5C4A3A);
}
.cart-cta-row { margin-top: 14px; text-align: right; }
.flash-messages {
  max-width: 760px; margin: 0 auto 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.flash {
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ivory, #FFFDF9);
  border: 1px solid var(--soft-gold, #E8D5A8);
  color: var(--cocoa, #5C4A3A);
  font-size: 13.5px;
}
.flash.error { border-color: #E8B4B0; }
.flash.success { border-color: #C8E0B6; }

/* Shop pagination */
.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 700px;
}
.shop-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line, #EFE6DC);
  background: var(--ivory, #FFFDF9);
  color: var(--cocoa, #5C4A3A);
  font-family: var(--font-body, 'Raleway', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.shop-page-link:hover {
  transform: translateY(-1px);
  border-color: var(--gold, #C9A961);
}
.shop-page-link.is-active {
  background: var(--blush, #F4D9D7);
  border-color: var(--rose, #D89690);
  color: var(--cocoa, #5C4A3A);
  font-weight: 700;
}
.shop-page-link.is-disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* In-store drawer (Come see in store CTA) */
.instore-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.instore-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.instore-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 40, 30, 0.42);
  opacity: 0;
  transition: opacity .35s var(--ease, ease);
}
.instore-drawer.is-open .instore-drawer-overlay { opacity: 1; }
.instore-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--ivory, #FFFDF9);
  box-shadow: -12px 0 40px rgba(140,100,80,.18);
  padding: 64px 36px 36px;
  transform: translateX(100%);
  transition: transform .4s var(--ease, ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.instore-drawer.is-open .instore-drawer-panel { transform: translateX(0); }
.instore-drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line, #EFE6DC);
  background: var(--cream, #FAF6F1);
  color: var(--cocoa, #5C4A3A);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.instore-drawer-close:hover {
  background: var(--blush, #F4D9D7);
  transform: rotate(90deg);
}
.instore-drawer-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.9rem;
  color: var(--cocoa, #5C4A3A);
  margin: 0;
  letter-spacing: .01em;
}
.instore-drawer-addr {
  font-style: normal;
  color: var(--text, #4A3F38);
  line-height: 1.65;
  font-size: 15px;
}
.instore-drawer-addr .visit-inside {
  color: var(--warm-brown, #8B6F5C);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.instore-drawer-hours {
  font-family: var(--font-script, 'Dancing Script', cursive);
  color: var(--rose, #D89690);
  font-size: 1.3rem;
  margin: 0;
}
.instore-drawer-cta {
  align-self: flex-start;
  margin-top: 10px;
}

/* Respect reduced-motion: no slide, just fade. */
@media (prefers-reduced-motion: reduce) {
  .instore-drawer-panel,
  .instore-drawer-overlay { transition: opacity .2s ease; }
  .instore-drawer-panel { transform: none; opacity: 0; }
  .instore-drawer.is-open .instore-drawer-panel { opacity: 1; }
}

/* Clickable cards — applies anywhere the partial is used (shop list +
   home Featured carousel). The existing `.product-card:hover` already
   raises the card, so we only need the cursor cue here. */
.product-card[data-href] { cursor: pointer; }

/* Product-name link wrapper — keep the heading look, just make it
   navigable. Used by every surface the partial renders on. */
.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.product-name a:hover { color: var(--rose, #D89690); }

/* Mailing-list form inside the Contact panel — narrower, centered,
   without the dashed top border the product-card notify form needs. */
.contact-newsletter {
  max-width: 460px;
  margin: 22px auto 0;
  border-top: none;
  padding-top: 0;
  justify-content: center;
}
.contact-newsletter input[type=email] { min-width: 240px; }

/* Home "A few sweet things" — match the shop visual language: full-width
   container, square cards, bigger gap. The carousel already paginates 3
   cards per page (.featured-track .product-card flex-basis = 1/3) so we
   don't touch the JS or flex logic. */
#featured .container { max-width: 95vw; padding: 0 clamp(1rem, 2vw, 2rem); }
.featured-track .product-card {
  border-radius: 0;
  border-color: transparent;
}
.featured-track .product-card .in-store-pill { border-radius: 999px; }
/* Tighter visual rhythm now that cards are wider. */
.featured-track { --gap: 32px; }
