:root {
  --primary-dark: #573425;
  --primary-gold: #7d7000;
  --bg-soft: #fff6ea;
  --accent-beige: #c2b19c;
  --white: #ffffff;
  --black: #000000;
}

.top-banner {
    background: #000;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.step-circle {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.bg-white { background-color: #ffffff; }

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 18s linear infinite;
}

.marquee span {
    margin: 0 50px;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ================= HERO LANDING ================= */

/* ===== HERO SECTION ===== */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("images/hero-lifestyle.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay doux */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.05) 70%,
        rgba(0,0,0,0) 100%
    );
}

/* Contenu au-dessus */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.benefit-item i {
    color: #d4af37;
    margin-right: 10px;
}

.hero-btn {
    background-color: #d4af37;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    margin-top: 1rem;
}

/* Flacon flottant */
.hero-bottle {
    position: absolute;
    right: 8%;
    bottom: 0;
    height: 80%;
    z-index: 3;
    pointer-events: none;
}

.hero-btn:hover {
    background: #2e2e2e;
    color: white;
}

.hero-reviews {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-bottle {
        position: relative;
        right: auto;
        height: 300px;
        margin: 2rem auto 0;
        display: block;
    }

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

    .hero-overlay {
        background: rgba(0,0,0,0.5);
    }
}


    .stock-indicator {
        font-size: 0.95rem;
        font-weight: 500;
    }




.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.benefit-icon {
    color: #7d7000;
    font-size: 1.2rem;
    margin-right: 8px;
}



.hero-btn:hover {
    background-color: #2e2e2e;
    color: #fff;
}



/* Animation flottante */

.floating-image {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ================= AUTHORITY ================= */

.authority-section {
    background-color: #573425;
}

.authority-section h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.authority-section p {
    color: #c2b19c;
}

.authority-card {
    background-color: #f8f5f1;
}

.authority-icon {
    color: #573425;
}

.authority-divider {
    border-color: rgba(255,255,255,0.1);
}

.hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.benefit-gold {
    color: #7d7000;
}

/* ================= STEPS ================= */
.step-header {
    gap: 20px; /* espace propre et stable */
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f5f1;
    border: 1px solid #7d7000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0; /* empêche l’écrasement */
}

.step-number {
    color: #7d7000;
    font-weight: 400; /* un peu plus stable visuellement */
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    line-height: 1; /* important pour centrage vertical */
    transform: translateY(-1px);
}



.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

body {
    background-color: #fafafa;
}
.navbar-brand {
    font-weight: bold;
    color: #d86c7f !important;
}

.navbar .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.navbar .btn-outline-light:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
}

/* Pour les cartes d'ingrédients et avantages */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.1) !important;
}

/* Pour les badges et boutons */
.btn-primary {
    background-color: var(--primary-dark) !important;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #6b3f2f !important; /* Version plus foncée */
}

.btn-confirm {
    background-color: var(--primary-dark);
    border: none;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-width: 2px;
}

.social-btn:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Style de la navigation */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
    font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Pour l'image principale */
.product-main-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 2rem 3rem rgba(0,0,0,0.15) !important;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.product-placeholder {
    width: 80px;
    height: 80px;
}

@keyframes highlight {
    0% {
        background-color: rgba(215, 108, 127, 0.2);
        transform: scale(1);
    }
    50% {
        background-color: rgba(215, 108, 127, 0.5);
        transform: scale(1.05);
    }
    100% {
        background-color: transparent;
        transform: scale(1);
    }
}

.total-highlight {
    animation: highlight 0.3s ease;
}

/* Animations au scroll */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
[data-delay="200"].animated {
    transition-delay: 0.2s;
}

/* Effet hover sur le bouton */
.btn-outline-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #7d7000;
    border-color: #7d7000;
    color: #fff;
}

/* Ombre douce sur l'image */
.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

/* Animation flottante très subtile */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.floating-image {
    animation: float 6s ease-in-out infinite;
}

/* === QUANTITÉ INPUT === */

.quantity-group {
    max-width: 150px;
}

.quantity-input {
    background-color: #fff;
}

/* contact.html */
.btn-outline-dark {
    transition: all 0.3s ease;
}
.btn-outline-dark:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.rounded-circle {
    transition: all 0.3s ease;
}
.rounded-circle:hover {
    transform: scale(1.1);
}
.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(125, 112, 0, 0.25);
}

/* histoire.html */
.hero-histoire {
position: relative;
}

