/* ============================================
   JOHN CHUNGUS MERCH SITE — style.css
   Fonts:  Caveat (display) + Lora (body)
   Colors: Forest greens · Warm browns · Cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ---- DESIGN TOKENS ---- */
/* TO CHANGE COLORS: edit the values below. That's it! */
:root {
  --cream:        #f4ead8;   /* main background */
  --cream-light:  #faf5ea;   /* card backgrounds */
  --cream-mid:    #ede0c4;   /* borders, dividers */
  --green-deep:   #243d1c;   /* nav, footer, dark accents */
  --green-mid:    #3d6b34;   /* buttons hover, links */
  --green-light:  #7aaa6e;   /* decorative, highlights */
  --brown-dark:   #3d2b1a;   /* darkest text */
  --brown-mid:    #8b5e3c;   /* prices, warm accents */
  --brown-light:  #c4956a;   /* subtle warm accent */
  --amber:        #d4a843;   /* gold accent stripe */
  --text:         #2d1f10;   /* main body text */
  --text-mid:     #5c4030;   /* secondary text */
  --text-light:   #8b7060;   /* muted text */
  --border:       #d4c4a8;   /* card borders */
  --shadow:       rgba(45, 31, 16, 0.12);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background-color: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle paper grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  border-bottom: 3px solid var(--amber);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--cream-light);
  font-family: 'Caveat', cursive;
  font-size: 1.85rem;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--amber); }
.nav-logo svg { width: 26px; height: 26px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.cart-link { display: flex; align-items: center; gap: 0.4rem; }
.cart-count {
  background: var(--amber);
  color: var(--green-deep);
  font-family: 'Caveat', cursive;
  font-size: 0.8rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-light);
  padding: 0.25rem;
  line-height: 1;
}

/* ============================================
   HERO STRIP
   ============================================ */
.hero {
  background: var(--green-deep);
  padding: 3.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative leaf shapes behind text */
.hero::before {
  content: '🌿';
  position: absolute;
  top: -10px;
  left: 5%;
  font-size: 9rem;
  opacity: 0.06;
  pointer-events: none;
}
/* Curved bottom edge */
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--cream-light);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--green-light); }

.hero-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-mid);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   SECTION LABEL / DIVIDER
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-label h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--brown-mid);
  white-space: nowrap;
  font-weight: 600;
}

/* ============================================
   SHOP / PRODUCT GRID
   ============================================ */
.shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.shop-filter {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.4rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-deep);
  color: var(--cream-light);
  border-color: var(--green-deep);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

/* ---- PRODUCT CARD ---- */
.product-card {
  background: var(--cream-light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.5s ease both;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px var(--shadow);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--amber);
  color: var(--green-deep);
  font-family: 'Caveat', cursive;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.product-info {
  padding: 1.2rem 1.4rem 1.4rem;
  border-top: 1.5px solid var(--cream-mid);
}
.product-category {
  font-family: 'Caveat', cursive;
  font-size: 0.88rem;
  color: var(--green-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.product-name {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.product-desc {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-price {
  font-family: 'Caveat', cursive;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--brown-mid);
}
.btn-add {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  background: var(--green-deep);
  color: var(--cream-light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.btn-add:hover { background: var(--green-mid); }
.btn-add:active { transform: scale(0.96); }

/* ---- COMING SOON BANNER ---- */
.coming-soon-banner {
  background: var(--green-deep);
  border: 2px dashed var(--amber);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 2.5rem;
}
.coming-soon-banner h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--cream-light);
  margin-bottom: 0.5rem;
}
.coming-soon-banner p {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--cream-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 61, 28, 0.55);
  backdrop-filter: blur(3px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}
.cart-overlay.open { display: flex; }

.cart-drawer {
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--cream-light);
  border-left: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--green-deep);
  border-bottom: 2px solid var(--amber);
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--cream-light);
}
.cart-close {
  background: none;
  border: none;
  color: var(--cream-light);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--amber); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem; }

