/* ==========================================================
   MOSKA Fashion Wear — Complete Design System
   Palette: Warm Beige · Cream · Black · Gold Accent
   ========================================================== */

/* ───── Google Fonts ───── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cairo:wght@300;400;500;600;700&display=swap');

/* ───── CSS Custom Properties ───── */
:root {
  --bg-primary:    #faf5f0;
  --bg-secondary:  #f3ebe2;
  --bg-dark:       #1a1a1a;
  --bg-dark-soft:  #2d2622;
  --bg-card:       #ffffff;

  --text-primary:   #1a1a1a;
  --text-secondary: #6b5e53;
  --text-muted:     #9a8e82;
  --text-light:     #faf5f0;

  --accent:        #c4a882;
  --accent-hover:  #b39670;
  --accent-light:  #e8ddd3;
  --accent-glow:   rgba(196,168,130,.35);

  --border:        #e0d5c9;
  --border-light:  #f0e8df;

  --success:  #6b8f71;
  --error:    #c47070;
  --whatsapp: #25D366;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 50%;

  --shadow-sm:  0 2px 8px  rgba(0,0,0,.04);
  --shadow-md:  0 4px 20px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.08);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.12);

  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --ease-bounce:   cubic-bezier(.68,-.55,.265,1.55);
}

/* ───── Reset & Base ───── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:var(--font-body);
  background:var(--bg-primary);
  color:var(--text-primary);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .3s ease}
button{cursor:pointer;border:none;background:none;font-family:inherit}
ul,ol{list-style:none}
input,select,textarea{font-family:inherit;font-size:inherit}

/* Selection colour */
::selection{background:var(--accent);color:#fff}

/* ───── Utilities ───── */
.container{width:100%;max-width:1280px;margin:0 auto;padding:0 1.5rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ───── Typography ───── */
h1,h2,h3,h4{font-family:var(--font-heading);font-weight:600;line-height:1.25;letter-spacing:-.02em}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.6rem,3.5vw,2.5rem)}
h3{font-size:clamp(1.1rem,2vw,1.5rem)}

/* ===================================================================
   ANNOUNCEMENT BAR
   =================================================================== */
.announcement-bar{
  background:var(--bg-dark);
  color:var(--text-light);
  text-align:center;
  padding:.55rem 1rem;
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  position:relative;
  z-index:1001;
}
.announcement-bar span{opacity:.9}
.announcement-bar .highlight{color:var(--accent);font-weight:600}

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(250,245,240,.82);
  backdrop-filter:blur(18px) saturate(1.6);
  -webkit-backdrop-filter:blur(18px) saturate(1.6);
  border-bottom:1px solid var(--border-light);
  transition:box-shadow .4s ease, background .4s ease;
}
.navbar.scrolled{
  box-shadow:var(--shadow-md);
  background:rgba(250,245,240,.95);
}
.navbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
}

/* Logo */
.logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.logo-img{
  height:52px;
  width:auto;
  max-width:140px;
  object-fit:contain;
  transition:transform .3s ease, opacity .3s ease;
  display:block;
}
.logo:hover .logo-img{
  transform:scale(1.04);
}
.logo-monogram{
  font-family:var(--font-heading);
  font-size:1.8rem;
  font-weight:700;
  letter-spacing:.04em;
  line-height:1;
  color:var(--text-primary);
}
.logo-text{
  font-family:var(--font-heading);
  font-size:.55rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:var(--text-secondary);
  margin-top:-.1rem;
}

/* Footer Logo */
.footer-logo{
  display:inline-block;
  margin-bottom:0.75rem;
}
.footer-logo-img{
  height:58px;
  width:auto;
  filter:invert(1) brightness(1.2);
  display:block;
  transition:transform .3s ease, opacity .3s ease;
}
.footer-logo:hover .footer-logo-img{
  transform:scale(1.04);
}

/* Nav links */
.nav-links{display:flex;gap:2.2rem;align-items:center}
.nav-links a{
  font-size:.85rem;
  font-weight:500;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--text-secondary);
  position:relative;
  padding:.25rem 0;
  transition:color .3s ease;
}
.nav-links a::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:1.5px;
  background:var(--accent);transition:width .35s var(--ease-out-expo);
}
.nav-links a:hover{color:var(--text-primary)}
.nav-links a:hover::after{width:100%}
.nav-links a.active{color:var(--text-primary)}
.nav-links a.active::after{width:100%}

/* Nav actions */
.nav-actions{display:flex;align-items:center;gap:1rem}
.nav-action-btn{
  position:relative;
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius-full);
  transition:background .3s ease, transform .2s ease;
}
.nav-action-btn:hover{background:var(--bg-secondary);transform:scale(1.08)}
.nav-action-btn svg{width:22px;height:22px;stroke:var(--text-primary);fill:none;stroke-width:1.8}
.cart-count{
  position:absolute;top:2px;right:2px;
  width:18px;height:18px;
  background:var(--accent);color:#fff;
  font-size:.65rem;font-weight:700;
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  transform:scale(0);
  transition:transform .3s var(--ease-bounce);
}
.cart-count.show{transform:scale(1)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:.5rem;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--text-primary);transition:all .3s ease;border-radius:2px}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Mobile menu */
.mobile-menu{
  display:none;
  position:fixed;top:0;left:0;width:100%;height:100vh;
  background:rgba(250,245,240,.98);
  backdrop-filter:blur(20px);
  z-index:999;
  flex-direction:column;
  align-items:center;justify-content:center;
  gap:2rem;
  opacity:0;
  transition:opacity .4s ease;
}
.mobile-menu.active{display:flex;opacity:1}
.mobile-menu a{
  font-family:var(--font-heading);
  font-size:1.8rem;
  color:var(--text-primary);
  opacity:0;
  transform:translateY(20px);
  animation:fadeInUp .5s var(--ease-out-expo) forwards;
}
.mobile-menu a:nth-child(1){animation-delay:.1s}
.mobile-menu a:nth-child(2){animation-delay:.2s}
.mobile-menu a:nth-child(3){animation-delay:.3s}
.mobile-menu a:nth-child(4){animation-delay:.4s}
.mobile-menu .close-menu{
  position:absolute;top:1.5rem;right:1.5rem;
  font-size:2rem;cursor:pointer;color:var(--text-primary);
}

