/* ============================================
   ENCHANTED... — Global Stylesheet
   ============================================ */

/* Google Fonts are loaded via <link> in HTML */

/* ── Custom Properties ── */
:root {
  --forest-green:    #1E4D0F;
  --sage-green:      #6B8F47;
  --deep-purple:     #6225A0;
  --purple-mid:      #8040C0;
  --purple-dark:     #3D1268;
  --warm-gold:       #C9A84C;
  --gold-light:      #E2C47A;
  --cream:           #F5F0E8;
  --cream-dark:      #EDE7D9;
  --terra:           #A0522D;
  --terra-mid:       #B86A3A;
  --terra-light:     #D4956A;
  --text-dark:       #1A1A1A;
  --text-mid:        #4A4A4A;
  --text-light:      #7A7A7A;
  --white:           #FFFFFF;
  --purple-light:    #F2EAFA;
  --purple-pale:     #F8F4FD;
  --shadow-soft:     0 4px 24px rgba(98, 37, 160, 0.10);
  --shadow-card:     0 8px 40px rgba(98, 37, 160, 0.12);
  --shadow-hover:    0 16px 56px rgba(98, 37, 160, 0.22);
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       24px;
  --radius-pill:     999px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-sans:       'Lato', system-ui, sans-serif;
  --nav-height:      72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-purple);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); }

/* ── Utility ── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--deep-purple);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-mid);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-desc { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--deep-purple);
  color: var(--cream);
  border: 2px solid var(--deep-purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 37, 160, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--deep-purple);
  border: 2px solid var(--deep-purple);
}
.btn-outline:hover {
  background: var(--deep-purple);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--warm-gold);
  color: var(--white);
  border: 2px solid var(--warm-gold);
}
.btn-gold:hover {
  background: #b8943a;
  border-color: #b8943a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.38);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Divider ── */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  color: var(--sage-green);
  opacity: 0.55;
}
.botanical-divider::before,
.botanical-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-green), transparent);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(98, 37, 160, 0.14);
}

.nav.nav-solid {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(98, 37, 160, 0.10);
}

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

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-purple);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo span { color: var(--terra); }
.nav__logo em { font-style: normal; color: var(--warm-gold); }
.nav__logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--warm-gold);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--deep-purple); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

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

.nav__cart-btn {
  position: relative;
  color: var(--forest-green);
  font-size: 1.2rem;
  padding: 0.4rem;
  transition: color var(--transition);
}
.nav__cart-btn:hover { color: var(--warm-gold); }

.cart-badge {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--deep-purple);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.cart-badge.visible { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest-green);
  border-radius: 2px;
  transition: var(--transition);
}
.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 Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__mobile.open { display: flex; }

.nav__mobile .nav__link {
  padding: 0.8rem 0.5rem;
  font-size: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.nav__mobile .nav__link:last-child { border-bottom: none; }

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #1a0a2e 0%,
    #3D1268 25%,
    #6225A0 55%,
    #2D5016 80%,
    #1a2e0a 100%
  );
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Atmospheric orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #8040C0, transparent);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6B8F47, transparent);
  bottom: -80px; right: -80px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C9A84C, transparent);
  top: 50%; left: 60%;
  animation-delay: -6s;
  opacity: 0.2;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-10px, 15px) scale(0.97); }
}

/* Stars */
.hero__stars {
  position: absolute;
  inset: 0;
}
.star {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: var(--op, 0.6); transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.4); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem 7rem;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--warm-gold);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-inline: auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll i { font-size: 1.1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

/* Moon decoration in hero */
.hero__moon {
  position: absolute;
  top: 10%; right: 8%;
  opacity: 0.18;
}

/* ── FEATURED PRODUCTS (home) ── */
.featured {
  padding: 6rem 0;
  background: var(--purple-pale);
  position: relative;
  overflow: hidden;
}
.featured__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(98, 37, 160, 0.08);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--deep-purple);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream-dark) 0%, #d4c9b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--sage-green);
  position: relative;
  overflow: hidden;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--deep-purple);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 0.35rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-purple);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-purple);
}

.btn-add {
  padding: 0.55rem 1.2rem;
  background: var(--deep-purple);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--deep-purple);
}
.btn-add:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}
.btn-add.added {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
}

/* ── REVIEW TEASER (index.html "What People Are Saying") ── */
.review-teaser {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-purple) 100%);
  position: relative;
  overflow: hidden;
}

/* ── OUR STORY TEASER ── */
.story-teaser {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--deep-purple) 50%, var(--forest-green) 100%);
  position: relative;
  overflow: hidden;
}

