/* ===== Ae Parfums — stylesheet ===== */
:root{
  --navy:#241f14;
  --navy-light:#3a3222;
  --navy-soft:#4a4130;
  --gold:#c9a227;
  --gold-light:#e6c866;
  --gold-dark:#a3811d;
  --cream:#fdf8f1;
  --cream-dark:#f3e9da;
  --pink:#e8b4c8;
  --pink-dark:#d98fae;
  --text:#221c14;
  --text-light:#6b6357;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(180,140,30,.14);
  --radius:16px;
  --serif:'Playfair Display', serif;
  --sans:'Poppins', sans-serif;
  --topbar-h:36px;
  --header-h:74px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;color-scheme:light only;}
body{
  font-family:var(--sans);
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
svg{fill:currentColor;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px;}

h1,h2,h3,h4{font-family:var(--serif);font-weight:700;color:var(--navy);}

.section-eyebrow{
  display:inline-block;
  font-size:1.3rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:10px;
}
.section-title{
  font-size:clamp(1.7rem,3.5vw,2.6rem);
  margin-bottom:14px;
}
.section-subtitle{
  color:var(--text-light);
  max-width:560px;
  margin:0 auto 40px;
  font-size:1rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  justify-content:center;
  padding:14px 30px;
  border-radius:50px;
  font-weight:600;
  font-size:.95rem;
  letter-spacing:.02em;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor:pointer;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  box-shadow:0 8px 20px rgba(201,162,39,.35);
}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(201,162,39,.45);}
.btn-gold:disabled{opacity:.4;cursor:not-allowed;transform:none;box-shadow:none;}
.btn-outline{
  border:1.5px solid var(--gold);
  color:var(--navy);
}
.btn-outline:hover{background:rgba(201,162,39,.1);transform:translateY(-3px);}
.btn-block{width:100%;}
.btn-ghost{
  background:transparent;color:var(--text-light);
  padding:14px 24px;font-weight:600;
}
.btn-ghost:hover{color:var(--navy);}

/* ===== Top announcement banner ===== */
.top-banner{
  position:fixed;top:0;left:0;right:0;z-index:210;
  height:var(--topbar-h);
  overflow:hidden;
  display:flex;align-items:center;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
}
.top-banner-track{
  display:inline-block;
  white-space:nowrap;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.02em;
  color:var(--navy);
  animation:topBannerScroll 44s linear infinite;
  will-change:transform;
}
@keyframes topBannerScroll{
  0%{transform:translateX(100vw);}
  100%{transform:translateX(-100%);}
}
@media (prefers-reduced-motion:reduce){
  .top-banner-track{animation:none;}
}

/* ===== Header ===== */
.site-header{
  position:fixed;top:var(--topbar-h);left:0;right:0;z-index:200;
  background:rgba(253,248,241,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,162,39,.25);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);
}
.logo{display:flex;align-items:center;gap:10px;}
.logo-img{height:52px;width:auto;}
.footer-logo .logo-img{height:64px;}
.logo-ring{
  width:38px;height:38px;border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);color:var(--gold);font-size:1.05rem;font-weight:700;
}
.logo-text{
  font-family:var(--serif);color:var(--cream);
  letter-spacing:.15em;font-size:.95rem;font-weight:600;
}
.nav{display:flex;align-items:center;gap:30px;}
.nav-socials{display:none;}
.nav-link{
  color:var(--navy);font-size:.9rem;font-weight:500;
  position:relative;transition:color .2s;
}
.nav-link:hover{color:var(--gold-dark);}
.nav-cta{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  padding:9px 20px;border-radius:50px;font-weight:600;
}
.nav-cta:hover{filter:brightness(1.06);}
.header-actions{display:flex;align-items:center;gap:12px;}
.icon-btn{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(201,162,39,.4);
  color:var(--gold-dark);
  transition:background .2s, transform .2s;
}
.icon-btn:hover{background:rgba(201,162,39,.12);transform:translateY(-2px);}
.burger{display:none;flex-direction:column;gap:5px;width:32px;height:32px;justify-content:center;align-items:center;}
.burger span{width:22px;height:2px;background:var(--navy);transition:.3s;}

