/* ============================================================
   Lina Mum — Main Stylesheet
   Design: Warm luxury candle brand · cream · gold · rose
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --cream:        #FAF6F0;
  --cream-dark:   #F3EDE3;
  --warm-white:   #FFFDF9;
  --gold:         #C9A96E;
  --gold-light:   #E8D5A5;
  --gold-dark:    #A0804A;
  --rose:         #D4929A;
  --rose-light:   #EEC9CD;
  --rose-dark:    #B06570;
  --charcoal:     #2D2A26;
  --brown-mid:    #6B5745;
  --brown-light:  #9C8070;
  --muted:        #8A7E72;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --nav-h:        72px;
  --radius:       16px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(45,42,38,.08);
  --shadow-lg:    0 12px 48px rgba(45,42,38,.15);

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.serif   { font-family: var(--font-serif); }
.italic  { font-style: italic; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,.2);
  display: flex;
  align-items: center;
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: .04em;
}
.nav-logo .logo-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 400;
  color: var(--brown-mid);
  letter-spacing: .04em;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: #fff;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  transition: background .25s, transform .2s;
  position: relative;
}
.cart-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.cart-badge {
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  position: absolute;
  top: -.3rem; right: -.3rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(212,146,154,.1) 0%, transparent 60%),
    linear-gradient(160deg, #FAF0E6 0%, #FAF6F0 50%, #F5ECE0 100%);
}

.hero-candles-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 2px at 15% 25%, rgba(201,169,110,.5) 0%, transparent 100%),
    radial-gradient(circle 1px at 85% 15%, rgba(212,146,154,.6) 0%, transparent 100%),
    radial-gradient(circle 3px at 70% 70%, rgba(201,169,110,.3) 0%, transparent 100%),
    radial-gradient(circle 1px at 30% 75%, rgba(212,146,154,.4) 0%, transparent 100%);
  animation: sparkle 6s ease-in-out infinite alternate;
}
@keyframes sparkle {
  0%   { opacity: .5; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.02); }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  padding: 2rem 1rem;
  animation: fadeUp .9s var(--ease) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.4);
  color: var(--gold-dark);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--gold-dark); font-style: italic; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 500;
  transition: all .28s var(--ease);
  letter-spacing: .03em;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,169,110,.4);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,.5);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212,146,154,.4);
}
.btn-rose:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: .55rem 1.3rem; font-size: .84rem; }

/* ── SECTION WRAPPER ──────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-alt { background: var(--cream-dark); }
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

/* ── FLOATING CANDLE FLAME ────────────────────────────────── */
.flame-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--gold);
  font-size: 1.4rem;
}
.flame-divider::before,
.flame-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

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

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--gold);
  color: #fff;
  padding: .22rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-badge.new { background: var(--rose); }

.product-info {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .4rem;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: .5rem;
  font-weight: 400;
}
.product-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.add-cart-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  transition: all .25s;
}
.add-cart-btn:hover { background: var(--gold-dark); transform: scale(1.04); }
.add-cart-btn.added { background: var(--rose); }

.product-code {
  font-size: .72rem;
  color: var(--muted);
  margin-top: .5rem;
}

/* ── FILTER BAR ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .5rem 1.4rem;
  border-radius: 50px;
  font-size: .84rem;
  border: 1.5px solid var(--gold-light);
  color: var(--brown-mid);
  background: transparent;
  transition: all .25s;
  font-family: var(--font-sans);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.step-card {
  padding: 2.5rem 1.5rem;
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.step-card:hover { transform: translateY(-4px); }
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: .5rem;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── DIY KITS ─────────────────────────────────────────────── */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.kit-card {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  box-shadow: var(--shadow);
}
.kit-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.1) 0%, transparent 70%);
}
.kit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.kit-emoji { font-size: 3rem; margin-bottom: 1rem; }
.kit-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.kit-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.kit-contents {
  background: rgba(201,169,110,.08);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-size: .8rem;
  color: var(--brown-mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.kit-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

/* ── TESTIMONIAL / QUOTE ──────────────────────────────────── */
.quote-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3D3530 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 20rem;
  color: rgba(201,169,110,.06);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cream);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}
