/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --green-dark: #1e3328;
  --green-mid: #2a4535;
  --green-light: #3a5c47;
  --pink-light: #e8c4bc;
  --pink-pale: #f2ddd8;
  --pink-muted: #d4a89a;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.55);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--green-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* =====================
   MANTRA BANNER
   ===================== */
.mantra-banner {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  text-align: center;
}
.mantra-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--pink-light);
  transition: opacity 0.6s ease;
}

/* =====================
   NAV
   ===================== */
nav {
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 64px;
  position: relative;
}
.nav-left { display: flex; align-items: center; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--pink-light); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.nav-right { display: flex; justify-content: flex-end; }
.cart-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-btn:hover { background: var(--pink-light); border-color: var(--pink-light); color: var(--green-dark); }
.cart-count {
  background: var(--pink-muted);
  color: var(--green-dark);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 500;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--green-mid);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu ul li a {
  display: block; padding: 16px 28px;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none; transition: color 0.2s, background 0.2s;
}
.mobile-menu ul li a:hover { color: var(--pink-light); background: rgba(255,255,255,0.04); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 75vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img-bg {
  position: absolute; inset: 0;
  background-image: url('Carrie_Hero_image_placeholder_.webp');
  background-size: cover; background-position: center;
  background-color: var(--green-mid);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,51,40,0.55) 0%, rgba(30,51,40,0.72) 100%);
}
.hero-content { text-align: center; z-index: 1; padding: 0 24px; animation: fadeUp 1s ease forwards; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 20px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--pink-light); }
.hero-sub { font-size: 0.95rem; font-weight: 300; color: var(--text-light); max-width: 440px; margin: 0 auto 36px; line-height: 1.8; }
.hero-cta {
  display: inline-block; background: var(--pink-light); color: var(--green-dark);
  padding: 14px 40px; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.2s; font-family: 'Jost', sans-serif; font-weight: 500;
}
.hero-cta:hover { background: var(--white); transform: translateY(-2px); }

/* =====================
   MISSION
   ===================== */
.mission { background: var(--green-mid); padding: 80px 40px; text-align: center; }
.mission h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 28px; color: var(--pink-light); }
.mission p { font-size: 0.95rem; line-height: 1.9; color: var(--text-light); max-width: 680px; margin: 0 auto 16px; font-weight: 300; }

/* =====================
   VALUES
   ===================== */
.values { background: var(--pink-pale); padding: 50px 40px; display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.value-item { text-align: center; color: var(--green-dark); }
.value-icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }

/* =====================
   PRODUCTS
   ===================== */
.products-section { padding: 80px 40px; background: var(--green-dark); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--white); margin-bottom: 12px; }
.section-header p { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.05em; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card { background: var(--green-mid); overflow: hidden; transition: transform 0.3s ease; }
.product-card:hover { transform: scale(1.01); }
.product-card:hover .product-overlay { opacity: 1; }
.product-img-wrap { background: var(--pink-pale); height: 280px; overflow: hidden; position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-light));
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--green-dark); text-align: center; padding: 20px;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(30,51,40,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.quick-view-btn {
  background: var(--white); color: var(--green-dark); border: none;
  padding: 12px 28px; font-family: 'Jost', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 2px; font-weight: 500;
}
.product-info { padding: 24px; }
.product-brand { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-muted); margin-bottom: 6px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.product-tagline { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--pink-muted); margin-bottom: 10px; }
.product-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; font-weight: 300; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--pink-light); margin-bottom: 16px; }
.customize-btn {
  width: 100%; background: transparent; border: 1px solid var(--pink-light); color: var(--pink-light);
  padding: 12px; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; font-weight: 500;
}
.customize-btn:hover { background: var(--pink-light); color: var(--green-dark); }