/* Search overlay */
.search-overlay{
  position:fixed;top:0;left:0;width:100%;height:100vh;
  background:rgba(250,245,240,.97);
  backdrop-filter:blur(24px);
  z-index:1100;
  display:flex;align-items:flex-start;justify-content:center;
  padding-top:15vh;
  opacity:0;pointer-events:none;
  transition:opacity .4s ease;
}
.search-overlay.active{opacity:1;pointer-events:all}
.search-box{
  width:90%;max-width:640px;
  transform:translateY(30px);
  transition:transform .5s var(--ease-out-expo);
}
.search-overlay.active .search-box{transform:translateY(0)}
.search-input{
  width:100%;
  padding:1.2rem 1.5rem;
  font-size:1.3rem;
  border:2px solid var(--border);
  border-radius:var(--radius-lg);
  background:var(--bg-card);
  color:var(--text-primary);
  outline:none;
  transition:border-color .3s ease;
}
.search-input:focus{border-color:var(--accent)}
.search-input::placeholder{color:var(--text-muted)}
.search-close{
  position:absolute;top:2rem;right:2rem;
  font-size:1.8rem;cursor:pointer;color:var(--text-secondary);
  transition:color .3s ease;
}
.search-close:hover{color:var(--text-primary)}
.search-results{
  margin-top:1.5rem;
  max-height:50vh;
  overflow-y:auto;
}
.search-result-item{
  display:flex;align-items:center;gap:1rem;
  padding:1rem;border-radius:var(--radius-md);
  cursor:pointer;transition:background .3s ease;
}
.search-result-item:hover{background:var(--bg-secondary)}
.search-result-item img{width:60px;height:60px;object-fit:cover;border-radius:var(--radius-sm)}

/* ===================================================================
   ANIMATED VIDEO HERO
   =================================================================== */
.hero-video{
  position:relative;
  height:100vh;
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0a0a0a;
  overflow:hidden;
}

/* Background Image Layers with Ken Burns */
.hero-video-layers{
  position:absolute;inset:0;
}
.hero-video-layer{
  position:absolute;inset:-10%;
  width:120%;height:120%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 2s ease-in-out;
  will-change:transform, opacity;
}
.hero-video-layer.active{
  opacity:1;
  animation:kenBurns 8s ease-in-out infinite alternate;
}
.hero-video-layer:nth-child(2).active{ animation-name:kenBurns2; }
.hero-video-layer:nth-child(3).active{ animation-name:kenBurns3; }
.hero-video-layer:nth-child(odd).active{ animation-name:kenBurns4; }

@keyframes kenBurns{
  from{transform:scale(1) translate(0,0)}
  to{transform:scale(1.15) translate(-2%,-1%)}
}
@keyframes kenBurns2{
  from{transform:scale(1.05) translate(-1%,0)}
  to{transform:scale(1.2) translate(1%,-2%)}
}
@keyframes kenBurns3{
  from{transform:scale(1) translate(1%,1%)}
  to{transform:scale(1.12) translate(-1%,2%)}
}
@keyframes kenBurns4{
  from{transform:scale(1.08) translate(0,-1%)}
  to{transform:scale(1.18) translate(-2%,0)}
}

/* Cinematic Overlay */
.hero-video-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.2) 30%, rgba(10,10,10,.5) 70%, rgba(10,10,10,.85) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,.4) 100%);
  z-index:2;
}

/* Floating Particles */
.hero-particles{
  position:absolute;inset:0;
  z-index:3;
  pointer-events:none;
}
.hero-particle{
  position:absolute;
  width:3px;height:3px;
  background:var(--accent);
  border-radius:var(--radius-full);
  opacity:0;
  animation:particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat{
  0%{opacity:0;transform:translateY(100vh) scale(0)}
  20%{opacity:.6}
  80%{opacity:.3}
  100%{opacity:0;transform:translateY(-10vh) scale(1)}
}

/* Main Content */
.hero-video-content{
  position:relative;
  z-index:5;
  text-align:center;
  padding:0 2rem;
}

/* Brand Reveal — MOSKA */
.hero-brand-reveal{
  margin-bottom:1.5rem;
  overflow:hidden;
}
.hero-brand-line{
  display:flex;
  justify-content:center;
  gap:clamp(.2rem, 1.5vw, 1rem);
}
.hero-brand-letter{
  font-family:var(--font-heading);
  font-size:clamp(4rem, 14vw, 10rem);
  font-weight:700;
  color:#fff;
  line-height:1;
  display:inline-block;
  opacity:0;
  transform:translateY(100%) rotateX(-90deg);
  animation:letterReveal 1s calc(var(--delay) * 0.12s + 0.5s) var(--ease-out-expo) forwards;
  text-shadow:0 0 40px rgba(196,168,130,.3);
}
@keyframes letterReveal{
  0%{opacity:0;transform:translateY(100%) rotateX(-90deg)}
  60%{opacity:1;transform:translateY(-5%) rotateX(5deg)}
  100%{opacity:1;transform:translateY(0) rotateX(0)}
}



/* Tagline with typewriter */
.hero-tagline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
  margin-bottom:1.5rem;
  min-height:2rem;
  opacity:0;
  animation:fadeIn .8s 1.5s ease forwards;
}
.hero-tagline-text{
  font-family:var(--font-heading);
  font-size:clamp(1rem, 2.5vw, 1.5rem);
  color:var(--accent);
  font-style:italic;
  letter-spacing:.05em;
}
.hero-cursor{
  color:var(--accent);
  font-size:1.5rem;
  animation:blink 1s step-end infinite;
}
@keyframes blink{
  0%,100%{opacity:1}
  50%{opacity:0}
}

/* Subtext */
.hero-subtext{
  font-size:clamp(.8rem, 1.5vw, 1rem);
  color:rgba(255,255,255,.5);
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:2.5rem;
  opacity:0;
  animation:fadeInUp .8s 2s var(--ease-out-expo) forwards;
}

/* Actions */
.hero-video-actions{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeInUp .8s 2.3s var(--ease-out-expo) forwards;
}