/* ===== Hero ===== */
.hero{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--cream),var(--cream-dark));
  margin-top:calc(var(--header-h) + var(--topbar-h));
  height:calc(100vh - var(--header-h) - var(--topbar-h));
  height:calc(100dvh - var(--header-h) - var(--topbar-h));
}
.hero-media{position:absolute;inset:0;overflow:hidden;}
.hero-track{
  display:flex;height:100%;
  transition:transform .7s ease;
}
.hero-slide{
  flex:0 0 100%;width:100%;height:100%;
  position:relative;
  cursor:pointer;
}
.hero-fg{
  width:100%;height:100%;
  object-fit:cover;object-position:center;display:block;
  animation:heroKenBurns 18s ease-in-out infinite alternate;
}
@keyframes heroKenBurns{
  0%{transform:scale(1) translate(0,0);}
  100%{transform:scale(1.08) translate(-1%,-1%);}
}
@media (prefers-reduced-motion:reduce){
  .hero-fg{animation:none;}
}
.hero-dots{
  position:absolute;left:0;right:0;bottom:130px;z-index:5;
  display:flex;align-items:center;justify-content:center;gap:10px;
}
.hero-dot{
  width:10px;height:10px;border-radius:50%;
  background:rgba(36,31,20,.25);
  border:1.5px solid transparent;
  transition:background .25s ease, transform .25s ease;
}
.hero-dot.active{background:var(--gold);transform:scale(1.2);}
.hero-dot:hover{background:var(--gold-dark);}
.hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  text-align:center;
  padding-bottom:64px;
}

.slider-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(201,162,39,.4);
  color:var(--gold-dark);font-size:1.4rem;
  display:flex;align-items:center;justify-content:center;
  z-index:20;transition:background .2s;
  box-shadow:0 6px 16px rgba(180,140,30,.12);
}
.slider-arrow:hover{background:var(--gold);color:var(--white);}
.slider-arrow.prev{left:24px;}
.slider-arrow.next{right:24px;}

/* ===== USP bar ===== */
.usp-bar{background:var(--white);padding:36px 0;border-bottom:1px solid var(--cream-dark);}
.usp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.usp-item{display:flex;align-items:center;gap:14px;}
.usp-icon{
  width:48px;height:48px;flex:0 0 48px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;
}
.usp-item h4{font-size:.92rem;margin-bottom:2px;}
.usp-item p{font-size:.8rem;color:var(--text-light);}

/* ===== Packs ===== */
.packs-section{padding:90px 0;}
.packs-section .container{text-align:center;}
.packs-section .container > *{margin-left:auto;margin-right:auto;}
.packs-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:26px;
  text-align:left;margin-top:20px;
}
.pack-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:34px 26px;
  box-shadow:var(--shadow);
  border:1px solid var(--cream-dark);
  position:relative;overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
  display:flex;flex-direction:column;
  cursor:pointer;
}
.pack-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(18,32,58,.16);}
.pack-card.featured{border:1.5px solid var(--gold);}
.pack-photo{
  width:100%;aspect-ratio:1/1;border-radius:12px;overflow:hidden;
  margin-bottom:18px;background:var(--cream);
}
.pack-photo img{width:100%;height:100%;object-fit:cover;object-position:center;}
.pack-badge{
  position:absolute;top:18px;right:-38px;
  background:var(--gold);color:var(--navy);
  font-size:.7rem;font-weight:700;letter-spacing:.05em;
  padding:5px 40px;transform:rotate(40deg);
}
.pack-size{
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:8px;
}
.pack-count{font-family:var(--serif);font-size:1.4rem;color:var(--navy);margin-bottom:16px;}
.pack-price{
  display:inline-flex;align-items:baseline;gap:6px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  font-family:var(--sans);font-size:1.5rem;font-weight:700;
  padding:8px 22px;border-radius:50px;
  box-shadow:0 8px 20px rgba(201,162,39,.3);
  margin-bottom:14px;
}
.pack-price span{font-size:.82rem;font-weight:600;color:var(--navy);opacity:.7;}
.pack-desc{color:var(--text-light);font-size:.85rem;margin-bottom:10px;}
.pack-shipping{color:var(--gold-dark);font-size:.8rem;font-weight:600;margin-bottom:20px;flex-grow:1;}
.pack-shipping--extra{color:var(--text-light);font-weight:500;}
.pack-card .btn{width:100%;position:relative;z-index:2;}

/* ===== Unite (single perfume) ===== */
.unite-section{padding:60px 0 20px;background:var(--cream-dark);}
.unite-section .container{text-align:center;margin-bottom:10px;}
.product-card{cursor:pointer;}