/* =====================
   MODAL
   ===================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95);
  background: var(--green-mid); z-index: 301; width: 90%; max-width: 680px;
  max-height: 88vh; overflow-y: auto; border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0; pointer-events: none;
}
.modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: all; }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--white); font-size: 1.4rem;
  cursor: pointer; opacity: 0.6; transition: opacity 0.2s; z-index: 1;
}
.modal-close:hover { opacity: 1; }
.modal-body { padding: 40px; }
.modal-product-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 6px; }
.modal-tagline { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--pink-muted); margin-bottom: 16px; text-transform: uppercase; }
.modal-base-ingredients {
  background: rgba(255,255,255,0.05); border-left: 2px solid var(--pink-muted);
  padding: 12px 16px; margin-bottom: 24px; border-radius: 0 2px 2px 0;
}
.modal-base-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-muted); margin-bottom: 4px; }
.modal-base-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* SIZE SELECTOR */
.modal-size-section { margin-bottom: 28px; }
.modal-section-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 12px; font-weight: 500; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-option { position: relative; }
.size-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.size-option label {
  display: block; padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2px;
  font-size: 0.8rem; cursor: pointer; transition: all 0.2s;
  color: var(--text-light);
}
.size-option input:checked + label { background: var(--pink-light); color: var(--green-dark); border-color: var(--pink-light); font-weight: 500; }
.size-option label:hover { border-color: var(--pink-light); }

/* INGREDIENT SECTIONS */
.modal-ingredient-section { margin-bottom: 24px; }
.ingredient-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ingredient-title { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pink-light); font-weight: 500; }
.ingredient-counter { font-size: 0.72rem; color: var(--text-muted); }
.ingredient-counter.maxed { color: var(--pink-muted); }
.ingredient-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.ingredient-option { position: relative; }
.ingredient-option input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.ingredient-option label {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; font-size: 0.78rem; cursor: pointer;
  transition: all 0.2s; color: var(--text-light); line-height: 1.3;
}
.ingredient-option label::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 2px; transition: all 0.2s;
}
.ingredient-option input:checked + label { border-color: var(--pink-light); color: var(--white); background: rgba(232,196,188,0.1); }
.ingredient-option input:checked + label::before { background: var(--pink-light); border-color: var(--pink-light); }
.ingredient-option.disabled label { opacity: 0.35; cursor: not-allowed; }
.ingredient-option.disabled label:hover { border-color: rgba(255,255,255,0.12); }

/* NOTES */
.modal-notes { margin-bottom: 28px; }
.modal-notes textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18); color: var(--white);
  padding: 12px 16px; font-family: 'Jost', sans-serif; font-size: 0.85rem;
  border-radius: 2px; resize: vertical; min-height: 80px; transition: border-color 0.2s;
}
.modal-notes textarea::placeholder { color: rgba(255,255,255,0.3); }
.modal-notes textarea:focus { outline: none; border-color: var(--pink-light); }

/* MODAL ADD TO CART */
.modal-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--pink-light); margin-bottom: 16px; }
.modal-add-btn {
  width: 100%; background: var(--pink-light); border: none; color: var(--green-dark);
  padding: 16px; font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; font-weight: 500; transition: all 0.2s;
}
.modal-add-btn:hover { background: var(--white); transform: translateY(-1px); }

/* =====================
   CUSTOM SECTION
   ===================== */
.custom-section { background: var(--green-mid); padding: 90px 40px; }
.custom-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.custom-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink-muted); margin-bottom: 16px; }
.custom-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--pink-light); margin-bottom: 24px; }
.custom-text p { font-size: 0.9rem; line-height: 1.9; color: var(--text-light); margin-bottom: 16px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }
.custom-cta {
  display: inline-block; margin-top: 24px;
  border: 1px solid var(--pink-light); color: var(--pink-light);
  padding: 14px 36px; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all 0.2s; font-family: 'Jost', sans-serif; font-weight: 500;
}
.custom-cta:hover { background: var(--pink-light); color: var(--green-dark); }

/* =====================
   ADDITIONS BAR
   ===================== */
.additions-bar {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 40px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px 40px;
}
.addition-item { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; }
.addition-item strong { color: var(--text-light); }

/* =====================
   BOTTOM CTA
   ===================== */
.bottom-cta { background: var(--pink-pale); padding: 70px 40px; text-align: center; }
.bottom-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--green-dark); margin-bottom: 12px; }
.bottom-cta .mantra { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.9rem; color: var(--green-light); letter-spacing: 0.1em; }

/* =====================
   ABOUT
   ===================== */
.about-section { background: var(--green-mid); padding: 90px 40px; }
.about-inner { max-width: 760px; margin: 0 auto; }
.about-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink-muted); margin-bottom: 16px; }
.about-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--pink-light); margin-bottom: 32px; }
.about-inner p { font-size: 0.95rem; line-height: 1.9; color: var(--text-light); margin-bottom: 20px; font-weight: 300; }
.about-mantra {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  font-style: italic; color: var(--pink-light);
  border-left: 2px solid var(--pink-muted); padding-left: 20px;
  margin: 36px 0; line-height: 1.8;
}
.about-sign { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text-muted); }

