@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green:        #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5EDD2;
  --cream:        #FAF7F2;
  --cream-mid:    #F0EAE0;
  --cream-dark:   #E2D9CB;
  --text:         #1A1A1A;
  --text-mid:     #3D3D3D;
  --text-light:   #6B6B6B;
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.13);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --max-width:    1200px;
  --transition:   0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  display: none;
}

/* ─── NAV ─── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}
.nav-brand-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: var(--cream); color: var(--green); }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background var(--transition) !important;
  cursor: pointer;
  border: none;
}
.cart-btn:hover { background: var(--green-mid) !important; }
.cart-badge {
  background: var(--gold);
  color: var(--green);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

/* ─── HERO ─── */
.hero {
  background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/images/s-l1603.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.25;
  pointer-events: none;
}
.hero-pattern { display: none; }
.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: block;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero h1 span { color: var(--green); }
.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.hero-cta:hover { background: var(--green-mid); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.9rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── CATEGORY NAV ─── */
.category-nav-wrap {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 68px;
  z-index: 100;
}
.category-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 0.9rem 1.1rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cat-tab:hover { color: var(--green); }
.cat-tab.active { color: var(--green); border-bottom-color: var(--gold); font-weight: 600; }

/* ─── MAIN LAYOUT ─── */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ─── SECTION HEADER ─── */
.section-header {
  margin-bottom: 1.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 600px;
}
.section-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 2.5rem 0;
}

/* ─── PRODUCT GRID ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ─── PRODUCT CARD ─── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.product-card:hover {
  border-color: var(--green-light);
}
.product-img-wrap {
  position: relative;
  height: 180px;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--cream-dark);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img-icon {
  font-size: 4rem;
  opacity: 0.6;
  pointer-events: none;
}
.product-category-badge {
  display: none;
}
.product-body {
  padding: 1.1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}
.product-selectors {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.product-select {
  flex: 1;
  min-width: 90px;
  padding: 7px 10px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  background: var(--cream);
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.product-select:focus { outline: none; border-color: var(--green); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--cream-mid);
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}
.add-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.02em;
}
.add-btn:hover { background: var(--green-mid); }
.add-btn.added { background: var(--gold); color: var(--green); }

/* ─── PREORDER PHOTOS ─── */
.preorder-photo-strip {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
  border-bottom: 2px solid var(--cream-dark);
}
.preorder-photo-strip img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.preorder-inline-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.preorder-inline-photos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
}
@media (max-width: 540px) {
  .preorder-inline-photos { grid-template-columns: 1fr; }
  .preorder-photo-strip img { height: 220px; }
}

/* ─── HOME SECTION HEADER ─── */
.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.3rem;
}

/* ─── PREORDER CTA BAND ─── */
.preorder-cta-band {
  margin-top: 3rem;
  border-top: 2px solid var(--cream-dark);
  padding-top: 2.5rem;
}
.preorder-cta-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.preorder-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: .6rem;
}
.preorder-cta-inner p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: .75rem;
}
.preorder-cta-list {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2;
}
.preorder-cta-list li::before {
  content: "— ";
  color: var(--green);
  font-weight: 600;
}
.preorder-cta-photo {
  width: 340px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .preorder-cta-photo { width: 100%; height: 220px; }
}

/* ─── ABOUT BAND ─── */
.about-band {
  background: var(--cream-mid);
  border-top: 2px solid var(--cream-dark);
  border-bottom: 2px solid var(--cream-dark);
  padding: 4rem 1.5rem;
}
.about-band-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-band-text h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.about-band-text p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-fact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.about-fact-title { font-weight: 600; color: var(--green); font-size: 0.9rem; margin-bottom: 3px; }
.about-fact-text { color: var(--text-light); font-size: 0.82rem; line-height: 1.55; }

