/* =========================================================
   MAISON LUMÉ — Luxury Candle Landing Page
   Table of Contents
   1.  Fonts & Variables
   2.  Reset & Base
   3.  Utilities
   4.  Buttons
   5.  Reveal / Scroll Animations
   6.  Announcement Bar
   7.  Navbar
   8.  Hero
   9.  Marquee
   10. About
   11. Best Sellers
   12. Featured Collection
   13. Why Choose Us
   14. Testimonials
   15. Instagram Gallery
   16. Newsletter
   17. Footer
   18. Back To Top
   19. Responsive
   ========================================================= */

/* =========================================================
   1. FONTS & VARIABLES
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  /* Colors */
  --bg-main:#FFFDFB;
  --bg-secondary:#FFF6F8;
  --soft-pink:#FADADD;
  --pastel-pink:#F7D6E6;
  --blush:#FBE7E7;
  --cream:#F8F4EF;
  --warm-beige:#EED9C4;
  --light-rose:#F5E1DA;
  --text:#2F2A28;
  --text-secondary:#6F6661;
  --gold:#B58B58;
  --btn-bg:#2B2623;
  --btn-hover:#B58B58;
  --border:rgba(0,0,0,.08);
  --white:#ffffff;

  /* Fonts */
  --font-heading:'Cormorant Garamond', serif;
  --font-body:'Poppins', sans-serif;

  /* Easing */
  --ease:cubic-bezier(.4,0,.2,1);
  --ease-soft:cubic-bezier(.16,1,.3,1);

  /* Layout */
  --container:1360px;
  --nav-h:92px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

/* The `hidden` attribute must always win over any author `display` rule
   below (e.g. .checkout-grid{display:grid}, .checkout-empty{display:flex}),
   otherwise elements toggled via `el.hidden = true/false` in JS stay visible. */
[hidden]{ display:none !important; }

html{ scroll-behavior:smooth; }

body{
  background:var(--bg-main);
  color:var(--text);
  font-family:var(--font-body);
  font-weight:300;
  font-size:17px;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

a{ color:inherit; text-decoration:none; }

ul{ list-style:none; }

button{ font-family:inherit; cursor:pointer; border:none; background:none; }

input{ font-family:inherit; }

h1,h2,h3,h4{
  font-family:var(--font-heading);
  font-weight:500;
  color:var(--text);
  line-height:1.15;
}

::selection{ background:var(--gold); color:#fff; }

/* Custom scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--cream); }
::-webkit-scrollbar-thumb{ background:var(--warm-beige); border-radius:10px; }
::-webkit-scrollbar-thumb:hover{ background:var(--gold); }

/* =========================================================
   3. UTILITIES
   ========================================================= */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 48px;
}

.section{ position:relative; padding:150px 0; }
.section--tight{ padding:110px 0; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:22px;
}
.eyebrow::before{
  content:'';
  width:34px;
  height:1px;
  background:var(--gold);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:70px;
}

.section-title{
  font-size:52px;
  font-weight:400;
  letter-spacing:.01em;
}
.section-title em{
  font-style:italic;
  font-weight:400;
  color:var(--gold);
}

.section-sub{
  max-width:480px;
  color:var(--text-secondary);
  font-size:16px;
  margin-top:18px;
}

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

/* =========================================================
   4. BUTTONS
   ========================================================= */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:19px 38px;
  background:var(--btn-bg);
  color:#fff;
  font-size:15px;
  font-weight:500;
  letter-spacing:.05em;
  border-radius:100px;
  overflow:hidden;
  transition:transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background .5s var(--ease);
  box-shadow:0 8px 24px -12px rgba(43,38,35,.35);
  white-space:nowrap;
}
.btn span{ position:relative; z-index:2; }
.btn svg{
  position:relative;
  z-index:2;
  width:16px; height:16px;
  transition:transform .5s var(--ease-soft);
}
.btn::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .55s var(--ease-soft);
  z-index:1;
}
.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px -14px rgba(181,139,88,.55);
}
.btn:hover::before{ transform:scaleX(1); }
.btn:hover svg{ transform:translateX(6px); }

