/* ==================================================
   NutriCielo — Black & Gold Ancestral Theme (FINAL)
   ================================================== */

:root{
  --bg:#000;
  --bg-soft:#050505;
  --text:#e6d9b8;
  --muted:#bfa86a;
  --primary:#d4af37;
  --accent:#e6c477;
}
html{
  overflow-y:scroll;
}

/* ================= GLOBAL RESET ================= */

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* ================= HEADER / NAV ================= */

.store-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:96px;
  z-index:1000;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
  transition:background .35s ease, box-shadow .35s ease, border-bottom .35s ease;
}

/* SCROLLED STATE */
.store-header.scrolled{
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(212,175,55,0.22);
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.nav-inner{
  max-width:1600px;
  height:100%;
  margin:0 auto;
  padding:0 2.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.brand img{
  height:140px;
  width:140px;
  object-fit:cover;
  border-radius:50%;
  filter:drop-shadow(0 12px 34px rgba(0,0,0,.65));
  transition:transform .25s ease;
}
.brand img:hover{transform:scale(1.03)}

/* NAV LINKS */
nav{
  display:flex;
  align-items:center;
  gap:1.2rem;
  font-size:.95rem;
  letter-spacing:.06em;
}

nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
}

nav a:not(:last-child)::after{
  content:"|";
  margin-left:1.2rem;
  color:rgba(255,255,255,.25);
}

nav a:hover,
nav a.active{color:var(--primary)}

/* ================= HERO ================= */

main{margin-top:96px}

.store-hero,
.ancestral-hero{
  position:relative;
  min-height:calc(100vh - 96px);
  overflow:hidden;
}
/* ================= STORE HERO BACKGROUND ================= */

.store-hero{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:
    linear-gradient(
      to bottom,
      rgba(5,5,5,0.75),
      rgba(5,5,5,0.55),
      rgba(5,5,5,0.85)
    ),
    url("../images/storebg.jpeg") center / cover no-repeat;
}
.store-hero .hero-content h1{
  text-shadow:
    0 0 28px rgba(212,175,55,0.35),
    0 6px 18px rgba(0,0,0,0.85);
}

.store-hero .hero-content p{
  color:#e6e2d6;
  text-shadow:0 3px 10px rgba(0,0,0,0.85);
}
/* ================= KETO HERO ================= */

.keto-hero{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:calc(100vh - 96px);

  background:
    linear-gradient(
      to bottom,
      rgba(5,5,5,0.65),
      rgba(5,5,5,0.45),
      rgba(5,5,5,0.85)
    ),
    url("../images/ketobg.jpeg") center / cover no-repeat;
}

.keto-hero .hero-content h1{
  text-shadow:
    0 0 30px rgba(212,175,55,0.4),
    0 6px 20px rgba(0,0,0,0.85);
}

.keto-hero .hero-content p{
  color:#e6e2d6;
  text-shadow:0 4px 14px rgba(0,0,0,0.85);
}
/* ================= GALLERY HERO ================= */

.gallery-hero{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:calc(100vh - 96px);

  background:
    linear-gradient(
      to bottom,
      rgba(5,5,5,0.55),
      rgba(5,5,5,0.35),
      rgba(5,5,5,0.75)
    ),
    url("../images/gallerybg.jpeg") center / cover no-repeat;
}

.gallery-hero .hero-content h1{
  text-shadow:
    0 0 26px rgba(212,175,55,0.35),
    0 6px 18px rgba(0,0,0,0.85);
}
/* ================= CONTACT — SHARED BACKGROUND ================= */

.contact-bg{
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.65) 0%,
      rgba(0,0,0,.55) 35%,
      rgba(0,0,0,.85) 100%
    ),
    url("../images/contactbg.jpeg") center / cover no-repeat;
}

/* Ensure hero has proper height */
.contact-hero{
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hero text polish */
.contact-hero h1{
  font-family: 'Cinzel', serif;
  color: var(--primary);
  letter-spacing: .12em;
  text-shadow:
    0 0 26px rgba(212,175,55,.35),
    0 6px 18px rgba(0,0,0,.85);
}

.contact-hero p{
  color: #e6e2d6;
  text-shadow: 0 4px 14px rgba(0,0,0,.85);
}

/* ================= CONTACT SECTION ================= */

.contact-section{
  padding: 6rem 0 7rem;
}

/* Grid layout */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
}