/* Scroll Indicator */
.hero-scroll-indicator{
  position:absolute;
  bottom:2rem;
  left:50%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  opacity:0;
  animation:fadeIn 1s 3s ease forwards;
}
.hero-scroll-indicator span{
  font-size:.65rem;
  color:rgba(255,255,255,.4);
  letter-spacing:.3em;
  text-transform:uppercase;
}
.hero-scroll-line{
  width:1px;
  height:40px;
  background:linear-gradient(to bottom, var(--accent), transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* Corner Decorations */
.hero-corner{
  position:absolute;
  width:80px;height:80px;
  z-index:4;
  opacity:.3;
}
.hero-corner-tl{
  top:2rem;left:2rem;
  border-top:1px solid var(--accent);
  border-left:1px solid var(--accent);
}
.hero-corner-br{
  bottom:2rem;right:2rem;
  border-bottom:1px solid var(--accent);
  border-right:1px solid var(--accent);
}

/* ===================================================================
   MARQUEE BANNER
   =================================================================== */
.marquee-section{
  background:var(--bg-dark);
  padding:.9rem 0;
  overflow:hidden;
  border-top:1px solid rgba(196,168,130,.15);
  border-bottom:1px solid rgba(196,168,130,.15);
}
.marquee-track{
  display:flex;
  width:max-content;
  animation:marqueeScroll 25s linear infinite;
}
.marquee-content{
  display:flex;
  align-items:center;
  gap:2.5rem;
  padding-right:2.5rem;
  white-space:nowrap;
}
.marquee-content span{
  font-family:var(--font-heading);
  font-size:.85rem;
  font-weight:500;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:rgba(250,245,240,.6);
}
.marquee-dot{
  color:var(--accent)!important;
  font-size:1rem!important;
}
@keyframes marqueeScroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* ===================================================================
   CATEGORIES GRID
   =================================================================== */
.categories-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.category-card{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  cursor:pointer;
  group:true;
}
.category-card-img{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .8s var(--ease-out-expo);
}
.category-card:hover .category-card-img{
  transform:scale(1.08);
}
.category-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(26,26,26,.8) 0%, rgba(26,26,26,.2) 50%, rgba(26,26,26,.05) 100%);
  transition:background .4s ease;
}
.category-card:hover .category-card-overlay{
  background:linear-gradient(to top, rgba(26,26,26,.9) 0%, rgba(26,26,26,.3) 50%, rgba(26,26,26,.1) 100%);
}
.category-card-content{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:1.5rem;
  z-index:2;
  transform:translateY(10px);
  transition:transform .4s var(--ease-out-expo);
}
.category-card:hover .category-card-content{
  transform:translateY(0);
}
.category-card-icon{
  width:46px;height:46px;
  border-radius:var(--radius-full);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;
  margin-bottom:.8rem;
  transition:all .35s var(--ease-out-expo);
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.category-card:hover .category-card-icon{
  background:var(--accent);
  border-color:var(--accent);
  color:#111;
  transform:scale(1.08) translateY(-2px);
  box-shadow:0 6px 18px rgba(196,168,130,.35);
}
.category-card-icon svg{
  width:22px;height:22px;
  stroke:currentColor;fill:none;
  display:block;
}
.category-card-name{
  font-family:var(--font-heading);
  font-size:1.3rem;
  color:#fff;
  margin-bottom:.3rem;
}
.category-card-count{
  font-size:.8rem;
  color:rgba(255,255,255,.5);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.category-card-arrow{
  position:absolute;
  top:1rem;right:1rem;
  width:40px;height:40px;
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  opacity:0;
  transform:translateX(-10px);
  transition:all .4s var(--ease-out-expo);
}
.category-card:hover .category-card-arrow{
  opacity:1;
  transform:translateX(0);
}
.category-card-arrow svg{
  width:18px;height:18px;
  stroke:#fff;fill:none;stroke-width:2;
}

/* ===================================================================
   BEST SELLERS CAROUSEL
   =================================================================== */
.bestsellers-section{
  background:var(--bg-secondary);
}
.bestsellers-carousel{
  display:flex;
  gap:1.5rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:1rem;
  scrollbar-width:none;
}
.bestsellers-carousel::-webkit-scrollbar{display:none}
.bestseller-card{
  flex:0 0 280px;
  scroll-snap-align:start;
  background:var(--bg-card);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:transform .4s var(--ease-out-expo), box-shadow .4s ease;
  cursor:pointer;
}
.bestseller-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.bestseller-card-img{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  background:var(--bg-secondary);
}
.bestseller-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s var(--ease-out-expo);
}
.bestseller-card:hover .bestseller-card-img img{
  transform:scale(1.05);
}
.bestseller-rank{
  position:absolute;
  top:.75rem;left:.75rem;
  width:32px;height:32px;
  background:var(--accent);
  color:#fff;
  font-size:.75rem;
  font-weight:700;
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
}
.bestseller-card-body{
  padding:1rem;
}
.bestseller-card-name{
  font-family:var(--font-heading);
  font-size:.95rem;
  margin-bottom:.3rem;
}
.bestseller-card-price{
  font-weight:700;
  color:var(--text-primary);
  font-size:1rem;
}

/* ===================================================================
   BRAND STORY SECTION
   =================================================================== */
.brand-story-section{
  background:var(--bg-primary);
}
.brand-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.brand-story-image{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
}
.brand-story-image img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .8s var(--ease-out-expo);
}
.brand-story-image:hover img{
  transform:scale(1.03);
}
.brand-story-badge{
  position:absolute;
  bottom:1.5rem;left:1.5rem;
  padding:.6rem 1.2rem;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(8px);
  border-radius:var(--radius-xl);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-primary);
}
.brand-story-content .label{
  display:inline-block;
  font-size:.7rem;font-weight:600;
  letter-spacing:.25em;text-transform:uppercase;
  color:var(--accent);
  margin-bottom:.75rem;
}
.brand-story-content h2{
  margin-bottom:1.5rem;
}
.brand-story-content h2 em{
  font-style:italic;
  color:var(--accent);
}
.brand-story-content p{
  color:var(--text-secondary);
  font-size:.95rem;
  line-height:1.8;
  margin-bottom:1rem;
}
.brand-story-stats{
  display:flex;
  gap:2rem;
  margin:2rem 0;
  padding:1.5rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.brand-stat{
  text-align:center;
}
.brand-stat-number{
  display:block;
  font-family:var(--font-heading);
  font-size:1.6rem;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:.25rem;
}
.brand-stat-label{
  font-size:.75rem;
  color:var(--text-muted);
  letter-spacing:.05em;
  text-transform:uppercase;
}

/* ===================================================================
   KEY FEATURES (Product Detail Page)
   =================================================================== */
.key-features-section{
  margin:1.5rem 0;
  padding:1.2rem;
  background:var(--bg-secondary);
  border-radius:var(--radius-md);
  border:1px solid var(--border-light);
}
.key-features-title{
  font-family:var(--font-body);
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-primary);
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.key-features-title svg{
  width:18px;height:18px;
  stroke:var(--accent);fill:none;stroke-width:2;
}
.key-features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
}
.key-feature-item{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding:.5rem .6rem;
  border-radius:var(--radius-sm);
  transition:background .3s ease;
}
.key-feature-item:hover{
  background:var(--bg-card);
}
.key-feature-check{
  width:20px;height:20px;
  background:rgba(196,168,130,.15);
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.key-feature-check svg{
  width:12px;height:12px;
  stroke:var(--accent);fill:none;stroke-width:2.5;
}
.key-feature-text{
  font-size:.82rem;
  color:var(--text-secondary);
  line-height:1.3;
}

/* Section visibility toggle */
[data-section].section-hidden{
  display:none!important;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.85rem 2rem;
  font-size:.85rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  border-radius:var(--radius-xl);
  transition:all .35s var(--ease-out-expo);
  position:relative;overflow:hidden;
}
.btn::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.15), transparent);
  transform:translateX(-100%);
  transition:transform .6s ease;
}
.btn:hover::before{transform:translateX(100%)}