.btn--outline{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.btn--outline::before{ background:var(--btn-bg); }
.btn--outline:hover{ color:#fff; box-shadow:0 14px 30px -16px rgba(43,38,35,.4); }

.btn--light{
  background:#fff;
  color:var(--text);
  box-shadow:0 8px 24px -14px rgba(0,0,0,.2);
}
.btn--light::before{ background:var(--gold); }
.btn--light:hover{ color:#fff; }

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:500;
  letter-spacing:.03em;
  padding-bottom:4px;
  border-bottom:1px solid var(--text);
  transition:gap .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.link-arrow svg{ width:15px; height:15px; transition:transform .4s var(--ease); }
.link-arrow:hover{ gap:16px; color:var(--gold); border-color:var(--gold); }
.link-arrow:hover svg{ transform:translateX(3px); }

/* =========================================================
   5. REVEAL / SCROLL ANIMATIONS
   ========================================================= */
[data-reveal]{
  opacity:0;
  transition:opacity 1s var(--ease-soft), transform 1s var(--ease-soft), filter 1s var(--ease-soft);
  will-change:transform, opacity;
}
[data-reveal="up"]{ transform:translateY(60px); filter:blur(6px); }
[data-reveal="left"]{ transform:translateX(-70px); filter:blur(6px); }
[data-reveal="right"]{ transform:translateX(70px); filter:blur(6px); }
[data-reveal="scale"]{ transform:scale(.88); filter:blur(6px); }
[data-reveal="clip"]{ clip-path:inset(0 0 100% 0); filter:none; transform:none; }

[data-reveal].is-visible{
  opacity:1;
  transform:none;
  filter:blur(0);
  clip-path:inset(0 0 0% 0);
}

/* stagger children */
[data-reveal-group] > *{
  opacity:0;
  transform:translateY(50px);
  transition:opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal-group].is-visible > *{ opacity:1; transform:none; }
[data-reveal-group].is-visible > *:nth-child(1){ transition-delay:.05s; }
[data-reveal-group].is-visible > *:nth-child(2){ transition-delay:.18s; }
[data-reveal-group].is-visible > *:nth-child(3){ transition-delay:.31s; }
[data-reveal-group].is-visible > *:nth-child(4){ transition-delay:.44s; }
[data-reveal-group].is-visible > *:nth-child(5){ transition-delay:.57s; }
[data-reveal-group].is-visible > *:nth-child(6){ transition-delay:.7s; }
[data-reveal-group].is-visible > *:nth-child(7){ transition-delay:.83s; }
[data-reveal-group].is-visible > *:nth-child(8){ transition-delay:.96s; }

/* =========================================================
   6. ANNOUNCEMENT BAR
   ========================================================= */
.announce{
  background:var(--blush);
  color:var(--text);
  text-align:center;
  padding:12px 20px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:500;
  position:relative;
  z-index:200;
}
.announce b{ color:var(--gold); font-weight:600; }

/* =========================================================
   7. NAVBAR
   ========================================================= */
.navbar{
  position:sticky;
  top:0;
  z-index:150;
  background:var(--bg-main);
  border-bottom:1px solid transparent;
  transition:background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), padding .4s var(--ease);
}
.navbar.is-glass{
  background:rgba(255,253,251,.72);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border-color:var(--border);
  box-shadow:0 10px 40px -20px rgba(43,38,35,.18);
}
.nav-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  height:var(--nav-h);
  transition:height .4s var(--ease);
}
.navbar.is-glass .nav-inner{ height:78px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:38px;
}
.nav-links--left{ justify-content:flex-start; }
.nav-links--right{ justify-content:flex-end; }

.nav-link{
  position:relative;
  font-size:14px;
  font-weight:500;
  letter-spacing:.04em;
  padding:6px 0;
  color:var(--text);
}
.nav-link::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:100%; height:1px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .45s var(--ease-soft);
}
.nav-link:hover::after,
.nav-link.active::after{ transform:scaleX(1); transform-origin:left; }
.nav-link.active{ color:var(--gold); }

.logo{
  font-family:var(--font-heading);
  font-size:30px;
  font-weight:600;
  letter-spacing:.02em;
  text-align:center;
  white-space:nowrap;
}
.logo em{ font-style:italic; color:var(--gold); font-weight:500; }

.nav-icons{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav-icon-btn{
  position:relative;
  width:22px; height:22px;
  color:var(--text);
  transition:color .35s var(--ease), transform .35s var(--ease-soft);
}
.nav-icon-btn svg{ width:100%; height:100%; }
.nav-icon-btn:hover{ color:var(--gold); transform:translateY(-2px) rotate(-4deg); }
.nav-icon-btn .count{
  position:absolute;
  top:-8px; right:-9px;
  width:16px; height:16px;
  background:var(--gold);
  color:#fff;
  font-size:9px;
  font-weight:600;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-body);
  opacity:0;
  transform:scale(.4);
  transition:opacity .3s var(--ease), transform .3s var(--ease-soft);
}
.nav-icon-btn .count.is-visible{ opacity:1; transform:scale(1); }

.nav-toggle{
  display:none;
  width:26px; height:18px;
  position:relative;
  justify-self:end;
}
.nav-toggle span{
  position:absolute;
  left:0; right:0;
  height:1.5px;
  background:var(--text);
  transition:transform .4s var(--ease), opacity .4s var(--ease), top .4s var(--ease);
}
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:8px; }
.nav-toggle span:nth-child(3){ top:16px; }
.nav-toggle.active span:nth-child(1){ top:8px; transform:rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ top:8px; transform:rotate(-45deg); }

/* =========================================================
   8. HERO
   ========================================================= */