/* Panels */
.contact-panel{
  background: rgba(5,5,5,.88);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 22px;
  padding: 2.6rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
}

/* Contact info variant */
.contact-info{
  backdrop-filter: blur(6px);
}

/* Divider */
.contact-divider{
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.6),
    transparent
  );
  margin: 2rem 0;
}

/* ================= FORM ================= */

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-field label{
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}

.form-field input,
.form-field textarea{
  background: #050505;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 12px;
  padding: .9rem 1rem;
  color: var(--text);
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--primary);
}

/* ================= CONTACT LIST ================= */

.contact-list{
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact-list li{
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.contact-list strong{
  color: var(--text);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-hero{
    min-height: 70vh;
  }
}
.gallery-hero .hero-content p{
  color:#e6e2d6;
  text-shadow:0 4px 14px rgba(0,0,0,0.85);
}

/* GREEK GODS */
.god-half{
  position:absolute;
  top:0;
  bottom:0;
  width:50%;
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:absolute;
  opacity:.75;
  pointer-events:none;
}

/* LEFT / RIGHT */
.god-half.left{
  left:0;
  background-position:50% center;
}

.god-half.right{
  right:0;
  background-position:50% center;
}
/* HERO OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.2),
    rgba(0,0,0,.85)
  );
  z-index:2;
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:3;
  min-height:calc(100vh - 96px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:4rem 1.5rem;
  max-width:820px;
  margin:0 auto;
}

.hero-content h1{
  font-family:'Cinzel',serif;
  font-size:clamp(2.4rem,5vw,3.8rem);
  color:var(--primary);
  margin-bottom:1.2rem;
  letter-spacing:.08em;
}

.hero-content p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:2.8rem;
}

/* ================= GOLD BUTTON ================= */

.primary-btn{
  background:linear-gradient(180deg,#e6c477,#d4af37);
  color:#050505;
  padding:1rem 2.6rem;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.08em;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(212,175,55,.4);
  transition:transform .25s ease, box-shadow .25s ease;
}
.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 50px rgba(212,175,55,.6);
}

/* ================= SECTIONS ================= */

section{padding:6.5rem 0}
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:none;
}

.constrain-center{
  max-width:1200px;
  margin:0 auto;
  padding:0 1.5rem;
}

/* ================= CENTER TEXT UTILITY ================= */

.center-text{
  text-align:center;
}

.center-text .add-to-cart{
  margin:2rem auto 0;
  display:inline-block;
}
/* ================= STYLED CENTERED LIST ================= */

.styled-list{
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  text-align: center;
}

.styled-list li{
  margin: .6rem 0;
}

.styled-list li::before{
  content: "•";
  margin-right: .6rem;
  color: var(--primary);
}

/* ================= DARK PANELS ================= */

.dark-panel{
  background:rgba(8,8,8,.88);
  border-top:1px solid rgba(212,175,55,.05);
  border-bottom:1px solid rgba(212,175,55,.05);
}
/* ================= FOUR PILLARS ================= */

.dark-panel .constrain-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.dark-panel h3{
  font-family:'Cinzel',serif;
  color:var(--primary);
  margin-bottom:3rem;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2.2rem;
  max-width:1100px;
  width:100%;
  justify-items:center;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.01),rgba(0,0,0,.12));
  padding:2rem;
  border-radius:16px;
  border:1px solid rgba(212,175,55,.06);
  box-shadow:0 18px 46px rgba(0,0,0,.7);
  text-align:center;
  max-width:260px;
}

.card h4{
  font-family:'Cinzel',serif;
  color:var(--primary);
  margin-bottom:.6rem;
}
.card p{color:var(--muted)}

/* ================= FINAL CTA — BEGIN THE JOURNEY ================= */