.btn-primary{
  background:var(--accent);color:#fff;
  box-shadow:0 4px 16px var(--accent-glow);
}
.btn-primary:hover{
  background:var(--accent-hover);
  transform:translateY(-2px);
  box-shadow:0 8px 24px var(--accent-glow);
}

.btn-outline{
  border:1.5px solid rgba(255,255,255,.4);
  color:#fff;
}
.btn-outline:hover{
  background:rgba(255,255,255,.1);
  border-color:#fff;
  transform:translateY(-2px);
}

.btn-dark{
  background:var(--bg-dark);color:var(--text-light);
}
.btn-dark:hover{
  background:var(--bg-dark-soft);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}

.btn-secondary{
  background:var(--bg-secondary);color:var(--text-primary);
  border:1px solid var(--border);
}
.btn-secondary:hover{
  background:var(--accent-light);
  border-color:var(--accent);
  transform:translateY(-2px);
}

.btn-sm{padding:.6rem 1.4rem;font-size:.75rem}
.btn-lg{padding:1rem 2.5rem;font-size:.9rem}
.btn-block{width:100%}
.btn-icon{width:44px;height:44px;padding:0;border-radius:var(--radius-full)}

/* ===================================================================
   FEATURES BAR
   =================================================================== */
.features-bar{
  background:var(--bg-card);
  border-bottom:1px solid var(--border-light);
  padding:1.2rem 0;
}
.features-list{
  display:flex;
  justify-content:center;
  gap:3rem;
  flex-wrap:wrap;
}
.feature-item{
  display:flex;align-items:center;gap:.7rem;
  font-size:.82rem;color:var(--text-secondary);
}
.feature-item svg{width:20px;height:20px;stroke:var(--accent);fill:none;stroke-width:1.8}
.feature-item strong{color:var(--text-primary);font-weight:600}

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.section{padding:4rem 0}
.section-header{
  text-align:center;
  margin-bottom:3rem;
}
.section-header .label{
  display:inline-block;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:.75rem;
}
.section-header h2{
  color:var(--text-primary);
  margin-bottom:.75rem;
}
.section-header .divider{
  width:60px;height:2px;
  background:var(--accent);
  margin:0 auto;
  border-radius:2px;
}

/* ===================================================================
   FILTER TABS
   =================================================================== */
.filter-tabs{
  display:flex;
  justify-content:center;
  gap:.6rem;
  margin-bottom:2.5rem;
  flex-wrap:wrap;
}
.filter-tab{
  padding:.6rem 1.6rem;
  font-size:.8rem;font-weight:500;
  letter-spacing:.04em;
  border:1.5px solid var(--border);
  border-radius:var(--radius-xl);
  color:var(--text-secondary);
  background:transparent;
  transition:all .3s ease;
}
.filter-tab:hover{
  border-color:var(--accent);
  color:var(--text-primary);
  background:rgba(196,168,130,.08);
}
.filter-tab.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 4px 12px var(--accent-glow);
}

/* ===================================================================
   PRODUCT GRID
   =================================================================== */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.8rem;
}

/* ===================================================================
   PRODUCT CARD
   =================================================================== */
.product-card{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  overflow:hidden;
  position:relative;
  transition:transform .45s var(--ease-out-expo), box-shadow .45s ease;
  cursor:pointer;
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}

/* Image wrapper */
.product-card-img{
  position:relative;
  overflow:hidden;
  aspect-ratio:3/4;
  background:var(--bg-secondary);
}
.product-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--ease-out-expo);
}
.product-card:hover .product-card-img img{transform:scale(1.06)}

/* Quick add overlay */
.product-card-overlay{
  position:absolute;bottom:0;left:0;right:0;
  padding:1rem;
  background:linear-gradient(transparent, rgba(26,26,26,.6));
  display:flex;justify-content:center;
  transform:translateY(100%);
  transition:transform .4s var(--ease-out-expo);
}
.product-card:hover .product-card-overlay{transform:translateY(0)}
.quick-add-btn{
  padding:.65rem 1.8rem;
  font-size:.75rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  background:rgba(255,255,255,.95);
  color:var(--text-primary);
  border-radius:var(--radius-xl);
  backdrop-filter:blur(8px);
  transition:all .3s ease;
}
.quick-add-btn:hover{background:#fff;transform:scale(1.05)}

/* Badge */
.product-badge{
  position:absolute;top:.75rem;left:.75rem;z-index:2;
  padding:.3rem .8rem;
  font-size:.65rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  border-radius:var(--radius-sm);
}
.badge-new{background:var(--accent);color:#fff}
.badge-sale{background:var(--error);color:#fff}

/* Wishlist */
.wishlist-btn{
  position:absolute;top:.75rem;right:.75rem;z-index:2;
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.85);
  border-radius:var(--radius-full);
  backdrop-filter:blur(8px);
  transition:all .3s ease;
}
.wishlist-btn:hover{background:#fff;transform:scale(1.1)}
.wishlist-btn svg{width:18px;height:18px;stroke:var(--text-secondary);fill:none;stroke-width:2}
.wishlist-btn.active svg{fill:var(--error);stroke:var(--error)}

/* Card body */
.product-card-body{padding:1rem 1rem 1.2rem}
.product-card-category{
  font-size:.7rem;
  font-weight:500;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:.35rem;
}
.product-card-name{
  font-family:var(--font-heading);
  font-size:1rem;font-weight:500;
  color:var(--text-primary);
  margin-bottom:.5rem;
  line-height:1.3;
}
.product-card-price{
  display:flex;align-items:center;gap:.6rem;
}
.price-current{font-size:1.05rem;font-weight:700;color:var(--text-primary)}
.price-old{font-size:.85rem;color:var(--text-muted);text-decoration:line-through}
.price-discount{
  font-size:.7rem;font-weight:600;
  color:var(--error);
  background:rgba(196,112,112,.1);
  padding:.15rem .5rem;
  border-radius:var(--radius-sm);
}

/* Color dots */
.product-card-colors{
  display:flex;gap:.4rem;
  margin-top:.6rem;
}
.color-dot-sm{
  display:inline-block;
  width:14px;height:14px;
  border-radius:var(--radius-full);
  border:1.5px solid var(--border);
  transition:transform .2s ease;
}
.color-dot-sm:hover{transform:scale(1.25)}

/* ===================================================================
   PRODUCT DETAIL PAGE
   =================================================================== */
.product-detail{
  padding:2rem 0 4rem;
}
.product-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:start;
}

/* Image gallery */
.gallery{position:relative}
.gallery-main{
  width:100%;
  aspect-ratio:3/4;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--bg-secondary);
  cursor:zoom-in;
}
.gallery-main img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.gallery-main:hover img{transform:scale(1.08)}
.gallery-thumbs{
  display:flex;gap:.75rem;
  margin-top:1rem;
}
.gallery-thumb{
  width:80px;height:100px;
  border-radius:var(--radius-sm);
  overflow:hidden;
  cursor:pointer;
  border:2px solid transparent;
  transition:border-color .3s ease, opacity .3s ease;
  opacity:.6;
}
.gallery-thumb:hover,.gallery-thumb.active{opacity:1;border-color:var(--accent)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}

/* Detail info */
.product-info{position:sticky;top:90px}
.product-info .breadcrumb{
  display:flex;align-items:center;gap:.5rem;
  font-size:.8rem;color:var(--text-muted);
  margin-bottom:1rem;
}
.breadcrumb a{color:var(--text-secondary);transition:color .3s}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb .sep{opacity:.4}
.product-info h1{
  font-size:clamp(1.5rem,3vw,2.2rem);
  margin-bottom:.5rem;
}
.product-info .product-category-label{
  font-size:.75rem;font-weight:600;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--accent);
  margin-bottom:1rem;
}
.product-info .product-price-lg{
  display:flex;align-items:baseline;gap:.8rem;
  margin-bottom:1.5rem;
}
.product-price-lg .price-current{font-size:1.6rem;font-weight:700}
.product-price-lg .price-old{font-size:1.1rem}
.product-info .product-desc{
  color:var(--text-secondary);
  font-size:.92rem;
  line-height:1.7;
  margin-bottom:2rem;
}