.hero{
  position:relative;
  padding:96px 0 130px;
  overflow:hidden;
  background:
    radial-gradient(ellipse 900px 500px at 88% 8%, var(--soft-pink) 0%, transparent 65%),
    radial-gradient(ellipse 700px 500px at 8% 92%, var(--light-rose) 0%, transparent 60%);
}
.hero-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
  pointer-events:none;
  z-index:0;
}
.hero-shape--1{
  width:420px; height:420px;
  top:-120px; right:8%;
  background:radial-gradient(circle at 35% 35%, var(--pastel-pink), transparent 70%);
  opacity:.7;
  animation:float-slow 13s ease-in-out infinite;
}
.hero-shape--2{
  width:260px; height:260px;
  bottom:-40px; left:2%;
  background:radial-gradient(circle at 40% 40%, var(--warm-beige), transparent 70%);
  opacity:.6;
  animation:float-slow 16s ease-in-out infinite reverse;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}

.hero-content{ max-width:560px; }

.hero-title{
  font-size:76px;
  font-weight:400;
  letter-spacing:-.01em;
  margin-bottom:28px;
}
.hero-title em{
  font-style:italic;
  font-weight:400;
  color:var(--gold);
  display:block;
}

.hero-text{
  color:var(--text-secondary);
  font-size:17px;
  max-width:420px;
  margin-bottom:42px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:34px;
}

.hero-scent{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  letter-spacing:.05em;
  color:var(--text-secondary);
}
.hero-scent .dots{ display:flex; gap:6px; }
.hero-scent .dot{
  width:16px; height:16px;
  border-radius:50%;
  border:2px solid #fff;
  box-shadow:0 0 0 1px var(--border);
}
.dot--1{ background:#EED9C4; }
.dot--2{ background:#FADADD; }
.dot--3{ background:#D9C9B8; }

.hero-media{
  position:relative;
  height:640px;
}
.hero-media-main{
  position:absolute;
  top:0; right:0;
  width:82%;
  height:100%;
  border-radius:280px 280px 40px 40px / 340px 340px 40px 40px;
  overflow:hidden;
  box-shadow:0 60px 80px -40px rgba(43,38,35,.35);
}
.hero-media-main img,
.hero-media-main video{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.4s var(--ease-soft);
}
.hero-media:hover .hero-media-main img,
.hero-media:hover .hero-media-main video{ transform:scale(1.06); }

.hero-media-float{
  position:absolute;
  left:-1%;
  bottom:2%;
  width:240px;
  height:240px;
  border-radius:50% 50% 42% 42% / 55% 55% 45% 45%;
  overflow:hidden;
  border:8px solid var(--bg-main);
  box-shadow:0 40px 60px -24px rgba(43,38,35,.4);
  animation:float-slow 7s ease-in-out infinite;
}
.hero-media-float img{ width:100%; height:100%; object-fit:cover; }

.hero-badge{
  position:absolute;
  top:2%;
  right:5%;
  width:120px; height:120px;
  border-radius:50%;
  background:var(--btn-bg);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-align:center;
  z-index:30;
  box-shadow:0 20px 34px -16px rgba(43,38,35,.5);
  animation:float-slow 9s ease-in-out infinite;
}
.hero-badge svg{ width:20px; height:20px; color:var(--gold); }
.hero-badge span{
  font-family:var(--font-heading);
  font-style:italic;
  font-size:13px;
  line-height:1.25;
  letter-spacing:.02em;
  max-width:82px;
}

@keyframes float-slow{
  0%,100%{ transform:translateY(0) translateX(0); }
  50%{ transform:translateY(-18px) translateX(6px); }
}
@keyframes spin-slow{
  from{ transform:rotate(0); }
  to{ transform:rotate(360deg); }
}

/* =========================================================
   9. MARQUEE
   ========================================================= */
.marquee{
  background:var(--btn-bg);
  overflow:hidden;
  padding:26px 0;
  position:relative;
}
.marquee-track{
  display:flex;
  width:max-content;
  animation:marquee 32s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{
  display:flex;
  align-items:center;
  gap:28px;
  padding:0 28px;
  font-family:var(--font-heading);
  font-size:34px;
  font-style:italic;
  font-weight:400;
  color:var(--cream);
  white-space:nowrap;
}
.marquee-item svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; }

@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* =========================================================
   10. ABOUT
   ========================================================= */
.about{
  background:var(--bg-secondary);
  overflow:hidden;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-media{
  position:relative;
  height:600px;
}
.about-media-main{
  position:absolute;
  inset:0;
  border-radius:30% 70% 65% 35% / 45% 40% 60% 55%;
  overflow:hidden;
  box-shadow:0 50px 70px -30px rgba(43,38,35,.28);
}
.about-media-main img{ width:100%; height:100%; object-fit:cover; transition:transform 1.6s var(--ease-soft); }
.about-media:hover .about-media-main img{ transform:scale(1.08) rotate(1deg); }

.about-media-float{
  position:absolute;
  bottom:-8%;
  right:-10%;
  width:230px;
  height:290px;
  border-radius:120px 120px 20px 20px;
  overflow:hidden;
  border:8px solid var(--bg-secondary);
  box-shadow:0 30px 50px -20px rgba(43,38,35,.35);
  animation:float-slow 8s ease-in-out infinite;
}
.about-media-float img{ width:100%; height:100%; object-fit:cover; }

.about-ring{
  position:absolute;
  top:-6%;
  left:-8%;
  width:130px;
  height:130px;
  border:1.5px dashed var(--gold);
  border-radius:50%;
  opacity:.6;
  animation:spin-slow 30s linear infinite;
  z-index:3000;
}

.about-badge{
  position:absolute;
  top:calc(-6% + 13px);
  left:calc(-8% + 13px);
  width:104px;
  height:104px;
  border-radius:50%;
  background:var(--btn-bg);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-align:center;
  z-index:3;
  box-shadow:0 20px 34px -16px rgba(43,38,35,.5);
}
.about-badge svg{ width:18px; height:18px; color:var(--gold); }
.about-badge span{
  font-family:var(--font-heading);
  font-style:italic;
  font-size:11.5px;
  line-height:1.2;
  letter-spacing:.02em;
  max-width:74px;
}

.about-content{ max-width:520px; }

.about-title{
  font-size:54px;
  margin-bottom:26px;
}
.about-title em{ font-style:italic; color:var(--gold); }

.about-text{
  color:var(--text-secondary);
  margin-bottom:48px;
}

.about-stats{
  display:flex;
  gap:56px;
  margin-bottom:48px;
}
.stat-num{
  font-family:var(--font-heading);
  font-size:50px;
  color:var(--gold);
  line-height:1;
  margin-bottom:10px;
  font-weight:500;
}
.stat-label{
  font-size:13px;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--text-secondary);
  max-width:150px;
}

/* =========================================================
   11. BEST SELLERS
   ========================================================= */
.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:44px 36px;
}

.product-card{
  position:relative;
  transition:transform .6s var(--ease-soft);
}
.product-card:hover{ transform:translateY(-12px); }

.product-media{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  aspect-ratio:3/4;
  background:var(--cream);
  margin-bottom:24px;
  box-shadow:0 2px 30px -12px rgba(43,38,35,.12);
  transition:box-shadow .6s var(--ease), border-radius .6s var(--ease);
}
.product-card:hover .product-media{
  box-shadow:0 40px 50px -24px rgba(43,38,35,.32);
}
.product-media img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease-soft), filter .8s var(--ease);
}
.product-card:hover .product-media img{
  transform:scale(1.09);
  filter:brightness(1.03);
}

