/* ===================== RESET & TOKENS ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root{
  --cream: #FFF9F4;
  --white: #FFFFFF;
  --orange: #E8783C;
  --orange-dark: #C85A1E;
  --orange-deep: #C85A1E;
  --orange-darkest: #9E4315;
  --orange-soft: #FDEEE3;
  --violet: #3D2C6D;
  --violet-deep: #2A1D4E;
  --gold: #C9A76A;

  --black: #0D0D0D;
  --anthracite: #1A1A1A;
  --gold-men: #C9A227;
  --gold-men-light: #E4C978;
  --offwhite: #F5F1E8;

  --font-display: 'Playfair Display', serif;
  ----font-body: 'Inter', sans-serif;

  --radius: 18px;
  --shadow-soft: 0 20px 50px rgba(232,120,60,0.14);
  --shadow-card: 0 10px 30px rgba(232,120,60,0.10);
}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  overflow-x:hidden;
  line-height:1.6;
}
@keyframes blobFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-20px,25px) scale(1.08); }
}
@keyframes heroReveal{ to{ opacity:1; transform:translateY(0); } }
@keyframes heroVisualReveal{ to{ opacity:1; transform:scale(1) translateY(0); } }
@keyframes cardReveal{ to{ opacity:1; transform:translateY(0); } }
@keyframes addedPulse{
  0%{ transform:scale(1); } 40%{ transform:scale(1.12); } 100%{ transform:scale(1); }
}
img{max-width:100%; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none;}
h1,h2,h3,h4{font-family: var(--font-display); line-height:1.15;}
.container{max-width:1240px; margin:0 auto; padding:0 24px;}
:focus-visible{outline: 3px solid var(--orange); outline-offset: 3px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

/* Eyebrow label pattern */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.72rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
  color: var(--violet);
  background: var(--orange-soft);
  padding:7px 16px; border-radius:30px;
  margin-bottom:18px;
}
.eyebrow.violet{ color: var(--violet); background: var(--orange-soft); }
.eyebrow.gold{ color: var(--gold-men); background: rgba(201,162,39,0.12); }

.section{padding:100px 0;}
@media (max-width:768px){ .section{padding:64px 0;} }

.section-head{text-align:center; max-width:680px; margin:0 auto 56px;}
.section-head h2{font-size:2.4rem; color:var(--orange-darkest); font-weight:700;}
.section-head p{color:#6b6b6b; font-size:1.02rem; margin-top:14px;}
@media (max-width:768px){ .section-head h2{font-size:1.7rem;} }

/* ===================== NAVBAR ===================== */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom:1px solid rgba(232,120,60,0.12);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.navbar.scrolled{ box-shadow: 0 8px 30px rgba(232,120,60,0.12); background: rgba(255,255,255,0.96); }
.nav-inner{
  max-width:1240px; margin:0 auto; padding:16px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.logo{display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:800; font-size:1.4rem; color:var(--violet);}
.logo-mark{
  width:42px; height:42px; border-radius:50%;
  background: withe;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.2rem; flex-shrink:0;
  box-shadow: 0 6px 18px rgba(232,120,60,0.4);
}
.logo small{display:block; font-family:var(--font-body); font-weight:500; font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--orange-dark);}

.nav-links{display:flex; gap:32px; align-items:center;}
.nav-links a{font-size:0.92rem; font-weight:500; color:var(--anthracite); position:relative; padding:4px 0;}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--orange);
  transition:width 0.25s ease;
}
.nav-links a:hover::after{width:100%;}