.final-cta{
  position:relative;
  background-image:url("../images/byj.jpeg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  isolation:isolate;
  margin-top:4rem;
  box-shadow:
    inset 0 60px 100px rgba(0,0,0,0.55),
    inset 0 -80px 120px rgba(0,0,0,0.7);
}

/* OVERLAY */
.final-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at center 35%,
      rgba(212,175,55,0.14),
      rgba(0,0,0,0.35) 45%,
      rgba(0,0,0,0.65) 100%
    );
  z-index:0;
}

/* CENTER CONTENT */
.final-cta .constrain-center{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* CTA TEXT */
.final-cta h2{
  font-family:'Cinzel',serif;
  color:var(--primary);
  letter-spacing:.1em;
  text-shadow:0 6px 18px rgba(0,0,0,0.65);
}

.final-cta p{
  color:#e6d9b8;
  text-shadow:0 4px 14px rgba(0,0,0,0.6);
  margin-bottom:2.8rem;
}

/* ================= FOOTER ================= */

.site-footer{
  padding:3rem 1.5rem;
  text-align:center;
  color:var(--muted);
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .god-half{display:none}
  .brand img{height:110px;width:110px}
}

@media(max-width:520px){
  nav{gap:.6rem}
  nav a:not(:last-child)::after{margin-left:.6rem}
}
/* ================= STORE SECTIONS ================= */
/* Pull store sections up closer to hero */
.store-section{
  padding-top:4rem;   /* was effectively ~6.5rem */
}
.store-jump{
  position: sticky;
  top: 96px;
  z-index: 1100;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding: 1rem;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
}
.store-section{
  scroll-margin-top: 140px;
}
/* ================= GALLERY ================= */

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  align-items: stretch;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0,0,0,.7);
  background: rgba(212,175,55,.06);
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .6s ease;
}

/* HOVER — subtle, premium */
.gallery-item:hover img{
  transform: scale(1.04);
  filter: brightness(1.05);
}
/* ================= CONTACT PAGE ================= */

.contact-layout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:4rem;
  align-items:start;
}

/* PANEL */
.contact-panel{
  background:rgba(8,8,8,.6);
  border:1px solid rgba(212,175,55,.15);
  border-radius:22px;
  padding:3rem;
  box-shadow:0 25px 70px rgba(0,0,0,.7);
}

/* TITLES */
.contact-panel .section-title{
  margin-bottom:2rem;
}

/* FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:1.4rem;
}

.form-field{
  display:flex;
  flex-direction:column;
}

.form-field label{
  color:var(--muted);
  font-size:.85rem;
  margin-bottom:.4rem;
}

/* INPUTS */
.form-field input,
.form-field textarea{
  background:#050505;
  border:1px solid rgba(212,175,55,.35);
  color:var(--text);
  border-radius:10px;
  padding:.7rem .9rem;
  font-family:inherit;
  font-size:.9rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder{
  color:rgba(230,217,184,.45);
}

.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--primary);
}

/* SUBMIT */
.contact-form .primary-btn{
  margin-top:1rem;
  align-self:flex-start;
}

/* NOTE */
.form-note{
  margin-top:.8rem;
  font-size:.8rem;
}

/* INFO PANEL */
.contact-info .lead-text{
  margin-bottom:1.6rem;
}

/* INFO LIST */
.contact-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-list li{
  display:flex;
  justify-content:space-between;
  padding:.6rem 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:.9rem;
}

.contact-list span{
  color:var(--muted);
}

.contact-list strong{
  color:var(--text);
}

/* DIVIDER */
.contact-divider{
  height:1px;
  background:rgba(212,175,55,.25);
  margin:2rem 0;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact-panel{
    padding:2.2rem;
  }
}

.store-jump a{
  padding: .5rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.35);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.store-jump a:hover{
  background: linear-gradient(180deg,#e6c477,#d4af37);
  color:#050505;
}
.section-title{
  font-family:'Cinzel',serif;
  color:var(--primary);
  text-align:center;
  margin-bottom:3rem;
  letter-spacing:.12em;
}

/* GRID */
.store-section .product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:2rem;
  align-items:start;
}