/* ─── CART DRAWER ─── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 300;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  right: -440px;
  top: 0;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 700;
}
.cart-header-sub { font-size: 0.75rem; color: var(--text-light); }
.cart-close {
  background: var(--cream-mid);
  border: none;
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cart-close:hover { background: var(--cream-dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-mid);
}
.cart-item-icon {
  width: 52px;
  height: 52px;
  background: var(--cream-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cart-item-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; color: var(--green); line-height: 1.3; }
.cart-item-variant { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.qty-ctrl { display: flex; align-items: center; gap: 6px; }
.cart-remove-btn { background: none; border: none; color: var(--text-light); font-size: 1.1rem; cursor: pointer; padding: 0 2px; line-height: 1; opacity: 0.5; transition: opacity 0.15s; }
.cart-remove-btn:hover { opacity: 1; color: #c0392b; }
.qty-btn {
  background: var(--cream-mid);
  border: none;
  border-radius: 4px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--text);
}
.qty-btn:hover { background: var(--gold-pale); }
.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 0.75rem; opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; }
.cart-footer {
  padding: 1.2rem;
  border-top: 2px solid var(--cream-dark);
  background: var(--cream);
}
.cart-notes {
  margin-bottom: 12px;
}
.cart-notes label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); display: block; margin-bottom: 5px; }
.cart-notes textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  resize: none;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.cart-notes textarea:focus { outline: none; border-color: var(--green); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--cream-dark);
}
.checkout-btn {
  width: 100%;
  background: var(--gold);
  color: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.02em;
}
.checkout-btn:hover:not(:disabled) { background: var(--gold-light); }
.checkout-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.checkout-note {
  text-align: center;
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1rem;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact p { font-size: 0.82rem; margin-bottom: 3px; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ─── SUCCESS PAGE ─── */
.page-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.page-card h1 {
  font-family: var(--font-serif);
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.page-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--green-mid); }

/* ─── ADMIN ─── */
.admin-header {
  background: var(--green);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); }
