/* ═══════════════════════════════════════════
   MOONRAT APOTHECARY — CSS
   Parchment · Botanical · Apothecary aesthetic
═══════════════════════════════════════════ */

:root {
  --parchment: #f5ede0;
  --parchment-dark: #e8d9c0;
  --parchment-mid: #ede0cc;
  --ink: #1e1208;
  --ink-mid: #3d2910;
  --ink-light: #5c3d2e;
  --ink-muted: #7a5c46;
  --accent-gold: #8b6914;
  --accent-green: #3d5a3e;
  --white: #fdf8f0;

  --font-display: 'Cinzel', serif;
  --font-body: 'Crimson Text', serif;
  --font-italic: 'IM Fell English', serif;

  --nav-height: 130px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Parchment & Grain Textures */
.parchment-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(180,140,80,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(120,80,40,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(200,160,100,0.05) 0%, transparent 50%);
}

.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(245,237,224,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(92,61,46,0.15);
  transition: transform 0.35s ease;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); letter-spacing: 0.05em;
}

.nav-logo-img {
  width: 108px; height: 108px;
  object-fit: contain;
  opacity: 1;


}

.logo-text {
  font-size: 1.4rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.hero-logo-img {
  width: 190px; height: 190px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.15));
}






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

.nav-links a {
  text-decoration: none; color: var(--ink-mid);
  font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links .nav-cta {
  border: 1px solid var(--ink-light); padding: 0.5rem 1.3rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover { background: var(--ink); color: var(--parchment); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--parchment); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.2rem 0; }
.mobile-menu ul a {
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink);
}

/* ═══ PAGE SYSTEM ═══ */
.page {
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative; z-index: 2;
  animation: pageIn 0.4s ease;
}

.page.hidden { display: none; }

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

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--ink-light);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--ink); color: var(--parchment); border-color: var(--ink); }

/* ═══ ORNAMENTS ═══ */
.rule-ornament {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.3em;
  color: var(--ink-muted); text-align: center;
  margin: 1rem 0;
}
.rule-ornament.light { color: rgba(245,237,224,0.6); }

/* ═══ HERO ═══ */
.hero {
  min-height: calc(100vh - var(--nav-height) - 40px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  position: relative; overflow: hidden;
  padding: 3rem 2rem;
}

.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245,237,224,0.55) 0%, rgba(245,237,224,0.72) 55%, rgba(245,237,224,0.88) 100%);
  z-index: 1;
}

/* Decorative corner marks */
.hero-decor {
  position: absolute; font-size: 1.5rem; color: rgba(92,61,46,0.15);
}
.hero-decor.top-left { top: 3rem; left: 3rem; }
.hero-decor.top-right { top: 3rem; right: 3rem; }

.hero-content {
  max-width: 700px; text-align: center; position: relative; z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 1.5rem;
}

.hero-title-wrap {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; margin-bottom: 1.5rem;
}

.hero-rule { flex: 1; height: 1px; background: var(--ink-light); opacity: 0.3; max-width: 80px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700; letter-spacing: 0.05em;
  line-height: 1.05; color: var(--ink);
}

.hero-sub {
  font-family: var(--font-italic);
  font-size: 1.15rem; color: var(--ink-mid);
  margin-bottom: 2.5rem; line-height: 1.8;
}

/* Stamp-style tagline, like a hand-inked apothecary rubber stamp */
.hero-stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero-footer-text {
  position: absolute; bottom: 2rem; left: 0; right: 0; text-align: center;
  font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-muted); opacity: 0.6;
}

/* ═══ FEATURED STRIP ═══ */
.featured-strip {
  padding: 2.5rem 2rem 2.5rem;
  background: rgba(139,105,20,0.04);
  border-top: 1px solid rgba(92,61,46,0.1);
  border-bottom: 1px solid rgba(92,61,46,0.1);
}

.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.06em; color: var(--ink); margin: 0.5rem 0;
}
.section-sub {
  font-family: var(--font-italic);
  color: var(--ink-muted); font-size: 1.05rem;
}

.product-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: rgba(245,237,224,0.7);
  border: 1px solid rgba(92,61,46,0.15);
  padding: 2rem 1.5rem;
  text-align: center; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(92,61,46,0.02);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(92,61,46,0.1); border-color: rgba(92,61,46,0.3); }
.product-card:hover::before { opacity: 1; }

.product-card-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-muted);
  border: 1px solid rgba(92,61,46,0.2); padding: 0.2rem 0.5rem;
}

