:root{
  --ivory:#f7f3ee;
  --sand:#e9dfd1;
  --rose:#d9a3a3;
  --gold:#d4af37;
  --black:#0f0f0f;
  --accent:#8aa39b;
  --max-width:1100px;
}

*{box-sizing:border-box}
body{font-family: Georgia, 'Cormorant Garamond', serif; margin:0; background:var(--ivory); color:#000; line-height:1.4;}
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.site-header{display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;background:transparent;position:sticky;top:0;z-index:40}
.logo{height:48px}
.main-nav a, .main-nav button{margin-left:1rem;background:none;border:none;color:inherit;text-decoration:none;font-weight:600}
.hero{position:relative;height:70vh;display:flex;align-items:center;justify-content:center;overflow:hidden}
.hero .hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.6) saturate(.9);}
.hero-overlay{position:relative;z-index:2;color:#fff;text-align:center;padding:2rem;border-radius:12px}
.hero-overlay h1{font-size:3rem;margin:0 0 .5rem}
.hero-overlay .tagline{opacity:.9;margin-bottom:1rem}
.btn{background:linear-gradient(45deg,var(--gold),#e7c77b);color:#111;padding:.75rem 1.25rem;border-radius:999px;border:none;cursor:pointer}
.products,.botanicals,.rituals,.journal,.checkout{max-width:var(--max-width);margin:2rem auto;padding:2rem}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem}
.product-card{background:#fff;padding:1rem;border-radius:12px;box-shadow:0 8px 20px rgba(15,15,15,.06);text-align:left}
.product-card img{width:100%;border-radius:8px;display:block;margin-bottom:.5rem}
.add-btn{background:transparent;border:2px solid var(--gold);padding:.5rem .75rem;border-radius:8px;cursor:pointer}
.mini-cart{position:fixed;right:0;top:0;height:100vh;width:360px;background:#fff;box-shadow:-12px 0 40px rgba(0,0,0,.12);transform:translateX(110%);transition:transform .28s ease;z-index:80;padding:1rem;display:flex;flex-direction:column}
.mini-cart[aria-hidden="false"]{transform:translateX(0)}
.cart-items{flex:1;overflow:auto;margin-top:1rem}
.cart-item{display:flex;gap:.5rem;align-items:center;padding:.5rem 0;border-bottom:1px solid #eee}
.cart-item img{width:64px;height:64px;object-fit:cover;border-radius:6px}
.cart-footer{padding-top:1rem;border-top:1px solid #eee}
.checkout-panel{display:flex;gap:2rem;align-items:center;justify-content:center;flex-wrap:wrap}
.qr-wrap img{width:200px;max-width:100%}
.small{display:inline-block;padding:.35rem .6rem;border-radius:6px;border:1px solid #ddd;background:#fafafa;cursor:pointer}

@media(max-width:720px){
  .hero-overlay h1{font-size:2rem}
  .mini-cart{width:95vw}
}