/* =====================
   CONTACT
   ===================== */
.contact-section { background: var(--green-dark); padding: 90px 40px; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-wrap h2, .contact-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--pink-light); margin-bottom: 28px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 400;
  text-align: left; padding: 16px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.2s;
}
.faq-q:hover { color: var(--pink-light); }
.faq-icon { font-size: 1.2rem; color: var(--pink-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; padding: 0 0 16px; font-weight: 300; display: none; }
.faq-a.open { display: block; }
.contact-info-box { margin-top: 36px; padding: 24px; background: var(--green-mid); border-radius: 2px; border-left: 3px solid var(--pink-muted); }
.contact-info-box p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }
.contact-info-box p:last-child { margin-bottom: 0; }
.contact-info-box a { color: var(--pink-light); text-decoration: none; transition: color 0.2s; }
.contact-info-box a:hover { color: var(--white); }
.contact-sub { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18); color: var(--white);
  padding: 12px 16px; font-family: 'Jost', sans-serif; font-size: 0.85rem;
  border-radius: 2px; margin-bottom: 12px; transition: border-color 0.2s;
}
#contactForm select { appearance: none; cursor: pointer; }
#contactForm input::placeholder,
#contactForm textarea::placeholder { color: rgba(255,255,255,0.35); }
#contactForm option { background: var(--green-dark); }
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus { outline: none; border-color: var(--pink-light); }
#contactForm textarea { resize: vertical; min-height: 140px; }
.form-submit {
  background: var(--pink-light); border: none; color: var(--green-dark);
  padding: 14px 40px; font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; font-weight: 500; transition: all 0.2s;
}
.form-submit:hover { background: var(--white); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { display: none; margin-top: 16px; padding: 14px 20px; background: rgba(58,92,71,0.4); border-left: 3px solid var(--pink-light); font-size: 0.83rem; color: var(--pink-light); border-radius: 2px; }

/* =====================
   CART DRAWER
   ===================== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: -440px; width: 420px; max-width: 100vw; height: 100vh; background: var(--green-mid); z-index: 201; transition: right 0.35s ease; display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,0.1); }
.cart-drawer.open { right: 0; }
.cart-header { padding: 28px 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; }
.close-cart { background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.close-cart:hover { opacity: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cart-item-img { width: 72px; height: 72px; background: var(--pink-pale); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-bottom: 4px; }
.cart-item-meta { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.cart-item-price { font-size: 0.85rem; color: var(--pink-light); }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; align-self: flex-start; transition: color 0.2s; flex-shrink: 0; }
.cart-item-remove:hover { color: var(--pink-light); }
.cart-footer { padding: 20px 28px 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cart-total-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--pink-light); }
.cart-note { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; font-style: italic; }
.checkout-btn { width: 100%; background: var(--pink-light); border: none; color: var(--green-dark); padding: 16px; font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 2px; font-weight: 500; transition: all 0.2s; }
.checkout-btn:hover { background: var(--white); transform: translateY(-1px); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* =====================
   FOOTER
   ===================== */
footer { background: var(--green-dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 48px 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 36px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: 0.75rem; color: var(--text-muted); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-link { font-size: 0.82rem; color: var(--pink-light); text-decoration: none; transition: color 0.2s; }
a.footer-contact-link:hover { color: var(--white); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink-light); }
.footer-copy { text-align: center; font-size: 0.7rem; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; letter-spacing: 0.04em; }

/* =====================
   TOAST
   ===================== */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--green-light); color: var(--white); padding: 14px 28px; border-radius: 2px; font-size: 0.8rem; z-index: 400; transition: transform 0.3s ease; border-left: 3px solid var(--pink-light); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  nav { padding: 0 20px; grid-template-columns: auto 1fr auto; position: relative; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo { text-align: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .products-section { padding: 60px 16px; }
  .mission, .about-section, .contact-section, .custom-section { padding: 60px 20px; }
  .values { gap: 28px; padding: 40px 20px; }
  .additions-bar { padding: 20px; gap: 16px 24px; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .modal { width: 95%; max-height: 92vh; }
  .modal-body { padding: 28px 24px; }
  .ingredient-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