.product-illustration {
  width: 100px; height: 100px; margin: 0 auto 1.5rem;
  opacity: 0.85;
}
.product-illustration svg { width: 100%; height: 100%; }

.product-type {
  font-family: var(--font-display); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.product-card h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  letter-spacing: 0.06em; color: var(--ink);
  margin-bottom: 0.8rem;
}

.product-desc {
  font-family: var(--font-italic);
  font-size: 0.92rem; color: var(--ink-mid); line-height: 1.6;
  margin-bottom: 1rem;
}

.product-weight {
  font-family: var(--font-display); font-size: 0.85rem;
  letter-spacing: 0.12em; color: var(--ink);
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ═══ PHILOSOPHY BANNER ═══ */
.philosophy-banner {
  background: var(--ink);
  padding: 2.5rem 2rem;
}

.philosophy-inner {
  max-width: 1000px; margin: 0 auto; text-align: center;
}

.philosophy-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(245,237,224,0.85); line-height: 1.8;
  margin: 1rem 0 3rem;
}

.philosophy-pillars {
  display: flex; align-items: flex-start; justify-content: center; gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar { flex: 1; max-width: 240px; }
.pillar-icon { font-size: 1.3rem; color: rgba(245,237,224,0.4); display: block; margin-bottom: 0.8rem; }
.pillar h4 { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,237,224,0.9); margin-bottom: 0.6rem; }
.pillar p { font-family: var(--font-italic); font-size: 0.95rem; color: rgba(245,237,224,0.55); line-height: 1.7; }

.pillar-divider { color: rgba(245,237,224,0.15); font-size: 2rem; padding-top: 0.5rem; }

/* ═══ PAGE HERO ═══ */
.page-hero {
  text-align: center; padding: 3rem 2rem 2rem;
  border-bottom: 1px solid rgba(92,61,46,0.12);
  margin-bottom: 2.5rem;
}

.page-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.08em; color: var(--ink);
  margin: 0.5rem 0;
}

.page-sub {
  font-family: var(--font-italic);
  font-size: 1.1rem; color: var(--ink-muted);
}

.page-title-sm {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

/* ═══ SHOP ═══ */
.shop-grid-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem 2.5rem; }
.shop-grid { display: flex; flex-direction: column; gap: 0; }

.shop-product {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 0;
}

.shop-product-reverse { direction: rtl; }
.shop-product-reverse > * { direction: ltr; }

.shop-product-image {
  position: relative; display: flex; align-items: center; justify-content: center;
}

.product-illustration-large {
  width: 280px; height: 280px; opacity: 0.9;
  padding: 2.5rem;
  border: 1px solid rgba(92,61,46,0.12);
  background: rgba(245,237,224,0.5);
}
.product-illustration-large svg { width: 100%; height: 100%; }

.shop-product-type {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem;
}

.shop-product-name {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: 0.05em; color: var(--ink); margin-bottom: 0.6rem;
  font-weight: 700;
}

.product-name-suffix {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}
.shop-tile-name .product-name-suffix { font-size: 0.6rem; margin-top: 0.25rem; }
.shop-product-name .product-name-suffix { font-size: 0.95rem; margin-top: 0.4rem; }

.product-rating-line {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  text-decoration: none; margin-bottom: 0.8rem;
}
.product-rating-stars { color: var(--accent-gold); font-size: 0.95rem; letter-spacing: 0.12em; }
.product-rating-count {
  font-family: var(--font-display); font-size: 0.8rem;
  color: var(--ink-muted); transition: color 0.2s;
}
.product-rating-line:hover .product-rating-count { color: var(--ink); text-decoration: underline; }

.shop-product-tagline {
  font-family: var(--font-italic);
  font-size: 1.1rem; color: var(--ink-mid); margin-bottom: 1rem;
}

.product-tagline-divider {
  border-top: 1px solid rgba(92,61,46,0.15);
  margin-bottom: 1.4rem;
}