.product-tag{
  position:absolute;
  top:18px; left:18px;
  background:rgba(255,253,251,.9);
  backdrop-filter:blur(6px);
  color:var(--text);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:7px 14px;
  border-radius:100px;
  z-index:2;
}

.product-quickadd{
  position:absolute;
  left:18px; right:18px; bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px;
  background:rgba(43,38,35,.92);
  color:#fff;
  font-size:13px;
  letter-spacing:.05em;
  border-radius:100px;
  opacity:0;
  transform:translateY(14px);
  transition:opacity .5s var(--ease-soft), transform .5s var(--ease-soft), background .4s var(--ease);
  z-index:2;
}
.product-quickadd:hover{ background:var(--gold); }
.product-card:hover .product-quickadd{ opacity:1; transform:translateY(0); }

.product-cat{
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
}
.product-name{
  font-family:var(--font-heading);
  font-size:24px;
  font-weight:500;
  margin-bottom:8px;
}
.product-scent{
  font-size:14px;
  color:var(--text-secondary);
  margin-bottom:10px;
}
.product-price{
  font-size:16px;
  font-weight:500;
  color:var(--text);
}
.product-price del{
  color:var(--text-secondary);
  font-weight:400;
  margin-right:8px;
  opacity:.6;
}

.products-foot{
  display:flex;
  justify-content:center;
  margin-top:70px;
}

/* =========================================================
   12. FEATURED COLLECTION
   ========================================================= */
.feature{
  background:var(--btn-bg);
  color:#fff;
  overflow:hidden;
}
.feature-grid{
  display:grid;
  grid-template-columns:.92fr 1fr;
  align-items:center;
}
.feature-media{
  position:relative;
  height:680px;
  margin-left:-48px;
}
.feature-media img,
.feature-media video{
  width:100%; height:100%;
  object-fit:cover;
  border-radius:0 220px 0 220px;
  transition:transform 1.4s var(--ease-soft), border-radius .8s var(--ease);
}
.feature-media:hover img,
.feature-media:hover video{ transform:scale(1.05); border-radius:0 160px 0 160px; }

