/* ============================================================
   SKA PARFUM — Global Stylesheet
   Design : Luxe Minimaliste | Blanc & Bleu Roi | Accents Or
   ============================================================ */

/* ---- Variables ---- */
:root {
  --primary:       #1565C0;
  --primary-dark:  #0D47A1;
  --primary-light: #1976D2;
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --white:         #FFFFFF;
  --off-white:     #F8F9FF;
  --light-blue:    #EEF3FF;
  --text-dark:     #0D1B3E;
  --text-med:      #4A5880;
  --text-light:    #8898BB;
  --shadow:        0 4px 24px rgba(13,71,161,.12);
  --shadow-lg:     0 12px 48px rgba(13,71,161,.22);
  --trans:         all .3s cubic-bezier(.4,0,.2,1);
  --radius:        14px;
  --radius-lg:     22px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 90px 0; }

/* ---- Section Header ---- */
.sec-badge {
  display: inline-block;
  background: rgba(21,101,192,.1);
  color: var(--primary);
  border: 1px solid rgba(21,101,192,.2);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--text-med);
  max-width: 580px;
  margin: 0 auto 50px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  letter-spacing: .3px;
}
.btn-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(21,101,192,.4);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(21,101,192,.5); }

.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.5); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a8820a 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,.5); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  animation: waPulse 2.5s infinite;
  transition: var(--trans);
}
.wa-float:hover { transform: scale(1.12); }
.wa-float-label {
  position: absolute;
  right: 70px;
  background: white;
  color: #128C7E;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.wa-float:hover .wa-float-label { opacity: 1; }

@keyframes waPulse {
  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); }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(21,101,192,.07);
  transition: var(--trans);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-txt { line-height: 1; }
.nav-logo-txt .brand { font-family:'Playfair Display',serif; font-size:1.35rem; font-weight:800; color:var(--primary); }
.nav-logo-txt .tagline { font-size:.62rem; color:var(--gold); text-transform:uppercase; letter-spacing:2.5px; font-weight:700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-med);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: var(--light-blue); }

.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: .85rem !important;
  background: #25D366 !important;
}
.nav-wa:hover { background: #128C7E !important; transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0; right: 0;
  background: white;
  z-index: 998;
  padding: 20px 24px 28px;
  border-bottom: 3px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform .35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 16px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: var(--trans);
}
.mobile-menu ul li a:hover { background: var(--light-blue); color: var(--primary); }
.mobile-menu .mobile-wa {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 60%, #2196F3 100%);
  padding: 150px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: white; font-size: clamp(2.2rem,5vw,3.5rem); margin-bottom: 14px; position: relative; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; position: relative; }

/* ---- Cards ---- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--trans);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: .95rem;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #D8E4F8;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  transition: var(--trans);
  font-family: 'Lato', sans-serif;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
}
.form-control.select-style {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%231565C0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
textarea.form-control { resize: vertical; min-height: 110px; }

/* ---- FOOTER ---- */
footer {
  background: linear-gradient(140deg, #051B40 0%, #0D2B6B 60%, #0D47A1 100%);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.footer-brand .f-brand {
  font-family:'Playfair Display',serif;
  font-size: 1.9rem;
  color: white;
  display: block;
  margin-bottom: 2px;
}
.footer-brand .f-tag {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-brand p { font-size:.9rem; line-height:1.75; margin-bottom:22px; }
.f-social { display:flex; gap:10px; }
.f-soc-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--trans);
}
.f-soc-ic:hover { background: var(--gold); transform: translateY(-3px); }