/* PROTEINS — MUST FIT ONE LINE */
.product-grid.protein-grid{
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}

/* PRODUCT CARD */
.product-card{
  background:linear-gradient(
    180deg,
    rgba(212,175,55,.08),
    rgba(0,0,0,.35)
  );
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
  padding:1.4rem;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.6);
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:pointer;

  /* 🔒 STRUCTURE */
  height: 360px;
  display: flex;
  flex-direction: column;
}

.product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 26px 60px rgba(212,175,55,.45);
}

/* IMAGE */
.product-card img{
  width:120px;
  height:120px;
  object-fit:contain;
  margin:0 auto 1rem;
  display:block;
}

/* TEXT */
.product-card h2{
  font-family:'Cinzel',serif;
  color:var(--primary);
  font-size:1rem;
  margin-bottom:.4rem;
}
.product-card h3{
  font-family:'Cinzel',serif;
  color:var(--primary);
  font-size:1rem;
  margin:0 0 .4rem;
}
.product-card .muted{
  color:var(--muted);
  font-size:.85rem;
  line-height:1.5;
  margin-bottom:.8rem;
}
.intent{
  font-size:.7rem;
  letter-spacing:.12em;
  color:var(--muted);
  opacity:0;
  transition:.25s ease;
}

.product-card:hover .intent{
  opacity:1;
}

.price{
  font-weight:700;
  color:var(--accent);
  margin-bottom:1rem;
}

/* BUTTON */
.add-to-cart{
  display:inline-block;
  background:linear-gradient(180deg,#e6c477,#d4af37);
  color:#050505;
  padding:.6rem 1.6rem;
  border-radius:999px;
  font-weight:700;
  font-size:.85rem;
  text-decoration:none;
  border:none;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(212,175,55,.35);

  margin-top:auto;
}

.add-to-cart:hover{
  box-shadow:0 18px 40px rgba(212,175,55,.55);
}
/* ================= STORE CART ICON ================= */

/* Cart container in nav */
.nav-cart{
  position:relative;
  margin-left:1.2rem;
  cursor:pointer;
}

/* Cart icon */
.nav-cart svg{
  width:26px;
  height:26px;
  stroke:var(--primary);
  stroke-width:1.8;
  fill:none;
  transition:transform .2s ease;
}

.nav-cart:hover svg{
  transform:scale(1.08);
}

/* Cart count bubble */
.cart-count{
  position:absolute;
  top:-6px;
  right:-8px;
  background:linear-gradient(180deg,#e6c477,#d4af37);
  color:#050505;
  font-size:.65rem;
  font-weight:700;
  width:18px;
  height:18px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.6);
}
/* ================= CLICKABLE CARDS ================= */
.product-card.clickable{
  cursor:pointer;
}

/* ================= VARIANT MODAL ================= */
.variant-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.variant-modal.active{
  display:flex;
}

.variant-box{
  background:#050505;
  border:1px solid rgba(212,175,55,.35);
  border-radius:18px;
  padding:2rem;
  width:100%;
  max-width:420px;
  text-align:center;
  box-shadow:0 40px 90px rgba(0,0,0,.8);
}

.variant-box img{
  width:160px;
  height:160px;
  object-fit:contain;
  margin-bottom:1rem;
}

.variant-box h3{
  font-family:'Cinzel',serif;
  color:var(--primary);
  margin-bottom:1rem;
}

.variant-options{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.6rem;
  margin-bottom:1.6rem;
}

.variant-options button{
  padding:.45rem 1rem;
  border-radius:999px;
  background:none;
  border:1px solid rgba(212,175,55,.4);
  color:var(--muted);
  cursor:pointer;
  font-weight:600;
}

.variant-options button.active{
  background:linear-gradient(180deg,#e6c477,#d4af37);
  color:#050505;
}

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

.variant-footer span{
  font-size:1.1rem;
  font-weight:700;
  color:var(--accent);
}

.close-modal{
  position:absolute;
  top:12px;
  right:14px;
  background:none;
  border:none;
  font-size:1.8rem;
  color:var(--muted);
  cursor:pointer;
}
/* === FORCE PRODUCT CARDS TO BE CLICKABLE === */
.product-card,
.product-card * {
  pointer-events: auto !important;
}

.store-section::before,
.store-section::after,
.dark-panel::before,
.dark-panel::after {
  pointer-events: none !important;
}/* =========================
   CART DRAWER (PRO)
========================= */

#cartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9998;
}

#cartDrawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 100%;
  background: #050505;

  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  transition: transform .4s ease;
  z-index: 9999;

  border-left: 1px solid rgba(212,175,55,0.25);
}