.feature-content{
  padding:60px 48px 60px 90px;
  max-width:560px;
}
.feature .eyebrow{ color:var(--gold); }
.feature-title{
  font-size:54px;
  color:#fff;
  margin-bottom:26px;
}
.feature-title em{ font-style:italic; color:var(--gold); }
.feature-text{
  color:rgba(255,255,255,.68);
  margin-bottom:30px;
}
.feature-list{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:44px;
}
.feature-list li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:15px;
  color:rgba(255,255,255,.85);
}
.feature-list svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; }

/* =========================================================
   13. WHY CHOOSE US
   ========================================================= */
.why{ background:var(--cream); }
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
}
.why-card{
  background:var(--bg-main);
  padding:56px 38px;
  text-align:center;
  transition:background .5s var(--ease), transform .5s var(--ease-soft);
}
.why-card:hover{
  background:var(--bg-secondary);
  transform:translateY(-10px);
}
.why-icon{
  width:64px; height:64px;
  margin:0 auto 26px;
  border-radius:50%;
  background:var(--blush);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  transition:transform .5s var(--ease-soft), background .5s var(--ease);
}
.why-icon svg{ width:28px; height:28px; transition:transform .5s var(--ease-soft); }
.why-card:hover .why-icon{ background:var(--gold); color:#fff; transform:scale(1.08) rotate(-6deg); }
.why-card h3{
  font-size:22px;
  font-weight:500;
  margin-bottom:12px;
}
.why-card p{
  font-size:14.5px;
  color:var(--text-secondary);
}

/* =========================================================
   14. TESTIMONIALS
   ========================================================= */
.testimonials{ background:var(--bg-secondary); overflow:hidden; }
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.testimonial-card{
  background:var(--bg-main);
  border-radius:26px;
  padding:44px 38px;
  box-shadow:0 20px 50px -30px rgba(43,38,35,.25);
  transition:transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft);
}
.testimonial-card:nth-child(2){ transform:translateY(-24px); }
.testimonial-card:hover{
  transform:translateY(-14px);
  box-shadow:0 34px 60px -26px rgba(43,38,35,.32);
}
.testimonial-card:nth-child(2):hover{ transform:translateY(-38px); }
.stars{ display:flex; gap:4px; margin-bottom:22px; color:var(--gold); }
.stars svg{ width:16px; height:16px; }
.testimonial-quote{
  font-family:var(--font-heading);
  font-size:20px;
  font-style:italic;
  font-weight:400;
  color:var(--text);
  margin-bottom:30px;
}
.testimonial-person{
  display:flex;
  align-items:center;
  gap:14px;
}
.testimonial-avatar{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--pastel-pink);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-heading);
  font-weight:600;
  color:var(--btn-bg);
  font-size:16px;
}
.testimonial-name{ font-size:15px; font-weight:500; }
.testimonial-role{ font-size:12.5px; color:var(--text-secondary); }

/* =========================================================
   15. INSTAGRAM GALLERY
   ========================================================= */
.gallery{ background:var(--bg-main); }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.gallery-item{
  position:relative;
  aspect-ratio:1/1;
  border-radius:20px;
  overflow:hidden;
}
.gallery-item img,
.gallery-item video{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease-soft);
}
.gallery-item:hover img,
.gallery-item:hover video{ transform:scale(1.12); }
.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(43,38,35,0) 40%, rgba(43,38,35,.75) 100%);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:18px;
  opacity:0;
  transition:opacity .5s var(--ease);
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-handle{
  color:#fff;
  font-size:13px;
  font-weight:500;
  letter-spacing:.03em;
}
.gallery-ig{
  width:32px; height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transform:scale(.7) rotate(-15deg);
  transition:transform .5s var(--ease-soft);
}
.gallery-item:hover .gallery-ig{ transform:scale(1) rotate(0); }
.gallery-ig svg{ width:15px; height:15px; }

/* =========================================================
   16. NEWSLETTER
   ========================================================= */
.newsletter{
  position:relative;
  background:linear-gradient(150deg, var(--warm-beige) 0%, var(--light-rose) 55%, var(--soft-pink) 100%);
  overflow:hidden;
}
.newsletter-shape{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.55), transparent 70%);
}
.newsletter-shape--1{ width:500px; height:500px; top:-220px; left:-140px; }
.newsletter-shape--2{ width:360px; height:360px; bottom:-180px; right:-100px; }