.footer-col h4 {
  font-family:'Playfair Display',serif;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col p { font-size:.9rem; line-height:1.8; }
.footer-col .contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-col .contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-wrap {
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Divider ---- */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.gold-divider-left { margin: 0 0 20px; }

/* ====================================================
   INDEX PAGE SPECIFIC
   ==================================================== */

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, #1E88E5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -100px; right: -150px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero-content h1 span { color: var(--gold-light); }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .num {
  font-family:'Playfair Display',serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-bottle-wrap {
  width: 320px; height: 420px;
  background: rgba(255,255,255,.06);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatUp 4s ease-in-out infinite;
}
.hero-bottle-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(201,168,76,.3), transparent, rgba(255,255,255,.1));
  z-index: -1;
}
.hero-bottle-icon {
  font-size: 8rem;
  filter: drop-shadow(0 10px 30px rgba(201,168,76,.4));
}
.hero-float-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.hero-float-badge.b1 { top: 20px; right: -20px; }
.hero-float-badge.b2 { bottom: 60px; left: -30px; }
.hero-float-badge.b3 { top: 50%; right: -40px; transform: translateY(-50%); }
.hero-float-badge .badge-ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .95rem;
  flex-shrink: 0;
}
.hero-float-badge.b2 .badge-ic { background: rgba(37,211,102,.12); color: #25D366; }
.hero-float-badge.b3 .badge-ic { background: rgba(201,168,76,.12); color: var(--gold); }

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item .num {
  font-family:'Playfair Display',serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .lbl { color: rgba(255,255,255,.75); font-size: .9rem; text-transform: uppercase; letter-spacing: .8px; }

/* Présentation / About Intro */
.about-intro { background: var(--off-white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}
.about-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,71,161,.6) 0%, transparent 50%);
}
.about-intro-content .checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-med);
}
.about-intro-content .checks li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.about-intro-content .checks { list-style: none; margin: 24px 0 32px; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(21,101,192,.07);
  box-shadow: var(--shadow);
  transition: var(--trans);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,101,192,.15);
}
.feature-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: var(--trans);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { color: var(--text-med); font-size: .9rem; }

/* Products Preview */
.products-preview { background: var(--off-white); }
.prod-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.prod-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--trans);
  background: none;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.prod-tab.active,
.prod-tab:hover { background: var(--primary); color: white; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prod-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  position: relative;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.6);
  position: relative;
}
.prod-badge-new {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.prod-info { padding: 18px; }
.prod-info h3 { font-size: 1rem; margin-bottom: 6px; }
.prod-info p { font-size: .85rem; color: var(--text-med); margin-bottom: 12px; }
.prod-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.prod-price span { font-size: .85rem; color: var(--text-light); font-weight: 400; }
.prod-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: rgba(37,211,102,.1);
  color: #128C7E;
  font-weight: 700;
  font-size: .85rem;
  margin-top: 12px;
  transition: var(--trans);
  border: 1px solid rgba(37,211,102,.2);
}
.prod-wa-btn:hover { background: #25D366; color: white; }

/* Video Section */
.video-sec { background: var(--primary-dark); overflow: hidden; }
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-content h2 { color: white; margin-bottom: 14px; }
.video-content p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.video-content .sec-badge { background: rgba(201,168,76,.15); color: var(--gold-light); border-color: rgba(201,168,76,.3); }
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: var(--trans);
}
.video-thumb:hover { background: rgba(255,255,255,.08); }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: var(--trans);
}
.video-thumb:hover .play-btn { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }
.video-thumb p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* Social Section */
.social-sec { background: white; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.social-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--trans);
  position: relative;
}
.social-card:hover { transform: scale(1.04); }
.social-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  transition: var(--trans);
}
.social-card:hover::after { background: rgba(0,0,0,.1); }
.soc-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.soc-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--trans);
  color: white;
}
.soc-link-btn:hover { transform: translateY(-3px); }
.soc-fb  { background: #1877F2; }
.soc-ig  { background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.soc-tt  { background: #000000; }
.soc-yt  { background: #FF0000; }

/* Testimonials */
.testi-sec { background: var(--off-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21,101,192,.06);
}
.testi-stars { color: #FFB800; font-size: 1rem; margin-bottom: 16px; }
.testi-text { color: var(--text-med); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}
.testi-name { font-weight: 700; font-size: .95rem; }
.testi-loc { font-size: .8rem; color: var(--text-light); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #A8820A 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: white; font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--gold);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: white;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-white-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }

/* ====================================================
   PRODUITS PAGE
   ==================================================== */
.products-page { background: var(--off-white); }
.prod-filter-bar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.prod-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--light-blue);
  color: var(--primary);
}
.prod-filter-btn.active,
.prod-filter-btn:hover { background: var(--primary); color: white; }

.pricing-section { margin-top: 60px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px;
  color: white;
  text-align: center;
}
.pricing-header h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pricing-header p { font-size: .85rem; opacity: .8; }
.pricing-body { padding: 28px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-blue);
}
.price-row:last-child { border-bottom: none; }
.price-label { font-weight: 600; color: var(--text-med); }
.price-amount { font-family:'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.price-usd { font-size: .8rem; color: var(--text-light); margin-left: 6px; }

/* Flacons Grid */
.flacons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flacon-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  text-align: center;
}
.flacon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flacon-img {
  height: 180px;
  background: linear-gradient(135deg, var(--off-white), #E8F0FE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.flacon-info { padding: 20px; }
.flacon-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.flacon-info .price-range { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }

/* ====================================================
   COMMANDER PAGE
   ==================================================== */
.order-page { background: var(--off-white); padding: 50px 0 90px; }
.order-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.order-steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.order-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 2px;
  background: var(--light-blue);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--trans);
}
.step-item.active .step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(21,101,192,.4);
}
.step-item.done .step-num {
  background: #25D366;
  border-color: #25D366;
  color: white;
}
.step-lbl { font-size: .78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; text-align: center; }
.step-item.active .step-lbl { color: var(--primary); }

.order-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.order-card-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.order-card-header .step-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}
.order-card-header h3 { color: white; font-size: 1.2rem; margin-bottom: 2px; }
.order-card-header p { color: rgba(255,255,255,.7); font-size: .85rem; }
.order-card-body { padding: 32px; }

.selected-parfum-preview {
  display: none;
  background: var(--light-blue);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  flex-direction: column;
  gap: 4px;
}
.selected-parfum-preview.show { display: flex; }
.selected-parfum-preview .pf-label { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 700; }
.selected-parfum-preview .pf-name { font-size: 1.1rem; font-weight: 800; color: var(--primary); }

.qty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.qty-option {
  display: none;
}
.qty-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  border-radius: 12px;
  border: 2px solid var(--light-blue);
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
}
.qty-label:hover { border-color: var(--primary); background: var(--light-blue); }
.qty-option:checked + .qty-label {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(21,101,192,.3);
}
.qty-label .qty-val { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.qty-label .qty-price { font-size: .72rem; opacity: .7; }

.form-section {
  display: none;
  animation: slideDown .3s ease;
}
.form-section.show { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.order-summary {
  background: var(--light-blue);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(21,101,192,.15);
}
.order-summary h4 { color: var(--primary); margin-bottom: 12px; font-size: 1rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: 8px;
}
.summary-row:last-child { margin-bottom: 0; border-top: 1px solid rgba(21,101,192,.15); padding-top: 10px; font-weight: 700; }

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(140deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}
.contact-info-card h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.contact-info-card > p {
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  font-size: .95rem;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-detail-txt .lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); font-weight: 700; margin-bottom: 4px; }
.contact-detail-txt .val { color: white; font-size: .95rem; line-height: 1.5; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
}
.map-wrap iframe { width: 100%; height: 300px; border: none; display: block; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 28px; font-size: 1.5rem; }

/* ====================================================
   À PROPOS PAGE
   ==================================================== */
.about-mission {
  background: linear-gradient(140deg, var(--primary-dark), var(--primary));
  padding: 90px 0;
  text-align: center;
}
.about-mission h2 { color: white; font-size: clamp(1.9rem,4vw,3rem); margin-bottom: 16px; }
.about-mission p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 680px; margin: 0 auto 40px; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-dark); }
.value-card p { color: var(--text-med); font-size: .88rem; }