.quote-author {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.about-img-col {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.about-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-text-col {
  background: var(--warm-white);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-tag {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.about-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 1.5rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-dark);
  display: block;
}
.stat-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ── CART PAGE ────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
.cart-table-wrap {
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  background: var(--cream-dark);
  padding: 1rem 1.2rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  font-weight: 500;
}
.cart-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}
.cart-table tr:last-child td { border-bottom: none; }
.cart-product-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.cart-product-name { font-family: var(--font-serif); font-size: 1.1rem; }
.cart-product-code { font-size: .75rem; color: var(--muted); }
.qty-input {
  width: 54px;
  text-align: center;
  padding: .35rem;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
}
.remove-btn { color: var(--rose); font-size: 1.2rem; transition: color .2s; }
.remove-btn:hover { color: var(--rose-dark); }

.cart-summary {
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.cart-summary h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .8rem;
  font-size: .9rem;
  color: var(--muted);
}
.summary-total {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: 1rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-btn svg { width: 22px; height: 22px; fill: #fff; }

.empty-cart {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-cart .empty-icon { font-size: 4rem; margin-bottom: 1.2rem; }
.empty-cart h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: .5rem; }
.empty-cart p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,.15);
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: .5rem;
}
.page-hero-sub { color: var(--muted); font-size: .95rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h4 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: .5rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .9rem; }
.contact-card a:hover { color: var(--gold-dark); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--cream); font-size: 1.8rem; }
.footer-brand .logo-sub  { color: var(--gold); }
.footer-brand p { color: rgba(250,246,240,.6); font-size: .88rem; margin-top: 1rem; line-height: 1.7; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all .25s;
  color: var(--gold-light);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: .04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(250,246,240,.6); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(250,246,240,.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(250,246,240,.4);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--gold); }

/* ── TOAST ────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.toast {
  background: var(--charcoal);
  color: var(--cream);
  padding: .9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
  animation: toastIn .3s var(--ease) both;
  cursor: pointer;
}
.toast.success { border-color: #25D366; }
.toast.error   { border-color: var(--rose); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(1rem); }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAV OVERLAY ───────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fadeUp .3s var(--ease) both;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  font-style: italic;
}
.mobile-menu a:hover { color: var(--gold-dark); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-strip  { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
  .about-text-col { padding: 4rem 2rem; }
  .cart-layout  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 4rem); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .kits-grid     { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .about-stats   { gap: 1.5rem; }
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.text-gold { color: var(--gold-dark); }
.text-muted { color: var(--muted); }
.no-scroll { overflow: hidden; }

/* ── PRODUCT MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,42,38,.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal-overlay.open { display: flex; opacity: 1; }

.modal-card {
  background: var(--warm-white);
  width: min(900px, 100%);
  max-height: 90vh;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform .4s var(--ease);
}
.modal-overlay.open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  z-index: 10;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  background: rgba(255,255,255,.8);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--gold); color: #fff; }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
}

.modal-images {
  padding: 2rem;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-container {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.main-image-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s;
}

.modal-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  pointer-events: none;
}
.modal-nav button {
  pointer-events: auto;
  background: rgba(255,255,255,.9);
  color: var(--charcoal);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: all .2s;
}
.modal-nav button:hover { background: var(--gold); color: #fff; }

.thumb-images {
  display: flex;
  gap: .8rem;
  justify-content: center;
}
.thumb-images img {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.thumb-images img.active { border-color: var(--gold); transform: scale(1.1); }

.modal-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
}
.modal-cat {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .8rem;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.modal-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}
.modal-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 2rem;
  white-space: pre-line;
}
.modal-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-add-btn { width: 100%; padding: 1rem; font-size: 1.1rem; }

@media (max-width: 768px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-info { padding: 2rem; }
  .modal-card { width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
  .modal-images { padding: 1rem; }
}