.newsletter-inner{
  position:relative;
  z-index:2;
  max-width:640px;
  margin:0 auto;
  text-align:center;
}
.newsletter-title{
  font-size:50px;
  margin-bottom:20px;
}
.newsletter-title em{ font-style:italic; color:var(--btn-bg); }
.newsletter-text{
  color:var(--text-secondary);
  margin-bottom:44px;
}
.newsletter-form{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border-radius:100px;
  padding:8px 8px 8px 30px;
  box-shadow:0 24px 50px -24px rgba(43,38,35,.3);
  transition:box-shadow .5s var(--ease);
}
.newsletter-form:focus-within{
  box-shadow:0 24px 50px -18px rgba(181,139,88,.45);
}
.newsletter-form input{
  flex:1;
  border:none;
  outline:none;
  background:none;
  font-size:15px;
  color:var(--text);
  padding:14px 0;
}
.newsletter-form input::placeholder{ color:var(--text-secondary); }
.newsletter-note{
  margin-top:22px;
  font-size:13px;
  color:var(--text-secondary);
  letter-spacing:.03em;
}
.newsletter-success{
  margin-top:22px;
  font-size:14px;
  color:var(--gold);
  font-weight:500;
  opacity:0;
  height:0;
  overflow:hidden;
  transition:opacity .5s var(--ease);
}
.newsletter-success.show{ opacity:1; height:auto; }

/* =========================================================
   17. FOOTER
   ========================================================= */
.footer{
  background:var(--cream);
  position:relative;
  overflow:hidden;
  padding-top:110px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:80px;
  border-bottom:1px solid var(--border);
}
.footer-brand .logo{ text-align:left; margin-bottom:20px; }
.footer-brand p{
  color:var(--text-secondary);
  font-size:14.5px;
  max-width:280px;
  margin-bottom:28px;
}
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  transition:background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease-soft), border-color .4s var(--ease);
}
.footer-social a svg{ width:16px; height:16px; }
.footer-social a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
  transform:translateY(-4px);
}

.footer-col h4{
  font-family:var(--font-body);
  font-size:13px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:26px;
  color:var(--text);
}
.footer-col ul{ display:flex; flex-direction:column; gap:14px; }
.footer-col a{
  position:relative;
  font-size:14.5px;
  color:var(--text-secondary);
  transition:color .35s var(--ease);
  width:fit-content;
}
.footer-col a::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:1px;
  background:var(--gold);
  transition:width .4s var(--ease);
}
.footer-col a:hover{ color:var(--text); }
.footer-col a:hover::after{ width:100%; }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:32px 0;
  font-size:13px;
  color:var(--text-secondary);
  flex-wrap:wrap;
  gap:14px;
}
.footer-bottom-links{ display:flex; gap:26px; }

/* =========================================================
   18. BACK TO TOP
   ========================================================= */
.back-to-top{
  position:fixed;
  right:28px;
  bottom:28px;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--btn-bg);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:120;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:opacity .45s var(--ease), transform .45s var(--ease-soft), background .4s var(--ease), visibility .45s;
  box-shadow:0 14px 30px -12px rgba(43,38,35,.5);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:none; }
.back-to-top:hover{ background:var(--gold); transform:translateY(-4px); }
.back-to-top svg{ width:18px; height:18px; }

/* Mobile nav overlay */
.mobile-nav{
  position:fixed;
  inset:0;
  background:var(--bg-main);
  z-index:140;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:34px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-20px);
  transition:opacity .5s var(--ease-soft), transform .5s var(--ease-soft), visibility .5s;
}
.mobile-nav.open{ opacity:1; visibility:visible; transform:none; }
.mobile-nav a{
  font-family:var(--font-heading);
  font-size:34px;
  font-style:italic;
  line-height:1.1;
}
.mobile-nav-icons{ display:flex; gap:26px; margin-top:20px; }

/* =========================================================
   19. RESPONSIVE
   ========================================================= */