.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty .empty-icon { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
.cart-empty p { font-family: 'Lora', serif; font-style: italic; color: var(--text-mid); margin-bottom: 0.3rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Caveat', cursive; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.cart-item-price { font-family: 'Caveat', cursive; font-size: 0.95rem; color: var(--brown-mid); margin-top: 0.1rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.45rem; margin-top: 0.4rem; }
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  color: var(--text);
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--cream-mid); }
.qty-num { font-family: 'Caveat', cursive; font-size: 1rem; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--border);
  background: var(--cream);
  flex-shrink: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cart-total span:first-child { font-family: 'Caveat', cursive; font-size: 1.15rem; color: var(--text-mid); }
.cart-total-price { font-family: 'Caveat', cursive; font-size: 1.65rem; font-weight: 700; color: var(--brown-mid); }

.btn-checkout {
  width: 100%;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.9rem;
  background: var(--green-deep);
  color: var(--cream-light);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.btn-checkout:hover { background: var(--green-mid); }

.checkout-note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.4;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-deep);
  color: var(--cream-light);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  padding: 0.8rem 1.75rem;
  border-radius: 30px;
  border: 2px solid var(--amber);
  z-index: 9000;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: var(--green-deep);
  padding: 3rem 2rem 4rem;
  text-align: center;
  position: relative;
}
.page-header-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream-light);
}
.page-header p {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--cream-mid);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-mid);
  border: 2.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--green-light);
  position: relative;
  overflow: hidden;
}
.about-photo-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  color: var(--text-mid);
  background: var(--cream-light);
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid var(--border);
}
.about-text h2 {
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.about-text p {
  font-family: 'Lora', serif;
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-quote {
  background: var(--green-deep);
  border-left: 4px solid var(--amber);
  border-radius: 0 14px 14px 0;
  padding: 2rem 2rem 2rem 2.5rem;
  margin: 2.5rem 0;
}
.about-quote blockquote {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream-light);
  line-height: 1.3;
}
.about-quote cite {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--amber);
  display: block;
  margin-top: 0.75rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.mission-card {
  background: var(--cream-light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}
.mission-card:hover { transform: translateY(-4px); }
.mission-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.mission-card h3 { font-family: 'Caveat', cursive; font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.4rem; }
.mission-card p { font-family: 'Lora', serif; font-size: 0.85rem; color: var(--text-mid); font-style: italic; line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: var(--cream-light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
}
.contact-card .icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.contact-card h3 { font-family: 'Caveat', cursive; font-size: 1.35rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.4rem; }
.contact-card p { font-family: 'Lora', serif; font-size: 0.875rem; color: var(--text-mid); font-style: italic; line-height: 1.55; }

.contact-form-wrap {
  background: var(--cream-light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem 2.25rem;
}
.contact-form-wrap h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.9rem;
  background: var(--green-deep);
  color: var(--cream-light);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-mid); }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  max-width: 1020px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--green-mid);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--green-deep); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.product-detail-image {
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.product-detail-info h1 {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0.4rem 0 0.75rem;
}
.product-detail-price {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-bottom: 1.25rem;
}
.product-detail-desc {
  font-family: 'Lora', serif;
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.detail-meta {
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1.75rem;
}
.detail-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.detail-meta-row:last-child { border-bottom: none; }
.detail-meta-row strong { font-family: 'Caveat', cursive; font-size: 1rem; color: var(--text); }

.btn-detail-add {
  width: 100%;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem;
  background: var(--green-deep);
  color: var(--cream-light);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-detail-add:hover { background: var(--green-mid); }
.btn-detail-add:active { transform: scale(0.98); }

.detail-shopify-note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.65rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--green-deep);
  border-top: 3px solid var(--amber);
  padding: 3.5rem 2rem 2rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--cream-mid);
  font-size: 0.875rem;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  color: var(--cream-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-mid);
  text-decoration: none;
  font-family: 'Caveat', cursive;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--amber); border-color: var(--amber); color: var(--green-deep); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green-deep);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    border-bottom: 3px solid var(--amber);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-grid,
  .product-detail-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .mission-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
