/* ============================================================
   BOUTIQUE.CSS — Vieillissement 2 Rêve
   Styles partagés pour toutes les pages
   ============================================================ */
 
/* #VARIABLES */
:root {
    --forest:        #1A3A2A;
    --forest-light:  #2D5A3D;
    --forest-xlight: #EBF2ED;
    --gold:          #C4973A;
    --gold-light:    #F0C96A;
    --cream:         #F7F4EE;
    --cream-dark:    #EDE8DF;
    --dark:          #0C1C12;
    --text:          #2A3B30;
    --text-light:    #7A8C80;
    --white:         #FFFFFF;
    --red:           #C0392B;
    --sand:          #F9F8F6;
    --beige:         #EFECE5;
    --sage:          #8F9E82;
    --olive:         #6B7A58;
    --brand-text:    #4A463F;
    --brand-title:   #2D3728;
    --gold-hover:    #B5952F;
   
    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'DM Sans', sans-serif;
   
    --shadow-sm: 0 2px 10px rgba(10,30,18,.07);
    --shadow-md: 0 8px 32px  rgba(10,30,18,.10);
    --shadow-lg: 0 24px 64px rgba(10,30,18,.14);
   
    --radius:    14px;
    --radius-lg: 24px;
    --radius-xl: 36px;
   
    --transition: .28s cubic-bezier(.4,0,.2,1);
  }
   
  /* #RESET */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a  { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
   
  /* #TYPOGRAPHY */
  h1,h2,h3,h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -.01em;
    color: var(--dark);
  }
  h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
  h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
  h4 { font-size: 1.2rem; font-weight: 600; }
   
  /* #LAYOUT */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section    { padding: 96px 0; }
  .section-sm { padding: 64px 0; }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 500;
    text-align: center;
    color: var(--dark);
    margin-bottom: 12px;
  }
  .section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: .95rem;
    margin-bottom: 56px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
   
  /* #NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(249, 248, 246, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links .nav-cta {
    background: var(--forest);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
  }
  .nav-links .nav-cta:hover { background: var(--forest-light); color: var(--white); }

/* Révèle au scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
  
 
   
  /* #TICKER */
  .ticker {
    background: var(--forest);
    color: var(--gold-light);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 0;
    overflow: hidden;
  }
  .ticker-inner {
    display: flex;
    animation: ticker-scroll 28s linear infinite;
    white-space: nowrap;
  }
  .ticker-item { padding: 0 48px; }
  @keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
   
  /* #BUTTONS */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 40px;
    padding: 16px 36px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26,58,42,.3);
  }
  .btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26,58,42,.4);
  }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(196,151,58,.35);
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,151,58,.45);
  }
  .btn-outline {
    border: 2px solid var(--forest);
    color: var(--forest);
    background: transparent;
  }
  .btn-outline:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
  }
  .btn-lg { padding: 20px 48px; font-size: 1rem; }
   
  /* #BADGE PROMO */
  .badge-promo {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .badge-new {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
   
  /* #PRICE */
  .price-wrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
  .price-current {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--forest);
  }
  .price-old {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
  }
  .price-saving {
    font-size: .82rem;
    font-weight: 600;
    color: var(--red);
  }
   
  /* #STARS */
  .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
  .stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .stars-count { font-size: .85rem; color: var(--text-light); }
   
  /* #PRODUCT CARD (homepage) */
  .product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
  }

  .products-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.products-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .product-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream);
  }
  .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  .product-card:hover .product-card-img img { transform: scale(1.05); }
  .product-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-card-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark);
    margin: 8px 0 4px;
    line-height: 1.3;
  }
  .product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0 16px;
  }
  .product-card-price .current { font-size: 1.25rem; font-weight: 700; color: var(--forest); }
  .product-card-price .old     { font-size: .85rem; color: var(--text-light); text-decoration: line-through; }
  .product-card .btn { margin-top: auto; width: 100%; }

  
   
  /* #PACK CARD */
  .pack-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--cream-dark);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .pack-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }
  .pack-card.featured {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
  }
  .pack-card.featured h3,
  .pack-card.featured .pack-sub,
  .pack-card.featured .pack-includes li { color: var(--white); }
  .pack-card.featured .pack-includes li::before { background: var(--gold-light); }
  .pack-featured-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-bottom-left-radius: 12px;
  }
  .pack-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .pack-sub { font-size: .88rem; color: var(--text-light); margin-bottom: 20px; }
  .pack-includes { margin-bottom: 20px; }
  .pack-includes li {
    font-size: .9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
  }
  .pack-includes li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--forest);
  }
  .pack-price-block { margin-bottom: 20px; }
  .pack-price-current {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--forest);
  }
  .pack-card.featured .pack-price-current { color: var(--gold-light); }
  .pack-economy {
    font-size: .82rem;
    font-weight: 600;
    color: var(--red);
    margin-top: 4px;
  }
  .pack-card.featured .pack-economy { color: var(--gold-light); }
   
  /* #BENEFITS */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }
  .benefit-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
  }
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
  }
  .benefit-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
  }
  .benefit-desc { font-size: .88rem; color: var(--text-light); line-height: 1.6; }
   
  /* #REVIEWS */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
  }
  .review-text {
    font-size: .93rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
    font-style: italic;
  }
  .review-author {
    font-size: .82rem;
    font-weight: 600;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  .review-label {
    font-size: .75rem;
    color: var(--text-light);
    margin-top: 2px;
  }
   
  /* #FAQ */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--cream-dark);
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
  }
  .faq-question:hover { color: var(--forest); }
  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
    transition: all var(--transition);
    color: var(--forest);
  }
  .faq-item.open .faq-icon {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
  }
  .faq-answer-inner {
    padding: 0 0 20px;
    font-size: .93rem;
    color: var(--text-light);
    line-height: 1.8;
  }
  .faq-item.open .faq-answer { max-height: 400px; }
   
   
  /* #FOOTER */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 56px 0 32px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand { }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .footer-brand-desc { font-size: .85rem; line-height: 1.7; max-width: 280px; }
  .footer-col h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
  }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: .8rem;
    flex-wrap: wrap;
  }
  .footer-bottom a { color: rgba(255,255,255,.5); }
  .footer-bottom a:hover { color: var(--gold-light); }
   
  /* #PRODUCT PAGE - GALLERY */
  .product-hero {
    padding: 64px 0;
    background: var(--white);
  }
  .product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .gallery-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    margin-bottom: 12px;
  }
  .gallery-main img,
  .gallery-main video {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .gallery-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .gallery-thumb {
    width: 70px; height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    background: var(--cream);
    flex-shrink: 0;
  }
  .gallery-thumb.active { border-color: var(--forest); }
  .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .product-info { }
  .product-info-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .product-info h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .product-info-desc {
    font-size: .93rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .product-buy-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
  }
  .product-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-light);
    margin-top: 16px;
  }
  .product-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .product-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text);
  }
  .product-perk-icon { font-size: 1rem; }
   
  /* #PRODUCT FEATURES SECTION */
  .features-section { background: var(--cream); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
  }
  .feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
  }
  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
  .feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .feature-desc { font-size: .88rem; color: var(--text-light); line-height: 1.65; }
   
  /* #RELATED PRODUCTS */
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }
   
  /* #PACK PAGE */
  .pack-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    color: var(--white);
  }
  .pack-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .pack-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
  }
  .pack-hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .pack-hero-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 4px;
  }
  .pack-hero-old {
    font-size: 1rem;
    color: rgba(255,255,255,.5);
    text-decoration: line-through;
    margin-bottom: 8px;
  }
  .pack-hero-save {
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 24px;
  }
  .pack-contents {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    padding: 32px;
  }
  .pack-contents h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  .pack-content-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .pack-content-item:last-child { border-bottom: none; }
  .pack-content-icon { font-size: 1.4rem; }
  .pack-content-name {
    font-weight: 500;
    color: var(--white);
    font-size: .93rem;
  }
  .pack-content-value {
    margin-left: auto;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
  }
   
  /* #ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
   
  /* #MOBILE */
  @media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .product-hero-grid,
    .pack-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .pack-card { padding: 24px 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2rem; }
  }