@media (max-width:1200px){
  .container{ padding:0 32px; }
  .hero-title{ font-size:64px; }
  .section-title,.about-title,.feature-title{ font-size:44px; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-content{ padding:60px 40px; }
}

@media (max-width:992px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-content{ max-width:100%; text-align:left; order:1; }
  .hero-media{ order:0; height:480px; margin-bottom:20px; }
  .hero-title{ font-size:56px; }
  .about-grid{ grid-template-columns:1fr; gap:100px; }
  .about-media{ height:440px; }
  .about-content{ max-width:100%; }
  .products-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-grid{ grid-template-columns:1fr; }
  .feature-media{ margin-left:0; height:420px; }
  .feature-content{ padding:70px 40px; max-width:100%; }
  .testimonials-grid{ grid-template-columns:1fr; gap:26px; }
  .testimonial-card:nth-child(2){ transform:none; }
  .testimonial-card:nth-child(2):hover{ transform:translateY(-14px); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:50px; }
}

@media (max-width:576px){
  .container{ padding:0 22px; }
  .section{ padding:96px 0; }
  .announce{ font-size:11px; padding:11px 14px; }
  .logo{ font-size:24px; }
  :root{ --nav-h:76px; }
  .hero{ padding:50px 0 80px; }
  .hero-title{ font-size:40px; margin-bottom:20px; }
  .hero-text{ font-size:15.5px; }
  .hero-actions{ flex-direction:column; align-items:flex-start; gap:22px; }
  .hero-media{ height:360px; }
  .hero-media-float{ width:170px; height:170px; left:-8%; }
  .hero-badge{ width:82px; height:82px; top:-6%; right:2%; gap:3px; }
  .hero-badge svg{ width:16px; height:16px; }
  .hero-badge span{ font-size:11px; }
  .marquee-item{ font-size:22px; padding:0 18px; }
  .section-title,.about-title,.feature-title,.newsletter-title{ font-size:32px; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:20px; margin-bottom:44px; }
  .about-media{ height:340px; }
  .about-media-float{ width:150px; height:190px; }
  .about-badge{ width:78px; height:78px; gap:3px; }
  .about-badge svg{ width:14px; height:14px; }
  .about-badge span{ font-size:9.5px; max-width:56px; }
  .about-stats{ gap:34px; }
  .stat-num{ font-size:38px; }
  .products-grid{ grid-template-columns:1fr; gap:40px; }
  .why-grid{ grid-template-columns:1fr; border-radius:22px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .footer-grid{ grid-template-columns:1fr; gap:44px; padding-bottom:50px; }
  .footer{ padding-top:80px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .newsletter-form{ flex-direction:column; align-items:stretch; border-radius:26px; padding:20px; gap:14px; }
  .newsletter-form input{ padding:10px 6px; }
  .newsletter-form .btn{ width:100%; justify-content:center; }
  .back-to-top{ right:16px; bottom:16px; width:44px; height:44px; }
  .feature-content{ padding:60px 22px; }
}

/* =========================================================
   20. CART DRAWER
   ========================================================= */
.nav-cart-btn{ position:relative; }

.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(20,16,14,.45);
  backdrop-filter:blur(2px);
  opacity:0;
  visibility:hidden;
  transition:opacity .4s var(--ease), visibility .4s var(--ease);
  z-index:300;
}
.cart-overlay.open{ opacity:1; visibility:visible; }

.cart-drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:420px;
  max-width:92vw;
  background:var(--bg-main);
  box-shadow:-20px 0 60px -20px rgba(0,0,0,.3);
  z-index:301;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .5s var(--ease-soft);
}
.cart-drawer.open{ transform:translateX(0); }

.cart-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:26px 26px 20px;
  border-bottom:1px solid var(--border);
}
.cart-drawer-head h3{ font-size:24px; }
.cart-close{ width:22px; height:22px; color:var(--text); transition:color .3s var(--ease), transform .3s var(--ease-soft); }
.cart-close:hover{ color:var(--gold); transform:rotate(90deg); }
.cart-close svg{ width:100%; height:100%; }

.cart-drawer-body{
  flex:1;
  overflow-y:auto;
  padding:10px 26px;
}

.cart-empty{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:14px;
  color:var(--text-secondary);
  padding:40px 0;
}
.cart-empty svg{ width:48px; height:48px; opacity:.5; }
.cart-empty p{ font-size:15px; }

.cart-item{
  display:flex;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--border);
}
.cart-item img{
  width:76px; height:76px;
  object-fit:cover;
  border-radius:12px;
  background:var(--cream);
  flex-shrink:0;
}
.cart-item-info{ flex:1; min-width:0; }
.cart-item-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.cart-item-top h4{ font-size:17px; font-weight:500; }
.cart-item-remove{ width:16px; height:16px; color:var(--text-secondary); flex-shrink:0; margin-top:4px; }
.cart-item-remove:hover{ color:var(--gold); }
.cart-item-remove svg{ width:100%; height:100%; }
.cart-item-cat{ font-size:12px; color:var(--text-secondary); margin:2px 0 10px; }
.cart-item-bottom{ display:flex; align-items:center; justify-content:space-between; }
.cart-item-price{ font-family:var(--font-heading); font-size:17px; font-weight:600; }

.qty-stepper{
  display:flex;
  align-items:center;
  gap:14px;
  border:1px solid var(--border);
  border-radius:100px;
  padding:5px 14px;
}
.qty-stepper button{ font-size:15px; line-height:1; color:var(--text); width:14px; }
.qty-stepper button:hover{ color:var(--gold); }
.qty-stepper span{ min-width:14px; text-align:center; font-size:13px; font-weight:500; }

.cart-drawer-foot{ padding:20px 26px 28px; border-top:1px solid var(--border); }
.cart-line{ display:flex; justify-content:space-between; font-size:15px; margin-bottom:6px; }
.cart-line span:last-child{ font-family:var(--font-heading); font-size:19px; font-weight:600; }
.cart-shipping-note{ font-size:12.5px; color:var(--text-secondary); margin-bottom:16px; }
.cart-checkout-btn{ width:100%; justify-content:center; margin-bottom:12px; }
.cart-clear-btn{ width:100%; text-align:center; font-size:13px; color:var(--text-secondary); letter-spacing:.04em; }
.cart-clear-btn:hover{ color:var(--gold); }

body.cart-open{ overflow:hidden; }

/* =========================================================
   21. CHECKOUT
   ========================================================= */