.admin-main { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem 4rem; }
.admin-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.admin-select, .admin-btn {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  cursor: pointer;
}
.admin-select { border: 1.5px solid var(--cream-dark); background: var(--white); color: var(--text); }
.admin-btn { background: var(--green); color: var(--white); border: none; font-weight: 600; }
.orders-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  font-size: 0.85rem;
}
.orders-table th { background: var(--green); color: var(--cream); padding: 11px 14px; text-align: left; font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.orders-table td { padding: 11px 14px; border-bottom: 1px solid var(--cream-mid); vertical-align: top; }
.orders-table tr:last-child td { border-bottom: none; }
.orders-table tr:hover td { background: var(--cream); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.badge-paid { background: #d4edda; color: #155724; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-fulfilled { background: #cce5ff; color: #004085; }
.fulfill-btn { padding: 4px 12px; background: var(--green); color: var(--white); border: none; border-radius: 50px; font-size: 0.75rem; cursor: pointer; font-weight: 600; }

/* ─── RESPONSIVE ─── */
.about-farm-photo {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
  object-fit: cover;
  object-position: center 20%;
  height: 220px;
}

@media (max-width: 900px) {
  .about-band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 3.5rem 1rem 3rem; }
  .trust-bar-inner { gap: 1rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links a:not(.cart-btn) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ─── CATEGORY PAGE HERO ─── */
.page-hero-sm {
  background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
  padding: 2.5rem 1.5rem 2rem;
}
.page-hero-sm-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero-sm h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green);
  margin: 0.5rem 0 0.6rem;
}
.page-hero-sm p {
  color: var(--text-mid);
  font-size: 0.9rem;
  max-width: 640px;
  line-height: 1.7;
}
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
main .breadcrumb { color: var(--text-light); margin-bottom: 1.5rem; }
main .breadcrumb a { color: var(--text-light); }
main .breadcrumb a:hover { color: var(--green); }
main { max-width: var(--max-width); margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }

/* ─── CATEGORY SECTION (home) ─── */
.category-section { margin-bottom: 0; }
.category-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.category-section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.view-all-link {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.view-all-link:hover { color: var(--green-mid); }
.product-card-link { display: block; text-decoration: none; }

/* ─── PRODUCT DETAIL PAGE ─── */
.product-page-wrap { background: var(--cream); }
.product-page-main { max-width: var(--max-width); margin: 0 auto; padding: 2rem 1.5rem 5rem; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}
.product-detail-img-wrap {
  background: var(--cream-mid);
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-detail-icon { font-size: 7rem; opacity: 0.5; }
.product-detail-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 1rem;
}
.product-detail-trust .trust-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.78rem;
}
.product-detail-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.product-detail-tagline {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.product-detail-options { margin-bottom: 1.5rem; }
.option-group { margin-bottom: 1rem; }
.option-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.option-select-wrap { position: relative; }
.option-select {
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--transition);
}
.option-select:focus { outline: none; border-color: var(--green); }
.option-single { font-size: 0.9rem; color: var(--text-light); }
.product-detail-buy {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.product-detail-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.detail-add-btn {
  flex: 1;
  background: var(--gold);
  color: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.detail-add-btn:hover { background: var(--gold-light); }
.detail-add-btn.added { background: var(--green); color: var(--white); }
.product-detail-ship {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ─── LONG DESCRIPTION ─── */
.product-long-desc {
  max-width: 780px;
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.product-long-desc h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.long-desc-body { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; }
.long-desc-body p { margin-bottom: 1rem; }
.long-desc-body h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green); margin: 1.75rem 0 0.6rem; }
.long-desc-body strong { color: var(--text); font-weight: 600; }

/* ─── RELATED PRODUCTS ─── */
.related-products { padding-top: 2.5rem; border-top: 1px solid var(--cream-dark); }
.related-products h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--green); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-detail-img-wrap { height: 220px; }
  .product-detail-icon { font-size: 4rem; }
  .category-section-header { flex-direction: column; gap: 0.25rem; }
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { border: 1px solid var(--cream-dark); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.faq-q { list-style: none; padding: .85rem 1rem; font-weight: 600; font-size: 0.9rem; color: var(--green); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.2rem; font-weight: 400; flex-shrink: 0; color: var(--green); transition: transform .2s; }
details[open] .faq-q::after { content: '−'; }
.faq-a { margin: 0; padding: .1rem 1rem 1rem; font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ─── OUT OF STOCK / RESTOCK NOTIFY ─── */
.stock-badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stock-badge-lg { padding: 12px 22px; font-size: 0.9rem; }

.restock-notify {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.restock-notify input[type=email] {
  flex: 1;
  min-width: 150px;
  padding: 10px 12px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
}
.restock-notify input[type=email]:focus {
  outline: none;
  border-color: var(--green-light);
}
.restock-btn {
  background: var(--gold);
  color: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.restock-btn:hover { background: var(--gold-light); }
.restock-btn:disabled { opacity: 0.6; cursor: default; }
.restock-done {
  margin-top: 12px;
  color: var(--green-mid);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
}
.restock-box {
  margin-top: 18px;
  padding: 20px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
}
.restock-title {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
}
.restock-sub {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* Egg pre-order UI (added 2026-07-07) */
.preorder-note{margin-top:.6rem;background:var(--gold-pale);border:1px solid var(--gold-light);color:var(--text-mid);font-size:.82rem;line-height:1.45;padding:.55rem .75rem;border-radius:var(--radius-sm)}
.preorder-box{margin-top:1rem;background:var(--gold-pale);border:1px solid var(--gold-light);border-radius:var(--radius);padding:1.2rem 1.4rem}
.preorder-title{font-size:1.05rem;color:var(--green);margin-bottom:.4rem}
.preorder-sub{font-size:.95rem;color:var(--text-mid);line-height:1.6;margin:0}