.product-size-picker { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.product-size-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  font-family: var(--font-display);
  color: var(--ink-mid); background: rgba(255,253,248,0.6);
  border: 1px solid rgba(92,61,46,0.25); padding: 0.7rem 1.3rem;
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.product-size-btn-weight { font-size: 0.8rem; letter-spacing: 0.08em; }
.product-size-btn-divider { width: 100%; height: 1px; background: currentColor; opacity: 0.3; }
.product-size-btn-price { font-size: 0.95rem; font-weight: 700; }
.product-size-btn:hover { border-color: rgba(92,61,46,0.5); }
.product-size-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.shop-divider {
  font-size: 1.3rem; color: var(--ink-muted);
  display: block; margin: 1.2rem 0; opacity: 0.5;
}

.shop-product-description {
  font-size: 1rem; color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 1.5rem;
}

.shop-ingredients {
  background: rgba(92,61,46,0.04);
  border-left: 2px solid rgba(92,61,46,0.2);
  padding: 1rem 1.2rem; margin-bottom: 2rem;
}
.shop-ingredients h4 {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.4rem;
}
.shop-ingredients p {
  font-family: var(--font-italic);
  font-size: 1rem; color: var(--ink-mid);
}

.shop-divider-full {
  text-align: center; padding: 1rem 0;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.3em;
  color: var(--ink-muted); opacity: 0.4;
  border-top: 1px solid rgba(92,61,46,0.1);
}

.shop-note {
  text-align: center; padding: 4rem 2rem;
  background: rgba(139,105,20,0.04);
  border-top: 1px solid rgba(92,61,46,0.1);
  margin-top: 2rem;
}
.shop-note p {
  font-family: var(--font-italic);
  font-size: 1.05rem; color: var(--ink-muted); margin-bottom: 1.5rem;
}

/* ═══ SHOP TILE GRID ═══ */
.shop-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.shop-tile {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}

.shop-tile-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(92,61,46,0.15);
  background: rgba(255,253,248,0.5);
}

.shop-tile-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.shop-tile:hover .shop-tile-photo {
  transform: scale(1.05);
}

.shop-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(30,18,8,0.82);
  color: rgba(245,237,224,0.95);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s ease;
}

.shop-tile:hover .shop-tile-overlay { opacity: 1; }

.shop-tile-overlay p {
  font-family: var(--font-italic);
  font-size: 0.92rem; line-height: 1.6;
}

.shop-tile-info { padding: 0.9rem 0.2rem 0; text-align: center; }

.shop-tile-type {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); margin-top: 0.35rem;
}

.shop-tile-name {
  font-family: var(--font-display); font-size: 1.15rem;
  letter-spacing: 0.05em; color: var(--ink);
}

@media (max-width: 900px) {
  .shop-tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shop-tile-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* ═══ SINGLE PRODUCT PAGE ═══ */
.product-page-wrap { max-width: 1100px; margin: 0 auto; padding: 2rem 2rem 3rem; }

.product-back-link {
  display: inline-block; margin-bottom: 2.5rem;
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mid); text-decoration: none;
  transition: color 0.2s;
}
.product-back-link:hover { color: var(--ink); }

.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.product-gallery-main {
  position: relative;
  width: 100%; aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(92,61,46,0.15);
  background: rgba(255,253,248,0.5);
}
.product-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.product-gallery-thumbs {
  display: flex; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap;
}
.product-gallery-thumb {
  width: 70px; height: 70px; padding: 0;
  border: 1px solid rgba(92,61,46,0.15);
  background: none; cursor: pointer; overflow: hidden;
  opacity: 0.6; transition: opacity 0.2s, border-color 0.2s;
}
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery-thumb:hover { opacity: 0.85; }
.product-gallery-thumb.active { opacity: 1; border-color: var(--ink); }

.product-detail-section {
  margin-bottom: 1.6rem;
}
.product-detail-section h4 {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.4rem;
}
.product-detail-section p {
  font-size: 1rem; color: var(--ink-mid); line-height: 1.8;
}

.product-field-placeholder {
  font-family: var(--font-italic);
  color: var(--ink-muted); opacity: 0.6;
}

/* Collapsible Ingredients / How to Use / Eco-Friendly sections */
.product-accordion {
  border-top: 1px solid rgba(92,61,46,0.15);
  padding: 1rem 0;
}
.product-accordion summary {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-muted);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.product-accordion summary::-webkit-details-marker { display: none; }
.product-accordion summary::after {
  content: '+'; font-size: 1rem; color: var(--ink-mid);
  transition: transform 0.2s;
}
.product-accordion[open] summary::after { transform: rotate(45deg); }
.product-accordion-body { padding-top: 0.7rem; }
.product-accordion-body p {
  font-size: 1rem; color: var(--ink-mid); line-height: 1.8;
}

/* Prominent price + purchase button at the foot of the product page */
.shop-product-footer {
  margin-top: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(92,61,46,0.15);
  text-align: center;
}
.product-purchase-price {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--ink); margin-bottom: 1rem;
}

.product-not-found { text-align: center; padding: 3rem 0; }