/* ================= HISTOIRE HERO ================= */

.hero-histoire {
    height: 100vh;
    background-image: linear-gradient(
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.25)
    ),
    url('images/histoire-hero.jpg');

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */

.histoire-section-light {
    background-color: #f9f5f0;
}

.histoire-title-brown {
    color: #573425;
    font-family: 'Playfair Display', serif;
}

.histoire-section-beige {
    background-color: #e8e0d5;
}

.histoire-title-gold {
    color: #7d7000;
    font-family: 'Playfair Display', serif;
}

.histoire-icon-gold {
    color: #7d7000;
}

.histoire-gradient {
    background: linear-gradient(
        135deg,
        #fff6ea 0%,
        #e8e0d5 100%
    );
}

.histoire-text {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #4a4a4a;
}

.histoire-dark {
    background-color: #573425;
}

.histoire-quote {
    font-family: 'Playfair Display', serif;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

/* produit.html */
/* ================= PRODUCT PAGE ================= */

.product-main-image {
    max-height: 400px;
    width: auto;
}

.product-gallery-img {
    object-fit: cover;
    cursor: pointer;
}

.accordion-button::after {
    background-image: none !important;
    font-family: "bootstrap-icons";
    content: "\F4FE"; /* bi-plus */
    font-size: 1.2rem;
    color: var(--primary-gold);
    transform: none;
}
.accordion-button:not(.collapsed)::after {
    content: "\F2EA"; /* bi-dash */
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}
.sticky-cta {
    transition: opacity 0.3s;
}

.btn-primary-dark {
    background-color: var(--primary-dark);
    border: none;
}

.btn-primary-dark:hover {
    background-color: #3e2417; /* un peu plus foncé */
}

.product-description {
    line-height: 1.7;
}

.icon-gold-small {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.icon-circle-60 {
    width: 60px;
    height: 60px;
}

.section-soft-rounded {
    background-color: var(--bg-soft);
    border-radius: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.product-placeholder-image {
    object-fit: contain;
    max-height: 100%;
    width: 100%;
}





.product-page-container {
margin-top: -0.8rem;
}
@media (max-width: 768px) {
    .product-page-container {
        margin-top: -0.3rem;
    }
}

.step-mini-circle {
    width: 30px;
    height: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--primary-gold);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.cta-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #8B5E3C 100%);
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
}

.logo-main-image {
    max-height: 50px;
    width: auto;
}

.bg-footer {
    background-color: rgba(0,0,0,0.05);
}

.bg-overlay {
    background-color: rgba(0,0,0,0.3);
}

.alert-soft-gold {
    background-color: var(--bg-soft);
    border-left: 4px solid var(--primary-gold);
}


/* ================= CONTACT HERO ================= */

.contact-hero {
    height: 60vh;
    min-height: 500px;
    background-image: url('images/contact-hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Overlay sombre */
.bg-overlay {
    background: rgba(0, 0, 0, 0.45);
}

/* Contenu au-dessus */
.contact-hero .container {
    z-index: 2;
    position: relative;
}

/* Titre */
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Paragraphe */
.contact-hero p {
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.contact-card {
    background-color: #f8f5f1;
}

.contact-icon {
    width: 50px;
    height: 50px;
}

.social-btn {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
}

.contact-submit-btn {
    background-color: var(--primary-dark);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: var(--primary-gold);
}

.contact-cta {
    background-color: #f8f5f1;
}

/* success-icon */
.success-icon {
    font-size: 5rem;
    color: #28a745;
    animation: popIn 0.6s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= FAQ ================= */

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

/* ================= mentions ================= */
.section-title {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ================= footer ================= */
.footer a:hover {
    color: var(--primary-gold) !important;
    transition: color 0.3s ease;
}
.footer .btn-outline-light:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
}

.footer-title {
    letter-spacing: 1px;
}


/* Classes utilitaires personnalisées */
.bg-primary-dark { background-color: var(--primary-dark); }
.text-primary-gold { color: var(--primary-gold); }
.bg-soft { background-color: var(--bg-soft); }
.bg-beige { background-color: var(--accent-beige); }
.text-primary-dark { color: var(--primary-dark); }
.text-dark-custom { color: #2e2e2e; }
.text-soft { color: #6c6c6c; }
.progress-thin { height: 5px; }
.progress-25 { width: 25%; }
.progress-50 { width: 50%; }
.progress-75 { width: 75%; }
.progress-100 { width: 100%; }