.checkout-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
  padding:100px 20px;
  color:var(--text-secondary);
}
.checkout-empty svg{ width:56px; height:56px; opacity:.5; }
.checkout-empty h3{ font-size:26px; }

.checkout-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:40px;
  align-items:start;
}

.checkout-card{
  background:var(--cream);
  border-radius:24px;
  padding:34px;
  margin-bottom:28px;
}
.checkout-card-title{
  font-size:22px;
  margin-bottom:22px;
}

.form-row{ margin-bottom:20px; }
.form-row--split{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field > span{ font-size:13px; font-weight:500; letter-spacing:.03em; }
.form-field > span em{ color:var(--gold); font-style:normal; }
.form-field > span small{ color:var(--text-secondary); font-weight:400; }
.form-field input,
.form-field textarea{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px 16px;
  font-size:14.5px;
  color:var(--text);
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
  resize:vertical;
}
.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(181,139,88,.15);
}
.form-field.has-error input,
.form-field.has-error textarea{ border-color:#c0483f; }
.form-error{ color:#c0483f; font-size:12px; min-height:14px; }

.payment-option{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px;
  border-radius:16px;
  border:1.5px solid var(--gold);
  background:var(--white);
}
.payment-radio{
  width:18px; height:18px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  flex-shrink:0;
  margin-top:2px;
  position:relative;
}
.payment-option--selected .payment-radio::after{
  content:'';
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:var(--gold);
}
.payment-icon{ width:26px; height:26px; color:var(--gold); flex-shrink:0; }
.payment-name{ font-family:var(--font-heading); font-size:19px; font-weight:600; margin-bottom:4px; }
.payment-desc{ font-size:13.5px; color:var(--text-secondary); }
.checkout-note{ font-size:12.5px; color:var(--text-secondary); margin-top:14px; }

.checkout-error-banner{
  background:#fbeceb;
  color:#a3382f;
  border:1px solid #e3a9a3;
  border-radius:12px;
  padding:14px 18px;
  font-size:13.5px;
}

.checkout-summary-col{ position:sticky; top:calc(var(--nav-h) + 24px); }
.summary-items{ margin-bottom:18px; }
.summary-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.summary-item img{
  width:52px; height:52px;
  object-fit:cover;
  border-radius:10px;
  background:var(--white);
  flex-shrink:0;
}
.summary-item-info{ flex:1; display:flex; flex-direction:column; gap:2px; min-width:0; }
.summary-item-name{ font-size:14px; font-weight:500; }
.summary-item-qty{ font-size:12px; color:var(--text-secondary); }
.summary-item-price{ font-size:14px; font-weight:500; flex-shrink:0; }

.summary-line{ display:flex; justify-content:space-between; font-size:14.5px; padding:8px 0; }
.summary-line--total{
  border-top:1px solid var(--border);
  margin-top:6px;
  padding-top:16px;
  font-size:18px;
}
.summary-line--total span{ font-family:var(--font-heading); font-weight:600; }

.checkout-submit{ width:100%; justify-content:center; margin-top:14px; }
.checkout-submit.is-loading{ opacity:.6; pointer-events:none; }
.checkout-secure-note{ text-align:center; font-size:12px; color:var(--text-secondary); margin-top:14px; }

/* =========================================================
   22. ORDER SUCCESS
   ========================================================= */
.success-status{ text-align:center; padding:100px 20px; color:var(--text-secondary); }
.success-status h2{ font-size:28px; color:var(--text); margin-bottom:10px; }

.success-hero{ text-align:center; max-width:640px; margin:0 auto 56px; }
.success-check{
  width:74px; height:74px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 26px;
}
.success-check svg{ width:32px; height:32px; }
.success-title{ font-size:40px; margin-bottom:16px; }
.success-title em{ font-style:italic; color:var(--gold); }
.success-sub{ color:var(--text-secondary); font-size:15.5px; margin-bottom:22px; }
.success-order-number{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--cream);
  padding:12px 24px;
  border-radius:100px;
  font-size:13px;
  letter-spacing:.04em;
}
.success-order-number strong{ font-family:var(--font-heading); font-size:17px; color:var(--gold); }

.success-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:960px;
  margin:0 auto;
}

.success-details{ display:flex; flex-direction:column; gap:14px; }
.success-details > div{ display:flex; justify-content:space-between; gap:16px; font-size:14px; }
.success-details dt{ color:var(--text-secondary); }
.success-details dd{ text-align:right; font-weight:500; }

.success-actions{ text-align:center; margin-top:44px; }

@media (max-width:900px){
  .checkout-grid{ grid-template-columns:1fr; }
  .checkout-summary-col{ position:static; }
  .success-grid{ grid-template-columns:1fr; }
  .form-row--split{ grid-template-columns:1fr; }
}

@media (max-width:576px){
  .cart-drawer{ width:100vw; max-width:100vw; }
  .checkout-card{ padding:24px; }
  .success-title{ font-size:30px; }
}
