 .terms-consent {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 1080;
    width: min(calc(100% - 3rem), 290px);
    max-height: min(82vh, 500px);
    display: flex;
    flex-direction: column;
    background: rgba(3, 10, 8, 0.58);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff;
    overflow: hidden;
}
.terms-consent-header {
    padding: 1.1rem 1.25rem 0.6rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}
.terms-consent-header .terms-icon {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 0.3rem;
}
.terms-consent-header h6 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
}
.terms-consent-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}
.terms-consent-body::-webkit-scrollbar { width: 4px; }
.terms-consent-body::-webkit-scrollbar-track { background: transparent; }
.terms-consent-body::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 2px; }
.terms-consent-body p { margin-bottom: 0.5rem; }
.terms-consent-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.6rem;
}
.terms-consent-links a {
    color: #f3e309;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.2s;
}
.terms-consent-links a:hover { opacity: 0.8; }
.terms-consent-footer {
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    flex-shrink: 0;
}
.terms-consent-footer button {
    width: 100%;
    border: 0;
    padding: 0.55rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.85), rgba(212, 175, 55, 0.6));
    color: #030a08;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    letter-spacing: 0.3px;
}
.terms-consent-footer button:hover {
    background: linear-gradient(135deg, #d4af37, rgba(212, 175, 55, 0.8));
    transform: translateY(-1px);
}
@media (max-width: 480px) {
    .terms-consent {
        left: 0.75rem;
        bottom: 0.75rem;
        width: calc(100% - 1.5rem);
        max-height: 70vh;
        border-radius: 14px;
    }
}
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    pointer-events: none;
}
.product-badges .badge-item,
.product-image-box .new-badge,
.product-image-box .stock-badge,
.product-image-box .offer-badge {
    padding: 4px 8px;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    line-height: 1.2;
    display: inline-block;
}
.product-badges .new-badge,
.product-image-box .new-badge { background: #dc3545; }
.product-badges .stock-badge,
.product-image-box .stock-badge { background: #6c2525; }
.product-badges .offer-badge,
.product-image-box .offer-badge { background: #d4af37; }
.product-card .product-body form { margin-top: .5rem; }
.product-card .btn-explore[disabled] { opacity: .55; cursor: not-allowed; background: #6c757d; border-color: #6c757d; }
:root {
    --primary-green: #1c683b;
    --primary-green-dark: #155430;
    --primary-green-gradient: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}
/* === FOOTER VENUS LUNA === */
.venus-footer {
    background: var(--primary-green-gradient);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* === AJUSTEMENTS RESPONSIVE GLOBAUX === */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animation d’apparition */
.footer-animate {
    animation: fadeUp 1.2s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titres */
.footer-title {
    color: #f6d84c; /* jaune */
    letter-spacing: 1px;
}

.footer-subtitle {
    color: #ffffff;
    position: relative;
}

.footer-subtitle::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #f6d84c;
    display: block;
    margin-top: 6px;
}

/* Texte */
.footer-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Liens */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f6d84c;
    padding-left: 6px;
}

/* Icônes sociales */
.social-icons a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #f6d84c;
    color: #155430;
    transform: scale(1.15) rotate(8deg);
}

/* Séparateur */
.footer-separator {
    border-color: rgba(255, 255, 255, 0.25);
}

/* Bas du footer */
.footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}


/* ================= NAVBAR VENUS LUNA ================= */

.custom-navbar {
    background: var(--primary-green-gradient);
    padding: 0.4rem 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: all 0.4s ease;
}

.custom-navbar.hidden {
    transform: translateY(-100%);
}

/* Animation apparition */
.nav-animate {
    animation: slideDown 0.9s ease-in-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.navbar-logo {
    height: 85px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    object-fit: cover;
}

.navbar-logo:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* Liens */
.nav-link {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #f6d84c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #f6d84c !important;
}

.nav-link:hover::after {
    width: 70%;
}

/* Panier */
.cart-icon-wrapper {
    position: relative;
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cart-icon-wrapper:hover {
    transform: scale(1.15);
    color: #f6d84c;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f6d84c;
    color: #155430;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 50%;
}

/* Utilisateur */
.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.user-dropdown-toggle:hover {
    background: #f6d84c;
    color: #155430;
}

/* Avatar */
.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Connexion / Inscription */
.login-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.btn-register, .btn-main, .btn-submit, .btn-gold-custom, .btn-commander {
    background: #f6d84c;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover, .btn-main:hover, .btn-submit:hover, .btn-gold-custom:hover, .btn-commander:hover {
    background: transparent;
    color: #f6d84c;
    border: 2px solid #f6d84c;
    transform: translateY(-2px);
}

/* Déconnexion */
.logout-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-weight: bold;
}

/* ================= ABOUT PAGE VENUS LUNA ================= */

.about-section {
    background: var(--primary-green-gradient);
    color: white;
}

/* Titres */
.about-title {
    color: #f6d84c;
    font-family: 'Playfair Display', serif;
}

.about-subtitle {
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

/* Divider */
.divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, #f6d84c, transparent);
}

/* Section title */
.section-title {
    color: #f6d84c;
    font-weight: bold;
}

/* Image */
.about-image {
    border: 2px solid rgba(246, 216, 76, 0.4);
    transition: transform 0.6s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

/* Carte créateur */
.creator-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(246, 216, 76, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.creator-role {
    color: #f6d84c;
    font-size: 0.95rem;
}

/* Liens contact */
.contact-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #f6d84c;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-link i {
    margin-right: 6px;
}

.contact-link:hover {
    background: #f6d84c;
    color: #155430;
}

/* ================= ANIMATIONS ================= */

.fade-up {
    animation: fadeUp 1.2s ease;
}

.slide-left {
    animation: slideLeft 1.2s ease;
}

.slide-right {
    animation: slideRight 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}




/* ================= CONFIDENTIALITÉ ================= */

.privacy-section {
    background: var(--primary-green-gradient);
    color: white;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    border-top: 6px solid #f6d84c;
}

/* Titres */
.privacy-title {
    color: #155430;
}

.intro-text {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Blocs */
.privacy-block {
    margin-bottom: 3rem;
}

.privacy-block h4 {
    color: #f6d84c;
    border-bottom: 2px solid rgba(246, 216, 76, 0.4);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.privacy-block p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Texte important */
.privacy-block .strong {
    font-weight: bold;
    color: #155430;
}

.privacy-block .note {
    font-style: italic;
    color: #374151;
}

/* Animation */
.fade-up {
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ================= CONTACT PAGE ================= */

.contact-section {
    background: var(--primary-green-gradient);
    color: white;
}

/* Titres */
.contact-title {
    color: #f6d84c;
}

.contact-subtitle {
    opacity: 0.85;
}

/* Divider */
.divider {
    width: 110px;
    height: 3px;
    background: linear-gradient(to right, transparent, #f6d84c, transparent);
}

/* Cartes */
.contact-card {
    background: rgba(255,255,255,0.95);
    color: #1f2937;
    border-radius: 20px;
    border: 1px solid rgba(246, 216, 76, 0.35);
    box-shadow: 0 20px 35px rgba(0,0,0,0.18);
}

/* Titres internes */
.section-title {
    color: var(--primary-green);
    font-weight: bold;
}

/* Coordonnées */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #f6d84c;
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-item h6 {
    margin: 0;
    font-weight: bold;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Formulaire */
.contact-form label {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f6d84c;
    outline: none;
    box-shadow: 0 0 8px rgba(246, 216, 76, 0.3);
}

/* Bouton */
.btn-submit {
    background: #f6d84c;
    color: #155430;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Animations */
.fade-up {
    animation: fadeUp 1.1s ease;
}

.slide-left {
    animation: slideLeft 1.1s ease;
}

.slide-right {
    animation: slideRight 1.1s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}



/* ===== VARIABLES (si pas déjà définies dans base.html) ===== */
:root {
    --bleu-nuit: #1c2541;
    --or-sombre: #d4af37;
    --fond-doux: #fcfbf7;
}

/* ===== SECTION FAQ ===== */
section {
    background: linear-gradient(180deg, #fcfbf7 0%, #f7f5ef 100%);
    color: var(--primary-green);
}

/* ===== CONTENEUR PRINCIPAL ===== */
.container, .container-fluid {
    --bs-gutter-x: 1.5rem;
    max-width: 100% !important;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

/* ===== TITRES ===== */
h2 {
    letter-spacing: 1px;
}

p.text-muted {
    font-size: 1.05rem;
}

/* ===== ACCORDION GLOBAL ===== */
.accordion {
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* ===== ITEMS ===== */
.accordion-item {
    background: transparent;
    border: none;
}

/* ===== BOUTON FAQ ===== */
.accordion-button {
    background: linear-gradient(90deg, #ffffff, #fbfaf6);
    color: var(--bleu-nuit);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #fff8e1, #ffffff);
    color: var(--or-sombre);
    box-shadow: inset 0 -1px 0 rgba(212, 175, 55, 0.4);
}

/* Icône accordéon */
.accordion-button::after {
    filter: brightness(0.6);
}

/* ===== HOVER ===== */
.accordion-button:hover {
    transform: translateX(4px);
    background: #fffdf5;
}

/* ===== CONTENU ===== */
.accordion-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    background-color: #ffffff;
}

/* ===== EFFET VOLUME INTERNE ===== */
.accordion-body {
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.03);
}

/* ===== ESPACEMENT ===== */
.accordion-button {
    padding: 1.5rem 1.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
    }
}

/* Grille produits responsive */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-grid-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== FIX NAVBAR OVERLAP ===== */
/* ── NOUVELLE HAUTEUR NAVBAR AVEC TOPBAR+HEADER ── */
:root {
    --navbar-height: 92px;
    --navbar-height-mobile: 84px;
    --navbar-green: #6aaa00;
    --mega-bg: #c8e06e;
    --mega-title: #1a3d00;
    --mega-link: #2d5a00;
    --venus-gold: #d4af37;
}

.main-content {
    padding-top: var(--navbar-height) !important;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: var(--navbar-height-mobile) !important;
    }
}

/* Navbar active */
.custom-navbar {
    display: flex !important;
}

/* ================= PROTECTION IMAGES (WATERMARK) ================= */

/* Empêche le clic droit, la sélection et le drag sur les images protégées */
.protected-image {
    /* On retire pointer-events: none car il empêche les listeners JS
       (contextmenu, dragstart) de fonctionner sur l'image elle-même.
       La protection repose sur le JS + user-select + user-drag. */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* ================= FIN PROTECTION IMAGES ================= */











 