/* Customer reviews banner — breaks out to full page width */
.product-reviews-banner {
  width: 100vw;
  margin: 4rem calc(50% - 50vw) 0;
  padding: 3rem 2rem;
  background: rgba(139,105,20,0.04);
  border-top: 1px solid rgba(92,61,46,0.1);
  border-bottom: 1px solid rgba(92,61,46,0.1);
  text-align: center;
}
.product-reviews-banner h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.06em; color: var(--ink); margin-bottom: 2.2rem;
}
.product-reviews-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.product-review-card {
  background: rgba(255,253,248,0.6);
  border: 1px solid rgba(92,61,46,0.15);
  padding: 1.8rem 1.5rem;
  text-align: left;
}
.product-review-stars {
  color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}
.product-review-quote {
  font-family: var(--font-italic); font-size: 1.05rem; color: var(--ink-mid);
  line-height: 1.7; margin-bottom: 0.8rem;
}
.product-review-author {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
}
.product-review-placeholder {
  grid-column: 1 / -1;
  text-align: center;
}
.product-review-placeholder p {
  font-family: var(--font-italic); color: var(--ink-muted); opacity: 0.7;
}
@media (max-width: 900px) {
  .product-reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══ JOURNAL ═══ */
.journal-wrap { max-width: 1100px; margin: 0 auto; padding: 0 2rem 2.5rem; }

.journal-coming-soon {
  text-align: center; padding: 3rem 2rem; margin-bottom: 3rem;
}
.journal-moon { font-size: 3rem; color: var(--ink-light); opacity: 0.4; margin-bottom: 1rem; }
.journal-coming-soon h2 {
  font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.1em; color: var(--ink);
  margin-bottom: 0.8rem;
}
.journal-coming-soon p { font-family: var(--font-italic); color: var(--ink-muted); max-width: 480px; margin: 0 auto 1.5rem; }

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

.journal-card {
  border: 1px solid rgba(92,61,46,0.15);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.journal-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(92,61,46,0.08); }
.journal-placeholder { opacity: 0.45; }

.journal-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.journal-date, .journal-tag {
  font-family: var(--font-display); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted);
}
.journal-tag {
  border: 1px solid rgba(92,61,46,0.2); padding: 0.15rem 0.5rem;
}

.journal-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em;
  color: var(--ink); margin-bottom: 0.8rem;
}

.journal-card p {
  font-family: var(--font-italic);
  font-size: 0.95rem; color: var(--ink-mid); line-height: 1.6;
  margin-bottom: 1.2rem;
}

.journal-read-more {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-mid); text-decoration: none;
  border-bottom: 1px solid rgba(92,61,46,0.3); padding-bottom: 0.1rem;
  transition: color 0.2s;
}
.journal-read-more:hover { color: var(--ink); }

/* ═══ ABOUT ═══ */
.about-wrap { max-width: 1000px; margin: 0 auto; padding: 0 2rem 2.5rem; }

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.wholesale-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.wholesale-content .sell-sheet-tile { margin-bottom: 0; }
.wholesale-content .section-cta { margin-top: 0; }

.wholesale-intro {
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  margin-bottom: 1rem;
}

.about-photo-oval {
  flex-shrink: 0;
  width: 280px; height: 360px;
  border: 2px solid var(--ink);
  border-radius: 50% / 45%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: rgba(92,61,46,0.03);
}

.about-photo-oval img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-photo-oval-label {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted); opacity: 0.6;
  padding: 0 1.5rem; text-align: center;
}

.about-text-block {
  flex: 1;
}

.about-text-block p {
  font-family: var(--font-body);
  font-size: 1.1rem; color: var(--ink);
  line-height: 1.8;
}
.about-text-block p + p { margin-top: 1.2rem; }

.about-text-block h2 {
  font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.06em;
  color: var(--ink); margin: 1rem 0;
}

/* ═══ WHOLESALE SELL SHEET TILE ═══ */
.sell-sheet-tile {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  max-width: 420px; margin: 0 auto 3rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(92,61,46,0.2);
  background: rgba(245,237,224,0.6);
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.sell-sheet-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(92,61,46,0.1);
  border-color: rgba(92,61,46,0.4);
}
.sell-sheet-tile-icon { font-size: 1.1rem; color: var(--ink-muted); }

.about-placeholder {
  font-family: var(--font-italic);
  font-size: 1.1rem; color: var(--ink-muted); line-height: 1.9;
  margin-bottom: 1.2rem;
}


/* ═══ CONTACT ═══ */
.contact-wrap { max-width: 680px; margin: 0 auto; padding: 0 2rem 2.5rem; }

.contact-inner { text-align: center; }