/* ===== Collections (Femme / Homme / Unisexe) ===== */
.collections-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
  margin-top:30px;text-align:left;
}
.collections-row--packs{
  grid-template-columns:repeat(2,1fr);
  max-width:640px;margin-left:auto;margin-right:auto;
}
.collections-row--packs .collection-card-overlay h3{
  font-size:clamp(1.4rem,5vw,2rem);white-space:nowrap;
}
.collection-card{
  position:relative;border-radius:18px;overflow:hidden;cursor:pointer;
  aspect-ratio:3/4;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  box-shadow:var(--shadow);
  transition:transform .3s ease;
}
.collection-card:hover{transform:translateY(-6px);}
.collection-card img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.collection-card-overlay{
  position:absolute;inset:0;z-index:2;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  padding:26px 20px;text-align:center;
  background:linear-gradient(0deg,rgba(20,16,8,.8) 15%,rgba(20,16,8,.05) 65%);
}
.collection-card-overlay span{
  color:var(--gold-light);font-size:1.15rem;letter-spacing:.2em;text-transform:uppercase;font-weight:600;
}
.collection-card-overlay h3{
  color:var(--white);font-family:var(--serif);font-size:clamp(2.1rem,4.2vw,3rem);font-weight:700;
  margin:4px 0 20px;letter-spacing:.04em;text-shadow:0 2px 14px rgba(0,0,0,.5);
}
.btn-decouvrir{
  background:var(--white);color:var(--navy);
  padding:10px 28px;border-radius:50px;font-weight:700;font-size:.8rem;
  letter-spacing:.05em;text-transform:uppercase;
  transition:transform .2s;
}
.btn-decouvrir:hover{transform:scale(1.06);}

.modal-collection{max-width:900px;}
.modal-collection h3{font-size:1.5rem;text-align:center;margin-bottom:24px;padding-right:20px;}
.collection-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));
  gap:22px;padding-bottom:10px;
}
@media (max-width:760px){
  .collections-row{grid-template-columns:1fr;}
}
.product-card .product-price{
  display:inline-block;margin-top:8px;font-family:var(--sans);
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  font-weight:700;font-size:.92rem;letter-spacing:.03em;
  padding:5px 16px;border-radius:50px;
  box-shadow:0 4px 12px rgba(201,162,39,.3);
}

/* ===== Bestsellers carousel ===== */
.bestsellers-section{padding:60px 0 90px;background:var(--cream-dark);}
.bestsellers-section .container{text-align:center;}
.carousel-wrapper{position:relative;max-width:1200px;margin:0 auto;padding:0 24px;}
.carousel-track{
  display:flex;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:10px 4px 20px;scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{display:none;}
.product-card{
  position:relative;
  flex:0 0 210px;scroll-snap-align:start;
  background:var(--white);border-radius:var(--radius);
  padding:24px 18px;text-align:center;box-shadow:var(--shadow);
  border:1px solid var(--cream-dark);
  transition:transform .25s;
}
.product-card:hover{transform:translateY(-6px);}
.product-photo{
  width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:10px;margin-bottom:16px;
}
.product-bottle{
  width:70px;height:auto;margin:0 auto 16px;color:var(--gold);
}
.product-bottle.femme{color:var(--pink-dark);}
.product-bottle.unisex{color:var(--navy-soft);}
.bottle-gem{fill:var(--white);}
.bottle-shine{opacity:.35;stroke:var(--white);stroke-width:1;}
.product-card h4{font-size:.95rem;color:var(--navy);margin-bottom:4px;}
.product-card .tag{
  font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-light);
}
.carousel-wrapper .slider-arrow{
  position:absolute;top:45%;
}
.carousel-wrapper .slider-arrow.prev{left:-6px;}
.carousel-wrapper .slider-arrow.next{right:-6px;}
.carousel-wrapper .slider-arrow{
  background:var(--white);border:1px solid var(--cream-dark);color:var(--gold);
  box-shadow:var(--shadow);
}
.carousel-wrapper .slider-arrow:hover{background:var(--gold);color:var(--white);}

/* ===== Reviews ===== */
.reviews-section{padding:90px 0;text-align:center;background:var(--cream-dark);}
.reviews-section .container{max-width:1100px;}
.reviews-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:20px;align-items:start;
}
.review-card{
  border-radius:16px;overflow:hidden;background:var(--white);
  box-shadow:var(--shadow);border:1px solid var(--cream-dark);
  transition:transform .25s;
}
.review-card:hover{transform:translateY(-6px);}
.review-card img{width:100%;height:auto;display:block;}

