/* ═══════════════════════════════════════════════════════
   GISELLE BOSS — main.css
   Matches the approved HTML design exactly
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --sage-deep:    #6B8F71;
  --sage:         #8FAF8C;
  --sage-mid:     #A8C5A0;
  --sage-light:   #C8DEC5;
  --sage-pale:    #E4EFE2;
  --sage-mist:    #F2F7F1;
  --white:        #FFFFFF;
  --warm-white:   #FAFCFA;
  --text:         #2C3B2D;
  --text-soft:    #4A5E4B;
  --muted:        #7A9279;
  --gold:         #B8975A;
  --gold-light:   #D4B87A;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --script:       'Great Vibes', cursive;
  --sans:         'Jost', sans-serif;
  --r:            16px;
  --r-lg:         24px;
  --max-w:        1200px;
  --side-pad:     6vw;
}

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

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-bar {
  background: var(--sage-deep);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 35s linear infinite;
}
.ticker-track span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-pale);
  padding: 0 2.8rem;
}
.ticker-track span::before { content: '✦  '; color: var(--gold-light); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,252,250,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sage-light);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--script);
  font-size: 32px;
  color: var(--sage-deep);
  line-height: 1;
}
.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-menu a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--sage-deep);
  transition: width 0.25s;
}
.nav-menu a:hover { color: var(--sage-deep); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  background: var(--sage-deep) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage) !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 22px; color: var(--text);
  padding: 4px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-sage {
  display: inline-block;
  background: var(--sage-deep);
  color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(107,143,113,0.3);
  border: none;
}
.btn-sage:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,143,113,0.4);
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--sage-mid);
  color: var(--text);
  padding: 14px 30px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline:hover {
  background: var(--sage-pale);
  border-color: var(--sage-deep);
  color: var(--text);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: var(--sage-mist);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(143,175,140,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(107,143,113,0.12) 0%, transparent 45%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vw 5vw 8vw 8vw;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  color: var(--sage-deep);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300; line-height: 1.08;
  color: var(--text); margin-bottom: 0.5rem;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-h1 .script-word {
  display: block;
  font-family: var(--script);
  font-size: clamp(58px, 7.5vw, 110px);
  color: var(--sage-deep); line-height: 1.05;
}
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--text-soft);
  max-width: 480px; margin: 1.8rem 0 2.8rem;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-sub strong { font-weight: 600; color: var(--sage-deep); }
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.24s ease both;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.32s ease both;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600;
  color: var(--sage-deep); line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.hero-right { position: relative; overflow: hidden; }
.hero-photo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage-mid) 50%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-frame {
  width: 68%; aspect-ratio: 3/4;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; backdrop-filter: blur(4px);
  font-size: 48px; opacity: 0.6;
}
.hero-photo-frame p {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-float {
  position: absolute;
  background: var(--white); border-radius: var(--r);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(44,59,45,0.1);
  font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap;
  animation: floatBob 7s ease-in-out infinite alternate;
}
.float-icon { font-size: 20px; }
.hero-float-1 { top: 16%; left: -40px; animation-delay: 0s; }
.hero-float-2 { bottom: 30%; left: -50px; animation-delay: 2s; }
.hero-float-3 { top: 52%; right: 8%; animation-delay: 1s; }

@keyframes floatBob { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE DIVIDER ─────────────────────────────────────── */
.marquee-divider {
  background: var(--sage-pale);
  border-top: 1px solid var(--sage-light);
  border-bottom: 1px solid var(--sage-light);
  padding: 14px 0; overflow: hidden;
}
.marquee-inner {
  display: inline-flex;
  animation: tickerScroll 22s linear infinite;
}
.marquee-inner span {
  font-family: var(--serif);
  font-size: 18px; font-style: italic;
  color: var(--sage-deep); padding: 0 2.4rem;
}
.marquee-inner span::before { content: '—  '; color: var(--gold); }

/* ── SECTION COMMON ──────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--script);
  font-size: 28px; color: var(--sage-deep);
  margin-bottom: 0.3rem;
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300; line-height: 1.1; margin-bottom: 3.5rem;
}
.section-h2 em { font-style: italic; color: var(--sage-deep); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  padding: 7rem var(--side-pad);
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 6rem; align-items: center;
  background: var(--white);
  max-width: 100%;
}
.about-img-box {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--sage-pale), var(--sage-light));
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; font-size: 52px;
  box-shadow: 0 24px 60px rgba(107,143,113,0.15);
}
.about-img-box p {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.about-img-box img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--r-lg);
}
.about-script {
  font-family: var(--script);
  font-size: 30px; color: var(--sage-deep); margin-bottom: 0.6rem;
}
.about-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300; line-height: 1.12; margin-bottom: 1.4rem;
}
.about-h2 em { font-style: italic; color: var(--sage-deep); }
.about-body {
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--text-soft); margin-bottom: 1.6rem;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.4rem; }
.tag {
  background: var(--sage-mist);
  border: 1px solid var(--sage-light);
  color: var(--text-soft);
  font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
  transition: background 0.2s, border-color 0.2s;
}
.tag:hover { background: var(--sage-pale); border-color: var(--sage-mid); }

/* ── CATEGORIES ──────────────────────────────────────────── */
.categories-section {
  padding: 7rem var(--side-pad);
  background: var(--sage-mist);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem 2rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 2px 16px rgba(44,59,45,0.05);
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid transparent;
  text-decoration: none; color: inherit;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(107,143,113,0.14);
  border-color: var(--sage-light);
}
.cat-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 4px;
  background: var(--sage-pale);
}
.cat-name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600; line-height: 1.2;
}
.cat-blurb {
  font-size: 13px; font-weight: 300;
  color: var(--text-soft); line-height: 1.65; flex: 1;
}
.cat-link {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-deep);
  display: flex; align-items: center; gap: 5px;
  margin-top: 8px; transition: gap 0.2s;
}
.cat-card:hover .cat-link { gap: 9px; }