.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--light-blue);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(21,101,192,.2);
}
.timeline-content {
  flex: 1;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.timeline-year {
  font-family:'Playfair Display',serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.timeline-content h3 { margin-bottom: 8px; }
.timeline-content p { color: var(--text-med); font-size: .9rem; }
.timeline-empty { flex: 1; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.team-info { padding: 24px; }
.team-info h3 { margin-bottom: 4px; font-size: 1.05rem; }
.team-info p { color: var(--text-light); font-size: .85rem; }

/* ====================================================
   BLOG PAGE
   ==================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary);
  color: white;
}
.blog-info { padding: 22px; }
.blog-meta { font-size: .78rem; color: var(--text-light); margin-bottom: 10px; }
.blog-info h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-info h3 a { color: var(--text-dark); transition: var(--trans); }
.blog-info h3 a:hover { color: var(--primary); }
.blog-excerpt { font-size: .87rem; color: var(--text-med); margin-bottom: 16px; line-height: 1.6; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: .85rem;
  transition: var(--trans);
}
.read-more:hover { gap: 10px; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 300px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .video-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; gap: 16px; }
  .timeline-empty { display: none; }
  .timeline-dot { position: relative; left: auto; transform: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .section-pad { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .flacons-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .qty-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-float-badge { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-intro-img { height: 280px; }
}

@media (max-width: 480px) {
  .qty-grid { grid-template-columns: repeat(2, 1fr); }
  .flacons-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .soc-links { flex-direction: column; align-items: center; }
}