.tab-btn{
  padding:10px 26px;border-radius:50px;font-size:.88rem;font-weight:600;
  border:1.5px solid var(--cream-dark);color:var(--text-light);
  transition:.25s;
}
.tab-btn.active,.tab-btn:hover{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));color:var(--navy);border-color:var(--gold);
}

/* ===== Contact ===== */
.contact-section{
  background:linear-gradient(135deg,#f8ecd6,#fdf8f1 60%,#f3e4c4);
  padding:90px 0;text-align:center;
  border-top:1px solid var(--cream-dark);
  border-bottom:1px solid var(--cream-dark);
}
.section-eyebrow--light{color:var(--gold-dark);}
.section-title--light{color:var(--navy);}
.section-subtitle--light{color:var(--text-light);}
.contact-inner > *{margin-left:auto;margin-right:auto;}
.contact-cards{
  display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-top:10px;
}
.contact-card{
  display:flex;align-items:center;gap:14px;
  background:var(--white);
  border:1px solid rgba(201,162,39,.3);
  border-radius:16px;padding:20px 28px;
  color:var(--navy);min-width:220px;text-align:left;
  box-shadow:var(--shadow);
  transition:transform .25s, box-shadow .25s;
}
.contact-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(180,140,30,.2);}
.contact-card svg{color:var(--gold-dark);flex:0 0 auto;}
.contact-card h4{color:var(--navy);font-size:1rem;margin-bottom:2px;}
.contact-card p{color:var(--text-light);font-size:.88rem;}

/* ===== Footer ===== */
.site-footer{background:var(--cream);padding:36px 0;text-align:center;border-top:1px solid var(--cream-dark);}
.footer-inner p{color:var(--text-light);font-size:.82rem;margin-top:6px;}
.footer-logo{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:14px;}
.footer-socials{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:18px;}
.footer-copy{opacity:.7;margin-top:10px !important;}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp{
  position:fixed;bottom:26px;right:26px;z-index:150;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,.45);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);}
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ===== Modal ===== */
.modal-overlay{
  position:fixed;inset:0;background:rgba(14,20,33,.7);
  display:flex;align-items:center;justify-content:center;
  z-index:500;opacity:0;visibility:hidden;transition:.3s;
  padding:20px;
}
.modal-overlay.open{opacity:1;visibility:visible;}
.modal{
  background:var(--cream);border-radius:20px;
  width:100%;max-width:720px;max-height:88vh;overflow-y:auto;
  padding:34px;position:relative;
  transform:translateY(30px);transition:transform .3s;
}
.modal-overlay.open .modal{transform:translateY(0);}
.product-page-card{
  background:var(--white);border-radius:20px;
  max-width:720px;margin:0 auto;padding:34px;
  box-shadow:var(--shadow);border:1px solid var(--cream-dark);
  position:relative;
}
.modal-close{
  position:absolute;top:18px;right:20px;font-size:1.6rem;color:var(--text-light);
  width:36px;height:36px;
}
.modal-close:hover{color:var(--navy);}
.modal-header h3{font-size:1.5rem;margin-bottom:6px;}
.modal-header p{color:var(--text-light);font-size:.9rem;margin-bottom:16px;}
.modal-counter{
  display:inline-block;background:linear-gradient(135deg,var(--gold-light),var(--gold));color:var(--navy);
  font-size:.82rem;font-weight:600;padding:8px 18px;border-radius:50px;margin-bottom:22px;
}
.modal-counter #selectedCount{font-size:1rem;}
.modal-step[hidden]{display:none;}
.modal-footer--split{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  position:sticky;bottom:-34px;
  margin:16px -34px -34px;padding:16px 34px;
  background:var(--cream);
  border-top:1px solid var(--cream-dark);
}