/* ── BLOG PINS ───────────────────────────────────────────── */
.pins-section {
  padding: 7rem var(--side-pad);
  background: var(--white);
}
.pins-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 3rem;
}
.view-all {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-deep);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.view-all:hover { gap: 9px; color: var(--sage-deep); }
.pins-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.pin-card {
  background: var(--warm-white);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--sage-pale);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 2px 14px rgba(44,59,45,0.05);
  display: block; color: inherit;
}
.pin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(107,143,113,0.13);
  border-color: var(--sage-light);
}
.pin-card.featured { grid-row: span 2; }
.pin-thumb {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  background: linear-gradient(140deg, var(--sage-light), var(--sage-mid));
  overflow: hidden;
}
.pin-card.featured .pin-thumb { height: 280px; }
.pin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pin-cat-badge {
  position: absolute; top: 14px; left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-deep); padding: 4px 12px; border-radius: 50px;
}
.pin-body { padding: 1.4rem 1.5rem 1.8rem; }
.pin-title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
  line-height: 1.3; margin-bottom: 8px;
  color: var(--text);
}
.pin-card.featured .pin-title { font-size: 22px; }
.pin-excerpt {
  font-size: 13px; font-weight: 300;
  color: var(--text-soft); line-height: 1.65; margin-bottom: 1rem;
}
.pin-meta {
  font-size: 11px; font-weight: 500; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}

/* ── SHOP / DOWNLOADS ────────────────────────────────────── */
.shop-section {
  padding: 7rem var(--side-pad);
  background: var(--sage-mist);
  position: relative; overflow: hidden;
}
.shop-section::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light), transparent 70%);
  opacity: 0.5; pointer-events: none;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 3.5rem;
  position: relative; z-index: 1;
}
.shop-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,59,45,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
  display: block; color: inherit;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(107,143,113,0.15);
  border-color: var(--sage-light);
  color: inherit;
}
.shop-thumb {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-light));
  overflow: hidden;
}
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-body { padding: 1.2rem 1.4rem 1.6rem; }
.shop-type {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 6px;
}
.shop-name {
  font-family: var(--serif);
  font-size: 16px; font-weight: 600;
  line-height: 1.3; margin-bottom: 12px;
}
.shop-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.shop-price { font-size: 14px; font-weight: 600; color: var(--text); }
.shop-btn {
  background: var(--sage-deep); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 50px;
  transition: background 0.2s; border: none;
}
.shop-btn:hover { background: var(--sage); }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section {
  padding: 6rem var(--side-pad);
  background: var(--white); text-align: center;
}
.gallery-script {
  font-family: var(--script);
  font-size: 30px; color: var(--sage-deep); margin-bottom: 0.4rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px; margin: 2.5rem 0;
}
.g-tile {
  aspect-ratio: 1; border-radius: var(--r);
  background: linear-gradient(140deg, var(--sage-light), var(--sage-mid));
  overflow: hidden; cursor: pointer;
  transition: transform 0.22s;
  border: 1px solid var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.g-tile:hover { transform: scale(1.04); }
.g-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-section {
  background: var(--sage-deep);
  padding: 6rem var(--side-pad);
  text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08); pointer-events: none;
}
.newsletter-section::after {
  content: ''; position: absolute; bottom: -80px; right: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06); pointer-events: none;
}
.nl-script {
  font-family: var(--script);
  font-size: 32px; color: var(--sage-pale); margin-bottom: 0.4rem;
}
.nl-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300; color: var(--white);
  margin-bottom: 1rem; line-height: 1.15;
}
.nl-h2 em { font-style: italic; color: var(--gold-light); }
.nl-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 440px; margin: 0 auto 2.4rem; line-height: 1.75;
}
.nl-form {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; max-width: 480px; margin: 0 auto;
  position: relative; z-index: 1;
}
.nl-input {
  flex: 1; min-width: 220px; padding: 14px 22px;
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px;
  background: rgba(255,255,255,0.1);
  font-family: var(--sans); font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.45); }