/* Size selector */
.option-group{margin-bottom:1.5rem}
.option-label{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:.75rem;
}
.option-label span{font-size:.85rem;font-weight:600;color:var(--text-primary)}
.option-label .size-guide{
  font-size:.8rem;color:var(--accent);cursor:pointer;
  text-decoration:underline;text-underline-offset:3px;
  transition:color .3s;
}
.option-label .size-guide:hover{color:var(--accent-hover)}

.size-options{display:flex;gap:.5rem;flex-wrap:wrap}
.size-btn{
  min-width:50px;height:44px;
  display:flex;align-items:center;justify-content:center;
  font-size:.82rem;font-weight:500;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  color:var(--text-secondary);
  transition:all .25s ease;
}
.size-btn:hover{border-color:var(--accent);color:var(--text-primary)}
.size-btn.active{
  background:var(--text-primary);
  color:var(--text-light);
  border-color:var(--text-primary);
}
.size-btn.out-of-stock{
  opacity:.35;
  cursor:not-allowed;
  text-decoration:line-through;
}

/* Color selector */
.color-options{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  align-items:center;
}
.color-btn{
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:transparent;
  padding:3px;
  cursor:pointer;
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 0 0 1.5px rgba(0,0,0,.15);
  outline:none;
}
.color-btn:hover{
  transform:scale(1.12);
  box-shadow:0 0 0 2px var(--accent);
}
.color-btn.active{
  box-shadow:0 0 0 2px var(--bg-primary), 0 0 0 4px var(--text-primary);
  transform:scale(1.05);
}
.color-btn .color-swatch{
  display:block;
  width:100%;
  height:100%;
  border-radius:50%;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.12);
  pointer-events:none;
}
.color-name{
  font-size:.85rem;
  font-weight:500;
  color:var(--text-secondary);
  margin-top:.6rem;
}

/* Quantity */
.quantity-controls{
  display:flex;align-items:center;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
  width:fit-content;
}
.qty-btn{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
  color:var(--text-secondary);
  transition:all .2s ease;
}
.qty-btn:hover{background:var(--bg-secondary);color:var(--text-primary)}
.qty-value{
  width:50px;text-align:center;
  font-size:.95rem;font-weight:600;
  border-left:1px solid var(--border);
  border-right:1px solid var(--border);
}

/* Add to cart button */
.add-to-cart-btn{
  margin-top:1.5rem;
  width:100%;
  padding:1rem 2rem;
  font-size:.9rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  background:var(--bg-dark);color:#fff;
  border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  transition:all .35s var(--ease-out-expo);
  position:relative;overflow:hidden;
}
.add-to-cart-btn:hover{
  background:var(--bg-dark-soft);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}
.add-to-cart-btn.added{
  background:var(--success);
}
.add-to-cart-btn svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2}

/* Product accordions */
.product-accordions{margin-top:2rem;border-top:1px solid var(--border)}
.accordion-item{border-bottom:1px solid var(--border)}
.accordion-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 0;
  font-size:.9rem;font-weight:500;
  color:var(--text-primary);
  cursor:pointer;
  transition:color .3s;
}
.accordion-header:hover{color:var(--accent)}
.accordion-header .icon{
  width:24px;height:24px;
  transition:transform .3s ease;
}
.accordion-item.active .accordion-header .icon{transform:rotate(180deg)}
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease-out-expo);
}
.accordion-body-inner{
  padding:0 0 1.2rem;
  font-size:.88rem;
  color:var(--text-secondary);
  line-height:1.8;
}

/* Size chart table */
.size-chart-table{
  width:100%;
  border-collapse:collapse;
  margin:.5rem 0;
}
.size-chart-table th,.size-chart-table td{
  padding:.6rem .8rem;
  text-align:center;
  font-size:.82rem;
  border:1px solid var(--border);
}
.size-chart-table th{
  background:var(--bg-secondary);
  font-weight:600;
  color:var(--text-primary);
}
.size-chart-table td{color:var(--text-secondary)}

/* ===================================================================
   CART DRAWER (Slide-in Sidebar)
   =================================================================== */
.cart-drawer-overlay{
  position:fixed;inset:0;
  background:rgba(26,26,26,.45);
  z-index:1200;
  opacity:0;pointer-events:none;
  transition:opacity .4s ease;
}
.cart-drawer-overlay.active{opacity:1;pointer-events:all}

.cart-drawer{
  position:fixed;top:0;right:0;
  width:420px;max-width:90vw;height:100vh;
  background:var(--bg-primary);
  z-index:1201;
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform .45s var(--ease-out-expo);
  box-shadow:-8px 0 32px rgba(0,0,0,.1);
}
.cart-drawer.active{transform:translateX(0)}

.cart-drawer-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.5rem;
  border-bottom:1px solid var(--border);
}
.cart-drawer-header h3{font-size:1.1rem}
.cart-drawer-close{
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius-full);
  font-size:1.3rem;
  transition:background .3s;
}
.cart-drawer-close:hover{background:var(--bg-secondary)}

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

.cart-drawer-footer{
  padding:1.5rem;
  border-top:1px solid var(--border);
  background:var(--bg-card);
}
.cart-summary-row{
  display:flex;justify-content:space-between;
  margin-bottom:.6rem;
  font-size:.9rem;
  color:var(--text-secondary);
}
.cart-summary-row.total{
  font-size:1.1rem;
  font-weight:700;
  color:var(--text-primary);
  padding-top:.6rem;
  border-top:1px solid var(--border);
  margin-top:.6rem;
}