.thankyou-step{text-align:center;padding:20px 10px 6px;}
.thankyou-icon{
  width:76px;height:76px;border-radius:50%;margin:0 auto 22px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  display:flex;align-items:center;justify-content:center;color:var(--navy);
}
.thankyou-step h3{font-size:1.6rem;margin-bottom:10px;}
.thankyou-step p{color:var(--text-light);max-width:420px;margin:0 auto 26px;}
.thankyou-summary{
  background:var(--white);border:1px solid var(--cream-dark);border-radius:14px;
  padding:18px 22px;text-align:left;margin-bottom:26px;
}
.thankyou-summary h5{font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;color:var(--gold-dark);margin-bottom:10px;}
.thankyou-summary ul{margin:0 0 10px;padding-left:18px;list-style:disc;}
.thankyou-summary li{font-size:.88rem;color:var(--navy);margin-bottom:2px;}
.thankyou-summary p{margin:0;font-size:.85rem;color:var(--text-light);text-align:left;}
.thankyou-summary strong{color:var(--navy);}
.modal-footer--split .btn-gold{flex:1;}

.order-form{display:flex;flex-direction:column;gap:16px;margin-bottom:6px;}
.form-field{display:flex;flex-direction:column;gap:6px;}
.form-field span{font-size:.82rem;font-weight:600;color:var(--navy);}
.form-field input,
.form-field textarea{
  font-family:inherit;font-size:16px;color:var(--text);
  border:1.5px solid var(--cream-dark);border-radius:10px;
  padding:12px 14px;background:var(--white);
  transition:border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus{outline:none;border-color:var(--gold);}
.form-field textarea{resize:vertical;min-height:70px;}
.modal-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px;}
.modal-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-bottom:10px;
  max-height:340px;overflow-y:auto;padding-right:6px;
}
.perfume-option{
  display:flex;align-items:center;gap:12px;
  border:1.5px solid var(--cream-dark);border-radius:12px;
  padding:12px 14px;background:var(--white);
  transition:.2s;
}
.perfume-option:hover{border-color:var(--gold);}
.perfume-option.selected{
  border-color:var(--gold);background:rgba(201,162,39,.08);
}
.perfume-option.disabled{opacity:.4;pointer-events:none;}
.perfume-option .option-thumb{
  width:44px;height:44px;border-radius:10px;flex:0 0 44px;
  object-fit:cover;border:1px solid var(--cream-dark);
}
.perfume-option .option-thumb--empty{
  display:flex;align-items:center;justify-content:center;
  background:var(--cream);color:var(--gold);
}
.perfume-option .checkbox{
  width:22px;height:22px;border-radius:6px;flex:0 0 22px;
  border:1.5px solid #cfc6b4;
  display:flex;align-items:center;justify-content:center;color:var(--white);
}
.perfume-option.selected .checkbox{background:var(--gold);border-color:var(--gold);}
.perfume-option > span:not(.checkbox){font-size:.86rem;color:var(--navy);font-weight:500;flex:1;}

/* ===== Perfume info button + popup ===== */
.perfume-info-btn{
  width:20px;height:20px;border-radius:50%;flex:0 0 20px;
  border:1px solid var(--gold-dark);color:var(--gold-dark);background:var(--white);
  font-size:.72rem;font-weight:700;font-style:italic;font-family:var(--serif);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,color .2s;
}
.perfume-info-btn:hover{background:var(--gold);color:var(--white);}
.product-card .perfume-info-btn{
  position:absolute;top:10px;right:10px;z-index:3;
  background:rgba(255,255,255,.92);box-shadow:0 2px 8px rgba(36,31,20,.18);
}
.modal-info{max-width:460px;}
.modal-info h3{font-size:1.3rem;margin-bottom:12px;padding-right:20px;}
.perfume-info-text{font-size:.92rem;color:var(--text);line-height:1.7;}
.info-modal-footer{
  position:sticky;bottom:-34px;
  margin:22px -34px -34px;padding:16px 34px;
  background:var(--cream);
  border-top:1px solid var(--cream-dark);
}
.perfume-option.shake{animation:shake .35s;}
@keyframes shake{
  25%{transform:translateX(-4px);}
  75%{transform:translateX(4px);}
}
.modal-footer{margin-top:16px;}