.contact-intro {
  font-family: var(--font-italic);
  font-size: 1.15rem; color: var(--ink-mid); line-height: 1.8; margin-bottom: 2.5rem;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; align-items: center; }

.contact-link {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--ink-mid);
  font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--ink); }
.contact-link-icon { font-size: 1rem; opacity: 0.5; }

.contact-form-wrap {
  text-align: left;
  border-top: 1px solid rgba(92,61,46,0.12);
  padding-top: 2.5rem;
}

.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.08em;
  color: var(--ink); text-align: center; margin: 1rem 0 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(245,237,224,0.6);
  border: 1px solid rgba(92,61,46,0.2);
  padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(92,61,46,0.5);
  background: rgba(245,237,224,0.9);
}
.form-field textarea { resize: vertical; }

.form-success-message {
  text-align: center;
  font-family: var(--font-italic);
  font-size: 1.2rem; color: var(--ink);
  padding: 2rem 1rem;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ink);
  padding: 3rem 2rem;
  text-align: center;
  position: relative; z-index: 2;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.1em;
  color: rgba(245,237,224,0.8); margin-bottom: 0.5rem;
}
.footer-logo .moon-glyph { font-size: 1.3rem; color: rgba(245,237,224,0.5); }

.footer-tagline {
  font-family: var(--font-italic);
  color: rgba(245,237,224,0.4); font-size: 0.9rem; margin-bottom: 1.5rem;
}

.footer-social {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.footer-social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-body); font-size: 0.9rem;
  color: rgba(245,237,224,0.6);
  transition: color 0.2s;
}
.footer-social-link:hover { color: rgba(245,237,224,0.95); }
.footer-social-link .contact-link-icon { opacity: 0.7; }

.footer-nav {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,237,224,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(245,237,224,0.8); }
.footer-nav span { color: rgba(245,237,224,0.2); }

.footer-legal {
  font-size: 0.78rem; color: rgba(245,237,224,0.3); line-height: 1.8;
}
.footer-legal small { font-size: 0.7rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; max-width: 480px; }
  .shop-product { grid-template-columns: 1fr; gap: 2rem; }
  .shop-product-reverse { direction: ltr; }
  .product-illustration-large { width: 200px; height: 200px; margin: 0 auto; }
  .journal-grid { grid-template-columns: 1fr; max-width: 480px; }
  .about-content { flex-direction: column; text-align: center; }
  .about-photo-oval { width: 210px; height: 275px; }
  .about-text-block { padding: 2.5rem 1.8rem; }
  .philosophy-pillars { flex-direction: column; align-items: center; }
  .pillar-divider { display: none; }
  .hero-title-wrap { gap: 0.8rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 1rem; }
  .logo-text { font-size: 1.15rem; }
  .nav-logo-img { width: 80px; height: 80px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 3rem 1.5rem; }
  .hero-decor { display: none; }
  .hero-footer-text { display: none; }
  .featured-strip, .philosophy-banner { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
  .shop-grid-wrap, .journal-wrap, .about-wrap, .contact-wrap { padding: 0 1.5rem 3rem; }
  .product-card { padding: 1.5rem 1rem; }
  .shop-product { padding: 2.5rem 0; }
}

/* ═══ PRODUCT PHOTOS ═══ */
.product-photo-wrap {
  width: 100%; aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.product-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-photo {
  transform: scale(1.04);
}

.product-grid-3 {
  max-width: 780px;
  gap: 1.5rem;
}

.product-grid-3 .product-photo-wrap {
  aspect-ratio: 4/5;
}

.product-grid-3 .product-card {
  padding: 1.1rem 0.9rem;
}

.product-grid-3 .product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.product-grid-3 .product-rating-line {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.product-grid-3 .product-weight {
  font-size: 0.78rem;
}

.product-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

.shop-photo-wrap {
  width: 100%; max-width: 320px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(92,61,46,0.1);
  margin: 0 auto;
}

.shop-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.shop-product:hover .shop-photo {
  transform: scale(1.03);
}

.product-photo-coming-soon {
  background: rgba(92,61,46,0.04);
  display: flex; align-items: center; justify-content: center;
  border: none !important;
  border-radius: 50%;
  overflow: hidden;
}

.coming-soon-inner {
  text-align: center;
  color: var(--ink-muted);
}

.coming-soon-moon {
  font-size: 2rem; opacity: 0.3;
  display: block; margin-bottom: 0.5rem;
}

.coming-soon-inner p {
  font-family: var(--font-display);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.4;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .product-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  .product-grid-4 { grid-template-columns: 1fr !important; }
  .product-grid-3 { grid-template-columns: 1fr !important; }
}