/* ACTIVE STATE */
.cart-open #cartOverlay {
  opacity: 1;
  pointer-events: all;
}

.cart-open #cartDrawer {
  transform: translateX(0);
}

/* HEADER */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

.cart-header h2 {
  font-family: "Cinzel", serif;
  color: #d4af37;
}

.cart-header button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #d4af37;
  cursor: pointer;
}

/* ITEMS */
.cart-drawer-items {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

/* ITEM */
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  padding: .5rem;
}

.cart-item h3 {
  font-size: 1rem;
  color: #e6c477;
}

.cart-item .variant {
  font-size: .75rem;
  color: #b9a86a;
  margin-bottom: .4rem;
}

.cart-item .price {
  font-weight: 700;
  color: #d4af37;
}

/* FOOTER */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(212,175,55,0.25);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #e6c477;
}

.gold-btn {
  display: block;
  width: 100%;
  padding: .9rem;
  text-align: center;

  background: linear-gradient(135deg,#d4af37,#f1d98a);
  color: #050505;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.continue-link {
  display: block;
  text-align: center;
  margin-top: .8rem;
  color: #b9a86a;
  font-size: .85rem;
}

/* EMPTY */
.cart-empty {
  text-align: center;
  padding: 2rem;
  display: none;
}
/* ==================================================
   PRODUCT PAGE (IN-STORE EXPERIENCE)
   ================================================== */

.product-page {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 24px;
  background: rgba(212,175,55,.08);
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.75);
}

.product-details h1 {
  font-family: 'Cinzel', serif;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-details p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: .95rem;
}

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

/* BENEFITS LIST */
.product-benefits {
  margin: 2rem 0;
  padding-left: 1.4rem;
}

.product-benefits li {
  margin-bottom: .7rem;
  color: var(--muted);
  position: relative;
  line-height: 1.6;
}

.product-benefits li::before {
  content: "✦";
  color: var(--primary);
  position: absolute;
  left: -1.4rem;
}

/* ==================================================
   PRODUCT CARD GOLD "+" OVERLAY
   ================================================== */

.product-card {
  position: relative;
  overflow: hidden;
}

.quick-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 3rem;
  font-weight: 700;
  color: #050505;
  text-decoration: none;

  background: radial-gradient(
    circle,
    rgba(212,175,55,.95),
    rgba(212,175,55,.65)
  );

  opacity: 0;
  transition: opacity .25s ease;
  border-radius: 18px;
}

.product-card:hover .quick-view {
  opacity: 1;
}

/* ==================================================
   CART DRAWER POLISH (PREMIUM FEEL)
   ================================================== */

.cart-open #cartDrawer {
  animation: cartSlideIn .45s ease;
}

@keyframes cartSlideIn {
  from { transform: translateX(110%); }
  to { transform: translateX(0); }
}

/* EMPTY CART STATE */
.cart-drawer-items.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  padding: 3rem;
}
/* ================= CART DRAWER ================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 998;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: #0b0b0b;
  border-left: 1px solid rgba(212,175,55,.3);
  box-shadow: -20px 0 60px rgba(0,0,0,.8);
  transition: .35s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cart-header h3 {
  font-family: Cinzel, serif;
  color: var(--primary);
}

.cart-header button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

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

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #111;
  border-radius: 8px;
}

.cart-item h4 {
  font-size: .95rem;
  margin: 0;
}

.cart-item small {
  color: #aaa;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  border: none;
  font-weight: 700;
  cursor: pointer;
}