/* ===== Unit product modal ===== */
.unit-product{display:flex;gap:30px;align-items:flex-start;}
.unit-product-photo{
  position:sticky;top:0;
  flex:0 0 220px;border-radius:14px;overflow:hidden;
  background:var(--white);border:1px solid var(--cream-dark);
}
.unit-product-photo img{width:100%;height:100%;object-fit:cover;aspect-ratio:1/1;}
.unit-product-info{flex:1;text-align:left;}
.unit-product-info h3{font-size:1.4rem;margin-bottom:8px;}
.unit-price{
  display:inline-flex;align-items:baseline;gap:5px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  font-family:var(--sans);font-size:.95rem;font-weight:700;
  padding:8px 20px;border-radius:50px;
  box-shadow:0 6px 16px rgba(201,162,39,.3);
  margin-bottom:20px;
}
.unit-desc{
  background:var(--white);border:1px solid var(--cream-dark);border-radius:12px;
  padding:14px 16px;margin-bottom:18px;
}
.unit-desc:empty{display:none;}
#unitNextBtn{position:sticky;bottom:0;margin-top:16px;}
.unit-price span:last-child{font-size:.78rem;font-weight:600;color:var(--navy);opacity:.7;}
.unit-label{display:block;font-size:.78rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--gold-dark);margin-bottom:8px;}
.unit-size-select{margin-bottom:20px;}
.unit-size-options{display:flex;gap:10px;}
.unit-size-btn{
  padding:10px 18px;border-radius:10px;border:1.5px solid var(--cream-dark);
  background:var(--white);color:var(--navy);font-weight:600;font-size:.9rem;
  display:flex;flex-direction:column;align-items:center;gap:2px;transition:.2s;
}
.unit-size-btn em{font-style:normal;font-size:.76rem;color:var(--text-light);}
.unit-size-btn.active{border-color:var(--gold);background:rgba(201,162,39,.08);}
.unit-size-btn.active em{color:var(--gold-dark);}
.unit-qty-select{margin-bottom:16px;}
.unit-qty-stepper{
  display:inline-flex;align-items:center;gap:16px;
  border:1.5px solid var(--cream-dark);border-radius:10px;padding:6px 16px;
}
.unit-qty-stepper button{
  width:26px;height:26px;border-radius:50%;background:var(--cream);
  color:var(--navy);font-size:1.1rem;display:flex;align-items:center;justify-content:center;
}
.unit-qty-stepper button:hover{background:var(--gold);color:var(--white);}
.unit-qty-stepper span{font-weight:600;color:var(--navy);min-width:16px;text-align:center;}
.unit-shipping{color:var(--text-light);font-size:.82rem;margin-bottom:18px;}

/* ===== Responsive ===== */
@media (max-width:980px){
  .packs-grid{grid-template-columns:repeat(2,1fr);}
  .usp-grid{grid-template-columns:repeat(2,1fr);}
  .reviews-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:860px){
  .nav{
    position:fixed;top:calc(var(--header-h) + var(--topbar-h));left:0;right:0;bottom:0;
    width:100%;max-width:100%;box-sizing:border-box;
    background:var(--cream);flex-direction:column;justify-content:flex-start;align-items:flex-start;
    padding:40px 24px;gap:26px;
    transform:translateX(100%);transition:transform .35s ease;
    overflow-y:auto;
  }
  .nav.open{transform:translateX(0);}
  .nav-link{font-size:1.1rem;}
  .nav-socials{display:flex;gap:14px;margin-top:auto;padding-top:20px;}
  .burger{display:flex;}
  .header-actions .icon-btn{display:none;}
  .modal-grid{grid-template-columns:1fr;}
}
@media (max-width:700px){
  .slider-arrow{width:36px;height:36px;font-size:1.1rem;}
  .hero{height:auto;}
  .hero-media{position:relative;inset:auto;aspect-ratio:3/1;}
  .hero-dots{bottom:10px;}
  .hero-content{height:auto;padding:22px 20px 30px;}
}
@media (max-width:600px){
  .packs-grid{grid-template-columns:1fr;}
  .usp-grid{grid-template-columns:1fr;}
  .contact-cards{flex-direction:column;align-items:center;}
  .reviews-grid{grid-template-columns:1fr;max-width:340px;margin-left:auto;margin-right:auto;}
  .modal{padding:24px 18px;}
  .product-page-card{padding:24px 18px;}
  .info-modal-footer{bottom:-24px;margin:22px -18px -24px;padding:14px 18px;}
  .modal-footer--split{bottom:-24px;margin:16px -18px -24px;padding:14px 18px;}
  .thankyou-summary{padding:16px 18px;}
  .unit-product{flex-direction:column;align-items:center;text-align:center;}
  .unit-product-photo{position:static;flex:0 0 auto;width:180px;}
  .unit-product-info{text-align:center;}
  .unit-size-options{justify-content:center;}
}