.story-teaser__bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.story-teaser__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-teaser__text .section-label { color: var(--warm-gold); }
.story-teaser__text h2 { color: var(--cream); }
.story-teaser__text p { color: rgba(245, 240, 232, 0.8); margin-bottom: 2rem; }

.story-teaser__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TRUST BADGES ── */
.trust {
  padding: 5rem 0;
  background: var(--purple-light);
}

.trust__header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-badge {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
  border-bottom: 3px solid transparent;
}
.trust-badge:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--warm-gold);
}

.trust-badge__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.4rem;
}

.trust-badge__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep-purple);
  margin-bottom: 0.5rem;
}

.trust-badge__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── INSTAGRAM SECTION ── */
.instagram {
  padding: 5rem 0;
  background: var(--purple-pale);
}

.instagram__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.instagram__handle {
  color: var(--warm-gold);
  font-weight: 700;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.instagram__cell {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.instagram__cell-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}
.instagram__cell:hover .instagram__cell-inner { transform: scale(1.06); }
.instagram__cell:hover .instagram__overlay { opacity: 1; }

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity var(--transition);
}

/* Generate varied gradient backgrounds for IG cells */
.instagram__cell:nth-child(1) .instagram__cell-inner { background: linear-gradient(135deg, #e8d5b0, #c9a87a); }
.instagram__cell:nth-child(2) .instagram__cell-inner { background: linear-gradient(135deg, #b5c9a0, #7a9e52); }
.instagram__cell:nth-child(3) .instagram__cell-inner { background: linear-gradient(135deg, #d4b8e0, #8b5fa0); }
.instagram__cell:nth-child(4) .instagram__cell-inner { background: linear-gradient(135deg, #c5d9b0, #6b9e42); }
.instagram__cell:nth-child(5) .instagram__cell-inner { background: linear-gradient(135deg, #e0c8a0, #b8943a); }
.instagram__cell:nth-child(6) .instagram__cell-inner { background: linear-gradient(135deg, #c0d5c0, #5a8e5a); }

.instagram__cta { text-align: center; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #1a0a2e 0%, #0d0618 100%);
  color: rgba(245, 240, 232, 0.85);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}

.footer__brand .nav__logo {
  color: var(--cream);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer__brand p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--warm-gold);
  border-color: var(--warm-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__col h4 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer__links li + li { margin-top: 0.6rem; }
.footer__links a {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--warm-gold); }

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(245, 240, 232, 0.4); }
.newsletter-form input:focus { border-color: var(--warm-gold); }
.newsletter-form button {
  padding: 0.7rem 1.2rem;
  background: var(--warm-gold);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.newsletter-form button:hover { background: #b8943a; }

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom a { color: rgba(245, 240, 232, 0.55); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--warm-gold); }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--cream);
  z-index: 1101;
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transition: right var(--transition);
  overflow: hidden;
}
.cart-sidebar.open { right: 0; }

.cart-sidebar__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-sidebar__header h3 {
  font-size: 1.3rem;
}

.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1.1rem;
  transition: var(--transition);
  background: var(--cream-dark);
}
.cart-close:hover { background: var(--forest-green); color: var(--cream); }

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}
.cart-empty i { font-size: 3rem; color: var(--cream-dark); margin-bottom: 1rem; display: block; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item__img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 0.25rem;
}
.cart-item__price { font-size: 0.9rem; color: var(--text-light); }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-item__qty button {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream-dark);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-item__qty button:hover { background: var(--forest-green); color: var(--cream); }
.cart-item__qty span { font-weight: 700; font-size: 0.95rem; min-width: 20px; text-align: center; }
.cart-item__remove {
  align-self: flex-start;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: #c0392b; }

.cart-sidebar__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--forest-green);
}
.cart-total span:last-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SPARKLE EFFECT ── */
@keyframes sparkle {
  0%   { transform: scale(0) rotate(0deg); opacity: 1; }
  100% { transform: scale(1) rotate(180deg); opacity: 0; }
}
.sparkle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
.sparkle-particle {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--warm-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle 0.8s ease-out forwards;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--deep-purple) 55%, var(--forest-green) 100%);
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: var(--cream); }
.page-header p { color: rgba(245, 240, 232, 0.75); max-width: 500px; margin: 0.75rem auto 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .instagram__cell:nth-child(n+4) { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__links,
  .nav__actions .btn { display: none; }
  .hamburger { display: flex; }
  .nav__cart-btn { display: flex; }

  .story-teaser__inner { grid-template-columns: 1fr; gap: 2rem; }
  .story-teaser__visual { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .instagram__cell:nth-child(n+4) { display: none; }

  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .instagram__cell:nth-child(n+3) { display: none; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
}

/* ── NOTIFICATION TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--forest-green);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  z-index: 2000;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast i { color: var(--warm-gold); }