/* Cart item */
.cart-item{
  display:flex;gap:1rem;
  padding:1rem 0;
  border-bottom:1px solid var(--border-light);
  animation:fadeInUp .4s var(--ease-out-expo);
}
.cart-item-img{
  width:80px;height:100px;
  border-radius:var(--radius-sm);
  overflow:hidden;
  flex-shrink:0;
  background:var(--bg-secondary);
}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-info{flex:1;display:flex;flex-direction:column;justify-content:space-between}
.cart-item-name{font-size:.88rem;font-weight:500}
.cart-item-variant{font-size:.78rem;color:var(--text-muted)}
.cart-item-bottom{display:flex;align-items:center;justify-content:space-between}
.cart-item-price{font-size:.9rem;font-weight:600}
.cart-item-qty{
  display:flex;align-items:center;gap:.3rem;
}
.cart-item-qty button{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  font-size:.85rem;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  color:var(--text-secondary);
  transition:all .2s;
}
.cart-item-qty button:hover{background:var(--bg-secondary);color:var(--text-primary)}
.cart-item-qty span{font-size:.85rem;font-weight:600;width:28px;text-align:center}
.cart-item-remove{
  cursor:pointer;
  font-size:.75rem;
  color:var(--text-muted);
  text-decoration:underline;
  transition:color .3s;
}
.cart-item-remove:hover{color:var(--error)}

/* Empty cart */
.empty-cart{
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:3rem 1rem;
  text-align:center;
}
.empty-cart svg{width:80px;height:80px;stroke:var(--border);fill:none;stroke-width:1;margin-bottom:1.5rem}
.empty-cart h3{font-size:1.2rem;margin-bottom:.5rem;color:var(--text-primary)}
.empty-cart p{font-size:.9rem;color:var(--text-muted);margin-bottom:1.5rem}

/* ===================================================================
   CART PAGE
   =================================================================== */
.cart-page{padding:2rem 0 4rem}
.cart-page-header{
  text-align:center;
  margin-bottom:2.5rem;
}
.cart-page-header h1{margin-bottom:.5rem}
.cart-page-header p{color:var(--text-muted);font-size:.9rem}

.cart-page-grid{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:2rem;
  align-items:start;
}

.cart-items-list{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  padding:1.5rem;
  box-shadow:var(--shadow-sm);
}

.cart-summary-card{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  padding:1.5rem;
  box-shadow:var(--shadow-sm);
  position:sticky;top:90px;
}
.cart-summary-card h3{
  font-size:1.1rem;
  margin-bottom:1.2rem;
  padding-bottom:.8rem;
  border-bottom:1px solid var(--border);
}

/* ===================================================================
   CHECKOUT PAGE
   =================================================================== */
.checkout-page{padding:2rem 0 4rem}
.checkout-grid{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:2.5rem;
  align-items:start;
}
.checkout-form-card{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  padding:2rem;
  box-shadow:var(--shadow-sm);
}
.checkout-form-card h2{
  font-size:1.3rem;
  margin-bottom:1.5rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--border);
}

.form-group{margin-bottom:1.2rem}
.form-group label{
  display:block;
  font-size:.82rem;font-weight:500;
  color:var(--text-primary);
  margin-bottom:.4rem;
}
.form-group input,.form-group select,.form-group textarea{
  width:100%;
  padding:.75rem 1rem;
  font-size:.9rem;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--bg-primary);
  color:var(--text-primary);
  outline:none;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-glow);
}
.form-group input::placeholder,.form-group textarea::placeholder{
  color:var(--text-muted);
}
.form-group textarea{resize:vertical;min-height:80px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* Payment methods */
.payment-methods{margin-top:1.5rem}
.payment-methods h3{font-size:1rem;margin-bottom:1rem}
.payment-option{
  display:flex;align-items:center;gap:.75rem;
  padding:1rem;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  margin-bottom:.6rem;
  cursor:pointer;
  transition:all .3s ease;
}
.payment-option:hover{border-color:var(--accent-light);background:rgba(196,168,130,.04)}
.payment-option.active{
  border-color:var(--accent);
  background:rgba(196,168,130,.06);
}
.payment-option input[type="radio"]{
  width:18px;height:18px;
  accent-color:var(--accent);
}
.payment-option .payment-label{
  font-size:.88rem;font-weight:500;color:var(--text-primary);
}
.payment-option .payment-desc{
  font-size:.78rem;color:var(--text-muted);
}

/* ── Payment Details Panel ── */
.payment-details-panel{
  margin-top:.5rem;
  animation:fadeInUp .4s var(--ease-out-expo);
}
.payment-panel-enter{
  animation:fadeInUp .4s var(--ease-out-expo);
}

/* ── Payment Info Card ── */
.payment-info-card{
  background:linear-gradient(135deg, rgba(196,168,130,.06), rgba(196,168,130,.02));
  border:1.5px solid var(--accent-light);
  border-radius:var(--radius-md);
  padding:1.5rem;
  position:relative;
  overflow:hidden;
}
.payment-info-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius:var(--radius-md) var(--radius-md) 0 0;
}
.payment-info-icon{
  font-size:2rem;
  margin-bottom:.75rem;
}
.payment-info-card h4{
  font-family:var(--font-body);
  font-size:1rem;
  font-weight:600;
  color:var(--text-primary);
  margin-bottom:.6rem;
}
.payment-info-card p{
  font-size:.85rem;
  color:var(--text-secondary);
  line-height:1.65;
  margin-bottom:.75rem;
}
.payment-info-card ul{
  list-style:none;
  padding:0;
  margin:.75rem 0;
}
.payment-info-card ul li{
  font-size:.84rem;
  color:var(--text-secondary);
  padding:.35rem 0;
  display:flex;
  align-items:center;
  gap:.5rem;
}

/* ── Payment Account Box ── */
.payment-account-box{
  background:var(--bg-card);
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  padding:1rem;
  margin:.75rem 0;
}
.payment-account-row{
  display:flex;
  align-items:center;
  gap:.75rem;
  flex-wrap:wrap;
}
.payment-account-label{
  font-size:.78rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
}
.payment-account-value{
  font-size:1.05rem;
  font-weight:700;
  color:var(--text-primary);
  font-family:'Courier New', monospace;
  letter-spacing:.05em;
  flex:1;
}