.nav-actions{display:flex; align-items:center; gap:18px;}
.icon-btn{
  position:relative; width:42px; height:42px; border-radius:50%; background:var(--cream);
  display:flex; align-items:center; justify-content:center; transition: background 0.2s ease;
}
.icon-btn:hover{background:#f0e9df;}
.cart-count{
  position:absolute; top:-4px; right:-4px; background:var(--orange); color:#fff;
  font-size:0.65rem; font-weight:700; width:19px; height:19px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:40px; font-weight:600; font-size:0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--orange); color:#fff; box-shadow:0 10px 24px rgba(232,120,60,0.35); }
.btn-primary:hover{ background:var(--orange-dark); transform:translateY(-2px); }
.btn-outline{ background:transparent; border:1.5px solid var(--orange); color:var(--orange-deep); }
.btn-outline:hover{ background:var(--orange); color:#fff; }
.btn-sm{padding:10px 18px; font-size:0.82rem;}

.nav-toggle{display:none; width:42px; height:42px; align-items:center; justify-content:center; background:none;}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:22px; height:2px; background:var(--orange-deep); position:relative; transition:0.25s;
}
.nav-toggle span::before{position:absolute; top:-7px;}
.nav-toggle span::after{position:absolute; top:7px;}

@media (max-width: 960px){
  .nav-links{
    position:fixed; top:74px; left:0; right:0; background:#fff; flex-direction:column;
    padding:24px; gap:20px; box-shadow:0 12px 24px rgba(0,0,0,0.08);
    transform:translateY(-150%); opacity:0; transition: all 0.3s ease; pointer-events:none;
  }
  .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-toggle{display:flex;}
  .nav-cta{display:none;}
}

/* ===================== HERO ===================== */
.hero{
  position:relative; padding:150px 0 90px; overflow:hidden;
  background: linear-gradient(160deg, #FDEEE3 0%, #FFFFFF 55%, #FFF9F4 100%);
}
.hero-blob{
  position:absolute; border-radius:50%; filter:blur(0px); opacity:0.5; z-index:0;
}
.hero-blob.b1{
  width:520px; height:520px;
  background: radial-gradient(circle, rgba(232,120,60,0.28), transparent 70%);
  top:-140px; right:-120px;
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob.b2{
  width:420px; height:420px;
  background: radial-gradient(circle, rgba(232,120,60,0.16), transparent 70%);
  bottom:-160px; left:-120px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}

.hero-grid{
  display:grid; grid-template-columns:1.05fr 1fr; gap:56px; align-items:center; position:relative; z-index:1;
}
.hero-copy h1{
  font-size:3.2rem; color:var(--orange-darkest); margin-bottom:22px; font-weight:700;
}
.hero-copy h1 em{
  font-style:normal; color:var(--white); position:relative;
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  padding: 2px 14px; border-radius: 10px;
  box-shadow: 0 8px 20px rgba(232,120,60,0.35);
  display:inline-block;
}
.hero-copy p{ font-size:1.08rem; color:#5a5a5a; max-width:480px; margin-bottom:32px; }
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px;}

.hero-copy > *{
  opacity:0; transform:translateY(24px);
  animation: heroReveal 0.8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-copy .eyebrow{ animation-delay:0.05s; }
.hero-copy h1{ animation-delay:0.15s; }
.hero-copy p{ animation-delay:0.28s; }
.hero-copy .hero-actions{ animation-delay:0.4s; }
.hero-copy .hero-badges{ animation-delay:0.52s; }

.hero-visual{
  opacity:0; transform: scale(0.92) translateY(20px);
  animation: heroVisualReveal 0.9s cubic-bezier(.16,1,.3,1) 0.3s forwards;
}

.hero-badges{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-badge{ display:flex; align-items:center; gap:10px; font-size:0.85rem; font-weight:500; color:var(--anthracite); }
.hero-badge .dot{
  width:38px; height:38px; border-radius:50%; background:#fff; box-shadow:var(--shadow-card);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0;
}

.hero-visual{ position:relative; display:flex; justify-content:center; align-items:center; }
.hero-img-wrap{
  position:relative; width:100%; max-width:460px; aspect-ratio:1/1.05;
  border-radius:40% 60% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(145deg, #fff, var(--orange-soft));
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(232,120,60,0.08);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  transition: transform 0.5s ease;
}
.hero-img-wrap:hover{ transform: translateY(-6px); }
.hero-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.floating-card{
  position:absolute; background: linear-gradient(145deg, #fff, var(--orange-soft));
  border-radius:16px; box-shadow: 0 14px 34px rgba(232,120,60,0.22);
  padding:14px 18px; display:flex; align-items:center; gap:12px; font-size:0.82rem; font-weight:600;
  animation: floaty 5s ease-in-out infinite;
}
.floating-card.fc1{ top:8%; left:-6%; }
.floating-card.fc2{ bottom:10%; right:-8%; animation-delay:1.2s; }
.floating-card .fc-icon{
  width:34px; height:34px; border-radius:50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
@keyframes floaty{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-copy{ order:2; text-align:center; }
  .hero-copy p{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-badges{ justify-content:center; }
  .hero-visual{ order:1; }
  .floating-card{ display:none; }
}
@media (max-width:600px){ .hero-copy h1{ font-size:2.2rem; } }

/* ===================== TRUST STRIP ===================== */
.trust-strip{ background: linear-gradient(90deg, var(--orange-deep), var(--orange)); padding:22px 0; }
.trust-inner{ display:flex; justify-content:space-around; flex-wrap:wrap; gap:18px; color:#fff; }
.trust-item{ display:flex; align-items:center; gap:10px; font-size:0.85rem; font-weight:500; opacity:0.92; }

/* ===================== FEATURED PRODUCTS (WOMEN) ===================== */
.featured-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:26px;
}
@media (max-width:960px){ .featured-grid{ grid-template-columns:1fr; } }

.product-card{
  background:#fff; border-radius:var(--radius); overflow:hidden;
  box-shadow: 0 8px 24px rgba(232,120,60,0.10);
  border: 1px solid rgba(232,120,60,0.08);
  display:flex; flex-direction:column;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position:relative;
  opacity:0; transform: translateY(30px);
}
.product-card.in-view{ animation: cardReveal 0.7s cubic-bezier(.16,1,.3,1) forwards; }
.product-card:hover{
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 30px 60px rgba(232,120,60,0.22);
  border-color: rgba(232,120,60,0.25);
}
.product-card .badge{
  position:absolute; top:14px; left:14px;
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  color:#fff; font-size:0.68rem;
  font-weight:700; letter-spacing:0.05em; text-transform:uppercase; padding:5px 12px; border-radius:20px; z-index:2;
  box-shadow: 0 6px 16px rgba(232,120,60,0.4);
}
.product-media{
  aspect-ratio:1/1; background: linear-gradient(150deg, var(--orange-soft), #fff);
  display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
}
.product-media .ph-icon{ font-size:3.2rem; opacity:0.85; transition: transform 0.5s cubic-bezier(.16,1,.3,1); }
.product-card:hover .product-media .ph-icon{ transform: scale(1.15) rotate(-4deg); }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s cubic-bezier(.16,1,.3,1); }
.product-card:hover .product-media img{ transform: scale(1.08); }
.product-media::after{
  content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 20%, rgba(232,120,60,0.16), transparent 60%);
}
.product-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-body .p-cat{ font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--orange-deep); }
.product-body h3{ font-size:1.15rem; color:var(--violet); font-weight:600; }
.product-body p.desc{ font-size:0.86rem; color:#767676; flex:1; }
.product-footer{ display:flex; align-items:center; justify-content:space-between; margin-top:6px; }
.price{ font-family:var(--font-display); font-weight:700; font-size:1.3rem; color:var(--orange-darkest); }
.add-btn{
  display:flex; align-items:center; gap:8px;
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  color:#fff; padding:10px 18px;
  border-radius:30px; font-size:0.82rem; font-weight:600;
  box-shadow: 0 8px 20px rgba(232,120,60,0.3);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, background 0.25s ease;
}
.add-btn:hover{ transform: scale(1.06) translateY(-2px); box-shadow: 0 12px 26px rgba(232,120,60,0.45); }
.add-btn:active{ transform: scale(0.96); }
.add-btn.added{ background: linear-gradient(120deg, #2e9e5b, #22823f); animation: addedPulse 0.5s ease; }

/* Men variant card accents */
.product-card.men{ background:var(--anthracite); }
.product-card.men .product-media{ background:linear-gradient(150deg, #1f1f1f, #0d0d0d); }
.product-card.men .product-media::after{ background: radial-gradient(circle at 70% 20%, rgba(201,162,39,0.14), transparent 60%); }
.product-card.men .p-cat{ color:var(--gold-men); }
.product-card.men h3{ color:var(--offwhite); }
.product-card.men p.desc{ color:#9c9c9c; }
.product-card.men .price{ color:var(--gold-men); }
.product-card.men .add-btn{
  background: linear-gradient(120deg, var(--gold-men), var(--gold-men-light));
  color:#111; box-shadow: 0 8px 20px rgba(201,162,39,0.35);
}
.product-card.men .add-btn:hover{ transform: scale(1.06) translateY(-2px); }
.product-card.men:hover{
  box-shadow: 0 30px 60px rgba(201,162,39,0.25);
  border-color: rgba(201,162,39,0.3);
}

/* ===================== CAROUSELS ===================== */
.carousel-wrap{ position:relative; overflow:hidden; }
.carousel-track{ display:flex; gap:24px; transition: transform 0.6s cubic-bezier(.4,0,.2,1); will-change:transform; }
.carousel-track .product-card{ min-width:270px; max-width:270px; flex-shrink:0; }
.carousel-nav{ display:flex; justify-content:center; gap:14px; margin-top:32px; }
.carousel-dot{
  width:9px; height:9px; border-radius:50%; background:#f0d9c4; transition:0.25s ease; cursor:pointer;
}
.carousel-dot.active{ background:var(--orange); width:26px; border-radius:6px; }
.carousel-arrows{ display:flex; justify-content:flex-end; gap:12px; margin-bottom:20px; }
.arrow-btn{
  width:44px; height:44px; border-radius:50%; background:#fff; box-shadow: 0 8px 20px rgba(232,120,60,0.15);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--orange-deep);
  transition: 0.3s cubic-bezier(.34,1.56,.64,1);
}
.arrow-btn:hover{
  background: linear-gradient(120deg, var(--orange), var(--orange-deep)); color:#fff; transform: scale(1.1);
}

.bundle-track .product-card{ background: linear-gradient(160deg, #fff, var(--orange-soft)); border:1px solid rgba(201,167,106,0.4); }
.bundle-track .badge{ background: linear-gradient(120deg, var(--gold), #b3925a); }

/* ===================== STORY SECTION ===================== */
.story{
  background: linear-gradient(135deg, #fff 0%, var(--orange-soft) 55%, #ffe3cc 100%);
  color: var(--anthracite); position:relative; overflow:hidden;
}
.story::before{
  content:""; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(232,120,60,0.25), transparent 65%); top:-200px; right:-160px;
}
.story-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:center; position:relative; z-index:1; }
.story-visual{
  border-radius:28px; overflow:hidden; aspect-ratio:4/5; box-shadow:0 30px 60px rgba(232,120,60,0.2);
  background:linear-gradient(150deg, rgba(232,120,60,0.12), rgba(232,120,60,0.25));
  display:flex; align-items:center; justify-content:center; position:relative;
  border:1px solid rgba(232,120,60,0.2);
}
.story-visual .quote-mark{ font-family:var(--font-display); font-size:5rem; color:var(--orange); opacity:0.4; }
.story-copy h2{ font-size:2.3rem; margin-bottom:22px; color:var(--violet); }
.story-copy p{ color:#4a4a4a; margin-bottom:18px; font-size:1rem; max-width:560px; }
.story-copy .eyebrow{ background: rgba(232,120,60,0.14); color: var(--orange-darkest); }
.story-copy .signature{ font-family:var(--font-display); font-style:italic; font-size:1.3rem; color:var(--orange-deep); margin-top:20px; }
.story-stats{ display:flex; gap:40px; margin-top:38px; flex-wrap:wrap; }
.story-stat b{ font-family:var(--font-display); font-size:1.9rem; display:block; color:var(--orange-deep); }
.story-stat span{ font-size:0.8rem; color:#6b6b6b; text-transform:uppercase; letter-spacing:0.06em; }

@media (max-width:900px){
  .story-grid{ grid-template-columns:1fr; }
  .story-visual{ order:1; max-width:380px; margin:0 auto; }
  .story-copy{ order:2; text-align:center; }
  .story-copy p{ margin-left:auto; margin-right:auto; }
  .story-stats{ justify-content:center; }
}

/* ===================== MEN'S RANGE SECTION ===================== */
.mens-section{ background:var(--black); color:var(--offwhite); position:relative; }
.mens-section .section-head h2{ color:var(--gold-men); }
.mens-section .section-head p{ color:#a8a8a8; }
.mens-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media (max-width:960px){ .mens-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .mens-grid{ grid-template-columns:1fr; } }

/* ===================== NEWSLETTER / CTA BAND ===================== */
.cta-band{ background: linear-gradient(120deg, var(--orange), var(--orange-deep)); color:#fff; padding:70px 0; text-align:center; }
.cta-band h2{ font-size:2rem; margin-bottom:12px; }
.cta-band p{ opacity:0.92; margin-bottom:30px; }
.newsletter-form{ display:flex; gap:12px; max-width:480px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.newsletter-form input{
  flex:1; min-width:220px; padding:15px 20px; border-radius:30px; border:none; font-size:0.95rem; font-family:inherit;
}
.newsletter-form button{ background: var(--anthracite); color:#fff; }
.newsletter-form button:hover{ background: #000; }

/* ===================== FOOTER ===================== */
footer{ background: var(--white); color: var(--anthracite); border-top:1px solid rgba(232,120,60,0.15); padding:70px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:50px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-col h4{ font-family:var(--font-body); font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--orange-darkest); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:10px; font-size:0.88rem; }
.footer-col ul li a{ color:#555; }
.footer-col ul li a:hover{ color:var(--orange-deep); }
.footer-logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-size:1.3rem; font-weight:800; color:var(--violet); margin-bottom:14px; }
.footer-bottom{ border-top:1px solid rgba(232,120,60,0.12); padding-top:24px; text-align:center; font-size:0.8rem; color:#888; }
.social-row{ display:flex; gap:12px; margin-top:16px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background: var(--orange-soft); color: var(--orange-deep); display:flex; align-items:center; justify-content:center; transition:0.2s ease; }
.social-row a:hover{ background:var(--orange); color:#fff; }

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; z-index:1200;
  width:62px; height:62px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(37,211,102,0.5);
  animation: pulse-wa 2.6s infinite;
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:32px; height:32px; }
@keyframes pulse-wa{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.55), 0 10px 30px rgba(37,211,102,0.4); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,0.4); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,0.4); }
}
@media (max-width:600px){ .whatsapp-float{ width:54px; height:54px; bottom:18px; right:18px; } .whatsapp-float svg{ width:27px; height:27px; } }

/* ===================== CART DRAWER ===================== */
.cart-overlay{
  position:fixed; inset:0; background:rgba(20,14,36,0.5); z-index:1400; opacity:0; pointer-events:none; transition:0.3s ease;
}
.cart-overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:420px; max-width:92vw; background:#fff; z-index:1500;
  box-shadow:-20px 0 50px rgba(0,0,0,0.2); transform:translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column;
}
.cart-drawer.open{ transform:translateX(0); }
.cart-head{ padding:24px 26px; border-bottom:1px solid #eee; display:flex; align-items:center; justify-content:space-between; }
.cart-head h3{ color:var(--violet); font-size:1.3rem; }
.close-btn{ width:36px; height:36px; border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.cart-items{ flex:1; overflow-y:auto; padding:16px 26px; }
.cart-item{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid #f2f2f2; align-items:center; }
.cart-item-icon{ width:60px; height:60px; border-radius:12px; background:var(--cream); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:var(--orange-deep); }
.cart-item-info{ flex:1; }
.cart-item-info h4{ font-family:var(--font-body); font-size:0.92rem; font-weight:600; }
.cart-item-info span{ font-size:0.8rem; color:#888; }
.qty-controls{ display:flex; align-items:center; gap:10px; margin-top:6px; }
.qty-controls button{ width:24px; height:24px; border-radius:50%; background:var(--cream); font-size:0.9rem; }
.remove-item{ font-size:0.75rem; color:var(--orange-dark); margin-top:6px; text-decoration:underline; }
.cart-empty{ text-align:center; padding:60px 20px; color:#999; }
.cart-footer{ padding:22px 26px; border-top:1px solid #eee; }
.cart-total{ display:flex; justify-content:space-between; font-weight:700; font-size:1.15rem; margin-bottom:16px; color:var(--violet); }
.cart-footer .btn{ width:100%; }

/* Toast */
.toast{
  position:fixed; bottom:100px; right:26px; background:var(--anthracite); color:#fff; padding:14px 22px; border-radius:14px;
  font-size:0.88rem; font-weight:500; box-shadow:0 12px 30px rgba(0,0,0,0.2); z-index:1600;
  transform:translateY(20px); opacity:0; transition:0.3s ease; pointer-events:none;
}
.toast.show{ transform:translateY(0); opacity:1; }
@media (max-width:600px){ .toast{ right:18px; left:18px; bottom:86px; } }
m