.nl-input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.nl-btn {
  background: var(--white); color: var(--sage-deep);
  padding: 14px 28px; border-radius: 50px; border: none;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.nl-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(0,0,0,0.2); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--text); color: var(--white);
  padding: 5rem var(--side-pad) 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--script); font-size: 38px;
  color: var(--sage-light); margin-bottom: 1rem; line-height: 1;
  display: block;
}
.footer-about {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 240px;
}
.footer-heading {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-mid); margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45); transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.28);
}
.footer-socials { display: flex; gap: 12px; }
.social-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.social-dot:hover { background: rgba(143,175,140,0.2); border-color: var(--sage-mid); }

/* ── BLOG PAGE ───────────────────────────────────────────── */
.blog-wrap { padding: 6rem var(--side-pad); }
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.post-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--sage-pale);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block; color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(107,143,113,0.12); color: inherit; }
.post-thumb {
  height: 200px; overflow: hidden;
  background: linear-gradient(140deg, var(--sage-light), var(--sage-mid));
  display: flex; align-items: center; justify-content: center; font-size: 44px;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 1.4rem 1.5rem 1.8rem; }
.post-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 8px; display: block;
}
.post-title {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  line-height: 1.3; margin-bottom: 8px; color: var(--text);
}
.post-excerpt { font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 1rem; }
.post-meta { font-size: 11px; color: var(--muted); }

/* Single post */
.single-post-wrap { padding: 5rem var(--side-pad); max-width: 800px; margin: 0 auto; }
.single-post-wrap h1 { font-family: var(--serif); font-size: clamp(28px,4vw,52px); margin-bottom: 1rem; font-weight: 300; }
.single-post-wrap h2 { font-family: var(--serif); font-size: 26px; margin: 2rem 0 1rem; color: var(--sage-deep); }
.single-post-wrap h3 { font-family: var(--serif); font-size: 20px; margin: 1.5rem 0 0.8rem; }
.single-post-wrap p { font-size: 16px; line-height: 1.85; margin-bottom: 1.2rem; color: var(--text-soft); }
.single-post-wrap img { border-radius: var(--r); margin: 2rem 0; }

/* ── SINGLE PRODUCT PAGE (WooCommerce) ───────────────────── */
.woo-main-wrap { padding: 5rem 0; }
.woocommerce div.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}
.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-light));
  min-height: 320px; display: flex; align-items: center; justify-content: center;
}
.woocommerce div.product .summary {  }
.woocommerce div.product .product_title {
  font-family: var(--serif); font-size: clamp(28px,3vw,44px);
  font-weight: 300; color: var(--text); margin-bottom: 1rem;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 1.5rem;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--serif); font-size: 32px; color: var(--sage-deep) !important;
  font-weight: 600; margin-bottom: 1.5rem; display: block;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button.alt,
.single_add_to_cart_button {
  background: var(--sage-deep) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-family: var(--sans) !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  border: none !important; cursor: pointer;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 4px 22px rgba(107,143,113,0.3) !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.single_add_to_cart_button:hover {
  background: var(--sage) !important;
  transform: translateY(-2px) !important;
}

/* ── SHOP ARCHIVE (WooCommerce) ──────────────────────────── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin: 0 !important; padding: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--sage-pale);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 16px rgba(44,59,45,0.05);
  margin: 0 !important; float: none !important;
  width: 100% !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(107,143,113,0.13);
}
.woocommerce ul.products li.product a img {
  border-radius: 0; margin: 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--serif) !important; font-size: 18px !important;
  font-weight: 600 !important; color: var(--text) !important;
  padding: 1rem 1.2rem 0.4rem !important;
}
.woocommerce ul.products li.product .price {
  color: var(--sage-deep) !important; font-weight: 700;
  font-size: 16px !important; padding: 0 1.2rem !important;
}
.woocommerce ul.products li.product .button {
  margin: 0.8rem 1.2rem 1.2rem !important;
}

/* ── CART & CHECKOUT ─────────────────────────────────────── */
.woocommerce-cart .woo-main-wrap,
.woocommerce-checkout .woo-main-wrap { padding: 4rem 0; }
.woocommerce table.shop_table {
  border: 1px solid var(--sage-light) !important;
  border-radius: var(--r) !important; overflow: hidden;
}
.woocommerce table.shop_table th {
  background: var(--sage-deep) !important; color: var(--white) !important;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.woocommerce table.shop_table td { border-color: var(--sage-light) !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1.5px solid var(--sage-light) !important; border-radius: var(--r-sm) !important;
  font-family: var(--sans) !important; padding: 10px 14px !important;
  transition: border-color 0.2s !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--sage-deep) !important; outline: none !important;
}
.woocommerce #payment { background: var(--sage-mist) !important; border-radius: var(--r) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 6rem var(--side-pad); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .woocommerce div.product { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pins-grid { grid-template-columns: 1fr; }
  .pin-card.featured { grid-row: auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .posts-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--warm-white);
    padding: 1.5rem var(--side-pad) 2rem;
    border-bottom: 1px solid var(--sage-light);
    gap: 1.5rem; z-index: 199;
  }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .hero-h1 { font-size: 38px; }
  .hero-h1 .script-word { font-size: 46px; }
}