/* ── Copy Button ── */
.copy-btn{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.4rem .85rem;
  font-size:.78rem;
  font-weight:500;
  font-family:var(--font-body);
  color:var(--accent-hover);
  background:rgba(196,168,130,.1);
  border:1px solid var(--accent-light);
  border-radius:var(--radius-sm);
  cursor:pointer;
  transition:all .3s ease;
  white-space:nowrap;
}
.copy-btn:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  transform:translateY(-1px);
}
.copy-btn:hover svg{stroke:#fff}
.copy-btn svg{stroke:var(--accent-hover);transition:stroke .3s}
.copy-btn.copied{
  background:var(--success);
  color:#fff;
  border-color:var(--success);
}
.copy-btn.copied svg{stroke:#fff}

/* ── Payment Note ── */
.payment-note{
  font-size:.8rem!important;
  color:var(--accent-hover)!important;
  font-weight:500;
  margin-top:.5rem;
  margin-bottom:0!important;
  padding:.6rem .8rem;
  background:rgba(196,168,130,.06);
  border-radius:var(--radius-sm);
  border-left:3px solid var(--accent);
}

/* Order summary card */
.order-summary-card{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  padding:1.5rem;
  box-shadow:var(--shadow-sm);
  position:sticky;top:90px;
}
.order-summary-card h3{
  font-size:1.1rem;
  margin-bottom:1.2rem;
  padding-bottom:.8rem;
  border-bottom:1px solid var(--border);
}
.order-item{
  display:flex;align-items:center;gap:.75rem;
  padding:.75rem 0;
  border-bottom:1px solid var(--border-light);
}
.order-item:last-child{border-bottom:none}
.order-item-img{
  width:55px;height:68px;
  border-radius:var(--radius-sm);
  overflow:hidden;background:var(--bg-secondary);
  flex-shrink:0;
}
.order-item-img img{width:100%;height:100%;object-fit:cover}
.order-item-info{flex:1}
.order-item-name{font-size:.82rem;font-weight:500}
.order-item-variant{font-size:.72rem;color:var(--text-muted)}
.order-item-price{font-size:.85rem;font-weight:600;text-align:right}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer{
  background:var(--bg-dark);
  color:var(--text-light);
  padding:4rem 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:2.5rem;
  padding-bottom:3rem;
}
.footer-brand .logo-monogram{color:var(--accent);font-size:2rem}
.footer-brand .logo-text{color:var(--text-light);opacity:.6;font-size:.6rem}
.footer-brand p{
  color:rgba(250,245,240,.5);
  font-size:.85rem;
  margin-top:1rem;
  line-height:1.7;
  max-width:280px;
}
.footer h4{
  font-family:var(--font-body);
  font-size:.8rem;font-weight:600;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--accent);
  margin-bottom:1.2rem;
}
.footer-links a{
  display:block;
  padding:.35rem 0;
  font-size:.88rem;
  color:rgba(250,245,240,.55);
  transition:color .3s, transform .3s;
}
.footer-links a:hover{color:var(--accent);transform:translateX(4px)}

.footer-contact-item{
  display:flex;align-items:center;gap:.7rem;
  margin-bottom:.8rem;
  font-size:.85rem;
  color:rgba(250,245,240,.55);
}
.footer-contact-item svg{width:18px;height:18px;stroke:var(--accent);fill:none;stroke-width:2;flex-shrink:0}
.footer-contact-item a{color:rgba(250,245,240,.55);transition:color .3s}
.footer-contact-item a:hover{color:var(--accent)}

.footer-social{
  display:flex;gap:.8rem;
  margin-top:1rem;
}
.footer-social a{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(250,245,240,.15);
  border-radius:var(--radius-full);
  transition:all .3s ease;
}
.footer-social a:hover{
  background:var(--accent);
  border-color:var(--accent);
  transform:translateY(-3px);
}
.footer-social a svg{width:18px;height:18px;fill:rgba(250,245,240,.7)}
.footer-social a:hover svg{fill:#fff}

.footer-bottom{
  border-top:1px solid rgba(250,245,240,.08);
  padding:1.5rem 0;
  text-align:center;
  font-size:.8rem;
  color:rgba(250,245,240,.35);
}

/* ===================================================================
   WHATSAPP FLOAT BUTTON
   =================================================================== */
.whatsapp-float{
  position:fixed;
  bottom:1.5rem;right:1.5rem;
  z-index:900;
  width:56px;height:56px;
  background:var(--whatsapp);
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,.35);
  transition:all .3s ease;
  animation:pulse-green 2.5s infinite;
}
.whatsapp-float:hover{
  transform:scale(1.1) translateY(-3px);
  box-shadow:0 8px 24px rgba(37,211,102,.45);
}
.whatsapp-float svg{width:28px;height:28px;fill:#fff}

/* Tooltip */
.whatsapp-float .tooltip{
  position:absolute;right:68px;
  background:var(--bg-dark);
  color:var(--text-light);
  padding:.5rem 1rem;
  border-radius:var(--radius-sm);
  font-size:.78rem;
  white-space:nowrap;
  opacity:0;
  transform:translateX(10px);
  transition:all .3s ease;
  pointer-events:none;
}
.whatsapp-float:hover .tooltip{opacity:1;transform:translateX(0)}

/* ===================================================================
   TOAST NOTIFICATIONS
   =================================================================== */
.toast-container{
  position:fixed;
  top:80px;right:1.5rem;
  z-index:1500;
  display:flex;flex-direction:column;
  gap:.5rem;
}
.toast{
  display:flex;align-items:center;gap:.8rem;
  padding:1rem 1.5rem;
  background:var(--bg-card);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  border-left:3px solid var(--success);
  animation:slideInRight .4s var(--ease-out-expo);
  min-width:280px;
}
.toast.toast-exit{animation:slideOutRight .3s ease forwards}
.toast-icon{
  width:24px;height:24px;
  background:var(--success);
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.toast-icon svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:3}
.toast-text{font-size:.85rem;font-weight:500;color:var(--text-primary)}
.toast-close{
  margin-left:auto;
  color:var(--text-muted);
  font-size:1.1rem;
  cursor:pointer;
  transition:color .3s;
}
.toast-close:hover{color:var(--text-primary)}

/* ===================================================================
   MODAL
   =================================================================== */
.modal-overlay{
  position:fixed;inset:0;
  background:rgba(26,26,26,.5);
  backdrop-filter:blur(4px);
  z-index:1300;
  display:flex;align-items:center;justify-content:center;
  padding:2rem;
  opacity:0;pointer-events:none;
  transition:opacity .3s ease;
}
.modal-overlay.active{opacity:1;pointer-events:all}
.modal{
  background:var(--bg-card);
  border-radius:var(--radius-lg);
  padding:2rem;
  max-width:550px;width:100%;
  max-height:80vh;
  overflow-y:auto;
  transform:scale(.9) translateY(20px);
  transition:transform .4s var(--ease-out-expo);
}
.modal-overlay.active .modal{transform:scale(1) translateY(0)}
.modal-header{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:1.5rem;
}
.modal-header h3{font-size:1.2rem}
.modal-close{
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--radius-full);
  font-size:1.2rem;
  transition:background .3s;cursor:pointer;
}
.modal-close:hover{background:var(--bg-secondary)}

/* ===================================================================
   SCROLL-TO-TOP
   =================================================================== */
.scroll-top-btn{
  position:fixed;
  bottom:5.5rem;right:1.5rem;
  z-index:899;
  width:44px;height:44px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-full);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0;pointer-events:none;
  transform:translateY(10px);
  transition:all .35s ease;
}
.scroll-top-btn.show{opacity:1;pointer-events:all;transform:translateY(0)}
.scroll-top-btn:hover{
  background:var(--accent);
  border-color:var(--accent);
  transform:translateY(-3px);
}
.scroll-top-btn:hover svg{stroke:#fff}
.scroll-top-btn svg{width:20px;height:20px;stroke:var(--text-secondary);fill:none;stroke-width:2}

/* ===================================================================
   LOADING SKELETON
   =================================================================== */
.skeleton{
  background:linear-gradient(90deg, var(--bg-secondary) 25%, var(--border-light) 50%, var(--bg-secondary) 75%);
  background-size:200% 100%;
  animation:shimmer 1.5s ease-in-out infinite;
  border-radius:var(--radius-sm);
}

/* ===================================================================
   ANIMATIONS & KEYFRAMES
   =================================================================== */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(25px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
@keyframes slideInRight{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}
@keyframes slideOutRight{
  from{opacity:1;transform:translateX(0)}
  to{opacity:0;transform:translateX(40px)}
}
@keyframes scaleIn{
  from{opacity:0;transform:scale(.8)}
  to{opacity:1;transform:scale(1)}
}
@keyframes spinSlow{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes shimmer{
  0%{background-position:-200% 0}
  100%{background-position:200% 0}
}
@keyframes pulse-green{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.4)}
  70%{box-shadow:0 0 0 14px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
@keyframes cartBounce{
  0%{transform:scale(1)}
  25%{transform:scale(1.25)}
  50%{transform:scale(.95)}
  100%{transform:scale(1)}
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* Stagger children */
.stagger-children > *{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .5s var(--ease-out-expo), transform .5s var(--ease-out-expo);
}
.stagger-children.visible > *{opacity:1;transform:translateY(0)}
.stagger-children.visible > *:nth-child(1){transition-delay:.05s}
.stagger-children.visible > *:nth-child(2){transition-delay:.1s}
.stagger-children.visible > *:nth-child(3){transition-delay:.15s}
.stagger-children.visible > *:nth-child(4){transition-delay:.2s}
.stagger-children.visible > *:nth-child(5){transition-delay:.25s}
.stagger-children.visible > *:nth-child(6){transition-delay:.3s}
.stagger-children.visible > *:nth-child(7){transition-delay:.35s}
.stagger-children.visible > *:nth-child(8){transition-delay:.4s}

/* Page transition */
.page-enter{animation:fadeInUp .6s var(--ease-out-expo)}

/* ===================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   =================================================================== */
@media(max-width:1024px){
  .product-grid{grid-template-columns:repeat(3,1fr);gap:1.2rem}
  .product-detail-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .checkout-grid{grid-template-columns:1fr;gap:2rem}
  .cart-page-grid{grid-template-columns:1fr;gap:2rem}
  .order-summary-card,.cart-summary-card{position:static}
  .brand-story-grid{gap:2.5rem}
  .categories-grid{grid-template-columns:repeat(3,1fr);gap:1rem}
}

/* ===================================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================================== */
@media(max-width:768px){
  .container{padding:0 1rem}
  .section{padding:2.5rem 0}

  /* Navbar */
  .nav-links{display:none}
  .hamburger{display:flex}

  /* Hero Video */
  .hero-video{height:100vh;min-height:500px}
  .hero-brand-letter{font-size:clamp(3rem,12vw,6rem)}
  .hero-corner{width:40px;height:40px}
  .hero-corner-tl{top:1rem;left:1rem}
  .hero-corner-br{bottom:4rem;right:1rem}

  /* Product grid */
  .product-grid{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .product-card-body{padding:.7rem .7rem .9rem}
  .product-card-name{font-size:.88rem}
  .price-current{font-size:.92rem}

  /* Product detail */
  .product-detail-grid{grid-template-columns:1fr;gap:1.5rem}
  .product-info{position:static}
  .gallery-thumbs{overflow-x:auto;flex-wrap:nowrap;gap:.5rem;padding-bottom:.5rem}
  .gallery-thumb{width:65px;height:80px;flex-shrink:0}

  /* Key Features */
  .key-features-grid{grid-template-columns:1fr}

  /* Filter tabs */
  .filter-tabs{
    justify-content:flex-start;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:.5rem;
    gap:.4rem;
    flex-wrap:nowrap;
  }
  .filter-tab{white-space:nowrap;flex-shrink:0}

  /* Features bar */
  .features-list{
    overflow-x:auto;
    justify-content:flex-start;
    gap:2rem;
    padding:.5rem 0;
    flex-wrap:nowrap;
  }
  .feature-item{white-space:nowrap;flex-shrink:0}

  /* Categories */
  .categories-grid{grid-template-columns:repeat(2,1fr);gap:.8rem}
  .category-card{aspect-ratio:3/4}
  .category-card-name{font-size:1rem}

  /* Brand Story */
  .brand-story-grid{grid-template-columns:1fr;gap:2rem}
  .brand-story-image{aspect-ratio:16/10}
  .brand-story-stats{gap:1.5rem}

  /* Best Sellers */
  .bestseller-card{flex:0 0 220px}

  /* Footer */
  .footer-grid{grid-template-columns:1fr;gap:2rem;text-align:center}
  .footer-brand p{margin:1rem auto 0}
  .footer-social{justify-content:center}
  .footer-links a:hover{transform:none}

  /* Checkout */
  .form-row{grid-template-columns:1fr}

  /* Cart drawer */
  .cart-drawer{width:100%;max-width:100vw}

  /* Toast */
  .toast-container{left:1rem;right:1rem}
  .toast{min-width:auto}
}

/* ===================================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =================================================================== */
@media(max-width:480px){
  .product-grid{gap:.6rem}
  .product-card-body{padding:.5rem .5rem .7rem}
  .product-card-name{font-size:.82rem}
  .price-current{font-size:.85rem}
  .price-old{font-size:.75rem}
  .btn{padding:.7rem 1.4rem;font-size:.78rem}
  .categories-grid{grid-template-columns:1fr 1fr;gap:.6rem}
  .category-card-name{font-size:.9rem}
  .brand-story-stats{flex-direction:column;gap:1rem}
  .bestseller-card{flex:0 0 200px}
}

/* ===================================================================
   PRINT
   =================================================================== */
@media print{
  .navbar,.whatsapp-float,.scroll-top-btn,.cart-drawer,.cart-drawer-overlay,.toast-container{display:none!important}
  body{background:#fff;color:#000}
}
