/* ============================================
   ALREHAB PERFUMES - SOFT MODERN THEME
   Palette douce, moderne et relaxante pour le client
   ============================================ */

/* Reset et styles globaux pour un affichage concentré */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    max-width: 100vw;
}

body {
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Couleurs principales - fond clair, texte noir */
    --alrehab-primary: #FFFFFF;        /* Fond blanc (barres) */
    --alrehab-primary-dark: #F3F4F6;   /* Gris très clair pour les hovers */
    --alrehab-primary-light: #F9FAFB;  /* Fond très doux */
    
    --alrehab-secondary: #919191;      /* Gris moyen pour les accents (boutons, etc.) */
    --alrehab-secondary-dark: #6B7280; /* Gris plus foncé pour les hovers */
    --alrehab-secondary-light: #E5E7EB;/* Gris très clair */
    
    --alrehab-accent: #A855F7;         /* Lavande moderne pour quelques détails */
    --alrehab-accent-light: #E9D5FF;   /* Lavande claire */
    
    /* Neutres clairs pour un site lumineux */
    --alrehab-dark: #0F172A;           /* Pour certains textes/titres */
    --alrehab-gray: #6B7280;           /* Gris neutre */
    --alrehab-light: #F9FAFB;          /* Fond très clair (pages) */
    --alrehab-white: #FFFFFF;
    
    /* Couleurs de statut harmonisées */
    --alrehab-success: #22C55E;
    --alrehab-warning: #FBBF24;
    --alrehab-danger: #EF4444;
    --alrehab-info: #0EA5E9;
    
    /* Surcharge Bootstrap - Remplacement orange par vert turquoise */
    --bs-primary: #20c997 !important;
    --bs-secondary: #20c997 !important;
    
    /* Ombres légères pour sensation de douceur */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 12px 40px rgba(15, 23, 42, 0.16);
    
    /* Transitions fluides */
    --transition: all 0.25s ease-out;
}

/* Application des couleurs principales */
.bg-primary,
.btn-primary {
    background-color: #20c997 !important;
    border-color: #20c997 !important;
    color: #FFFFFF !important;
}

.bg-primary:hover,
.btn-primary:hover {
    background-color: #1ab885 !important;
    border-color: #1ab885 !important;
    color: #FFFFFF !important;
}

.text-primary {
    color: #20c997 !important;
}

.bg-secondary,
.btn-secondary {
    background-color: var(--alrehab-secondary) !important;
    border-color: var(--alrehab-secondary) !important;
    color: var(--alrehab-dark) !important;
}

.bg-secondary:hover,
.btn-secondary:hover {
    background-color: var(--alrehab-secondary-dark) !important;
    border-color: var(--alrehab-secondary-dark) !important;
}

.text-secondary {
    color: var(--alrehab-secondary) !important;
}

/* ===== Container Global - Ajustement pour affichage concentré ===== */
.container,
.container-fluid {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* ===== Navbar Unifiée - Fixe en haut, reste toujours visible avec effet au scroll ===== */
.unified-navbar {
    background: #FFFFFF !important;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    will-change: background, box-shadow, border-radius;
    padding: 10px 0 !important;
}

/* Style au scroll : Design moderne avec meilleur contraste et visibilité */
.unified-navbar.scrolled {
    background: #FFFDF2 !important; /* Fond crème */
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important; /* Bordure subtile */
    border-radius: 0 0 20px 20px !important;
    box-shadow: 0 8px 32px rgba(255, 253, 242, 0.2),
                0 4px 16px rgba(0, 0, 0, 0.1) !important;
    padding: 12px 0 !important;
    animation: navbarStyleChange 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Animation moderne pour le changement de style */
@keyframes navbarStyleChange {
    0% {
        transform: translateY(-10px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(2px);
        box-shadow: 0 8px 24px rgba(255, 253, 242, 0.25),
                    0 4px 12px rgba(0, 0, 0, 0.12);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Conteneur moderne avec fond crème visible au scroll */
.unified-navbar.scrolled .unified-navbar-container {
    background: #FFFDF2 !important; /* Fond crème */
    border-radius: 18px !important;
    padding: 12px 25px !important;
    margin: 0 auto !important;
    max-width: 95% !important;
    box-shadow: 0 6px 24px rgba(255, 253, 242, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    animation: containerGlow 0.5s ease-out 0.2s both !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

/* Animation moderne pour le conteneur */
@keyframes containerGlow {
    0% {
        transform: scale(0.98);
        opacity: 0.9;
        box-shadow: 0 2px 12px rgba(255, 253, 242, 0.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 6px 24px rgba(255, 253, 242, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Menu au scroll : style moderne avec meilleur contraste */
.unified-navbar.scrolled .unified-menu .nav-link {
    color: #0F172A !important; /* Noir pour contraste avec fond crème */
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 10px 20px !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
}

.unified-navbar.scrolled .unified-menu .nav-link:hover {
    color: #0F172A !important;
    background: rgba(0, 0, 0, 0.05) !important; /* Fond sombre semi-transparent */
    border-radius: 12px !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.unified-navbar.scrolled .unified-menu .nav-link.active {
    background: rgba(0, 0, 0, 0.08) !important; /* Fond sombre plus visible */
    color: #0F172A !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    font-weight: 800 !important;
}

/* Recherche au scroll : style moderne avec meilleur contraste - taille réduite */
.unified-navbar.scrolled .unified-search-form {
    background: transparent !important;
    min-width: 180px !important; /* Réduit de 250px */
    max-width: 220px !important; /* Réduit de 350px */
}

.unified-navbar.scrolled .unified-search-form .d-flex {
    background: rgba(255, 255, 255, 0.95) !important; /* Blanc presque opaque */
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important; /* Bordure blanche visible */
    border-radius: 20px !important; /* Réduit de 25px */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    padding: 0.25rem 0.5rem !important; /* Padding réduit */
}

.unified-navbar.scrolled .unified-search-form .d-flex:hover {
    background: #FFFFFF !important; /* Blanc solide au hover */
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px) !important;
}

.unified-navbar.scrolled .unified-search-form input {
    background: transparent !important;
    color: #0F172A !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important; /* Taille réduite */
    padding: 0.3rem 0.5rem !important; /* Padding réduit */
}

.unified-navbar.scrolled .unified-search-form input::placeholder {
    color: rgba(15, 23, 42, 0.6) !important; /* Placeholder plus visible */
    font-size: 0.75rem !important; /* Taille réduite */
}

.unified-navbar.scrolled .unified-search-form button {
    color: #0F172A !important;
    font-size: 0.9rem !important; /* Réduit de 1.1rem */
    padding: 0.3rem 0.5rem !important; /* Padding réduit */
}

.unified-navbar.scrolled .unified-search-form button:hover {
    color: #20c997 !important;
    transform: scale(1.1) !important;
}

/* Adaptation pour écrans de 14 pouces (max-width: 1919px) */
@media (min-width: 1000px) and (max-width: 1919.98px) {
    /* Logo réduit sur écran 14 pouces - Menu normal */
    .unified-logo .site-logo {
        max-height: 55px !important;
    }
    
    /* Logo réduit sur écran 14 pouces - Menu scroll */
    .unified-navbar.scrolled .unified-logo {
        margin-right: 0.75rem !important;
    }
    
    .unified-navbar.scrolled .unified-logo .site-logo {
        max-height: 40px !important; /* Encore plus petit sur 14 pouces */
    }
    
    /* Recherche réduite sur écran 14 pouces - Menu normal */
    .unified-search-form {
        min-width: 200px !important;
        max-width: 280px !important;
    }
    
    .unified-search-form .form-control {
        font-size: 0.8rem !important;
        padding: 0.35rem 0.65rem !important;
    }
    
    .unified-search-form button {
        font-size: 0.95rem !important;
        padding: 0.35rem 0.65rem !important;
    }
    
    /* Recherche réduite sur écran 14 pouces - Menu scroll */
    .unified-navbar.scrolled .unified-search-form {
        min-width: 150px !important;
        max-width: 180px !important;
    }
    
    .unified-navbar.scrolled .unified-search-form .d-flex {
        padding: 0.2rem 0.4rem !important;
        border-radius: 18px !important;
    }
    
    .unified-navbar.scrolled .unified-search-form input {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.4rem !important;
    }
    
    .unified-navbar.scrolled .unified-search-form input::placeholder {
        font-size: 0.7rem !important;
    }
    
    .unified-navbar.scrolled .unified-search-form button {
        font-size: 0.85rem !important;
        padding: 0.25rem 0.4rem !important;
    }
    
    /* Menu réduit sur écran 14 pouces - Menu normal */
    .unified-menu .nav-link {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Menu réduit sur écran 14 pouces - Menu scroll */
    .unified-navbar.scrolled .unified-menu .nav-link {
        padding: 8px 14px !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Conteneur avec padding réduit - Menu normal */
    .unified-navbar-container {
        padding: 0.6rem 1.5rem !important;
    }
    
    /* Conteneur avec padding réduit - Menu scroll */
    .unified-navbar.scrolled .unified-navbar-container {
        padding: 10px 18px !important;
    }
    
    /* Icônes utilisateur réduites */
    .unified-user-icons .header-icon-link {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }
    
    /* Icônes sociales réduites */
    .navbar-social-icons-right .social-float {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }
}

/* Logo au scroll : effet moderne avec meilleure visibilité */
.unified-navbar.scrolled .unified-logo {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) brightness(1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin-right: 1.5rem !important;
    z-index: 10 !important;
}

.unified-navbar.scrolled .unified-logo:hover {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25)) brightness(1.05) !important;
    transform: scale(1.05) !important;
}

.unified-navbar.scrolled .unified-logo .site-logo {
    max-height: 60px !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Icônes sociales au scroll : garder les couleurs originales */
.unified-navbar.scrolled .social-float {
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important; /* Bordure blanche subtile */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0.95 !important;
}

.unified-navbar.scrolled .social-float:hover {
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-3px) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
    opacity: 1 !important;
}

/* Garder les couleurs originales des icônes sociales au scroll */
.unified-navbar.scrolled .social-float-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%) !important;
    color: #FFFFFF !important;
}

.unified-navbar.scrolled .social-float-facebook:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #1877F2 100%) !important;
}

.unified-navbar.scrolled .social-float-instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4, #5851DB, #405DE6) !important;
    color: #FFFFFF !important;
}

.unified-navbar.scrolled .social-float-instagram:hover {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #F56040, #FCAF45, #E1306C) !important;
}

.unified-navbar.scrolled .social-float-tiktok {
    background: #000000 !important;
    color: #FFFFFF !important;
}

.unified-navbar.scrolled .social-float-tiktok:hover {
    background: #1a1a1a !important;
}

.unified-navbar.scrolled .social-float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #FFFFFF !important;
}

.unified-navbar.scrolled .social-float-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
}

/* Icônes utilisateur au scroll : style moderne avec meilleur contraste */
.unified-navbar.scrolled .header-icon-link {
    color: #0F172A !important; /* Noir pour contraste avec fond crème */
    background: rgba(255, 255, 255, 0.8) !important; /* Fond blanc semi-transparent */
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important; /* Bordure subtile */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.unified-navbar.scrolled .header-icon-link:hover {
    color: #20c997 !important;
    background: rgba(255, 255, 255, 0.95) !important; /* Fond blanc plus visible */
    border-color: rgba(32, 201, 151, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Animation slide-down pour l'apparition */
@keyframes slideDownNavbar {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation slide-up pour la disparition */
@keyframes slideUpNavbar {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* S'assurer que la navbar Bootstrap reste fixe aussi */
.unified-navbar .navbar {
    position: relative !important;
    z-index: 1;
    background: transparent !important;
    transition: background 0.4s ease !important;
}

/* Navbar Bootstrap au scroll : transparent pour laisser voir le conteneur violet */
.unified-navbar.scrolled .navbar {
    background: transparent !important;
}

/* S'assurer que tous les éléments enfants restent visibles */
.unified-navbar .row,
.unified-navbar .col-12 {
    position: relative;
    background: transparent !important;
}

/* Row au scroll : fond transparent pour laisser voir le violet */
.unified-navbar.scrolled .row {
    background: transparent !important;
}

/* Ombre moderne supplémentaire au scroll */
.unified-navbar.scrolled {
    box-shadow: 0 8px 32px rgba(255, 253, 242, 0.25),
                0 4px 16px rgba(0, 0, 0, 0.12) !important;
    border-bottom-color: rgba(0, 0, 0, 0.1) !important; /* Bordure subtile */
}

/* ===== MENU AU SCROLL - RESPONSIVE MOBILE ===== */

/* Mobile - Très petits écrans (max-width: 575px) */
@media (max-width: 575.98px) {
    .unified-navbar.scrolled .unified-navbar-container {
        padding: 8px 12px !important;
        max-width: 100% !important;
        border-radius: 0 0 12px 12px !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .unified-navbar.scrolled .unified-logo {
        margin-right: 0.5rem !important;
        order: 0 !important;
    }
    
    .unified-navbar.scrolled .unified-logo .site-logo {
        max-height: 35px !important;
    }
    
    .unified-navbar.scrolled .unified-menu {
        order: 2 !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        display: none !important; /* Masquer le menu par défaut, s'affiche au clic sur hamburger */
    }
    
    .unified-navbar.scrolled .navbar-collapse.show .unified-menu {
        display: flex !important; /* Afficher le menu quand navbar-collapse a la classe show */
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.25rem !important;
    }
    
    .unified-navbar.scrolled .navbar-collapse.show .unified-menu .nav-link {
        padding: 6px 10px !important;
        font-size: 0.65rem !important;
        letter-spacing: 0.3px !important;
    }
    
    .unified-navbar.scrolled .navbar-collapse {
        order: 2 !important;
        width: 100% !important;
        display: none !important; /* Masqué par défaut */
    }
    
    .unified-navbar.scrolled .navbar-collapse.show {
        display: flex !important; /* Afficher quand on clique sur hamburger */
        flex-direction: column !important;
    }
    
    .unified-navbar.scrolled .unified-search-form {
        order: 1 !important;
        min-width: auto !important;
        max-width: calc(100% - 120px) !important;
        flex: 1 !important;
    }
    
    .unified-navbar.scrolled .unified-search-form .d-flex {
        padding: 0.2rem 0.4rem !important;
        border-radius: 15px !important;
    }
    
    .unified-navbar.scrolled .unified-search-form input {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.4rem !important;
    }
    
    .unified-navbar.scrolled .unified-search-form button {
        font-size: 0.8rem !important;
        padding: 0.25rem 0.4rem !important;
    }
    
    .unified-navbar.scrolled .unified-navbar-right {
        order: 1 !important;
        gap: 0.5rem !important;
        margin-left: auto !important;
    }
    
    .unified-navbar.scrolled .unified-user-icons {
        gap: 0.5rem !important;
    }
    
    .unified-navbar.scrolled .unified-user-icons .header-icon-link {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
    }
    
    .unified-navbar.scrolled .mobile-search-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
        color: #0F172A !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    .unified-navbar.scrolled .mobile-search-icon:hover {
        color: #20c997 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-color: rgba(32, 201, 151, 0.3) !important;
        transform: translateY(-2px) scale(1.05) !important;
    }
    
    .unified-navbar.scrolled .navbar-social-icons-right {
        display: flex !important; /* Afficher les réseaux sociaux sur mobile au scroll */
        gap: 0.4rem !important;
        order: 3 !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0.5rem !important;
    }
    
    .unified-navbar.scrolled .navbar-social-icons-right .social-float {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }
}

/* Mobile - Petits écrans (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .unified-navbar.scrolled .unified-navbar-container {
        padding: 10px 15px !important;
        max-width: 100% !important;
        border-radius: 0 0 15px 15px !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }
    
    .unified-navbar.scrolled .unified-logo {
        margin-right: 0.75rem !important;
    }
    
    .unified-navbar.scrolled .unified-logo .site-logo {
        max-height: 40px !important;
    }
    
    .unified-navbar.scrolled .unified-menu {
        order: 2 !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        display: none !important; /* Masquer le menu par défaut, s'affiche au clic sur hamburger */
    }
    
    .unified-navbar.scrolled .navbar-collapse.show .unified-menu {
        display: flex !important; /* Afficher le menu quand navbar-collapse a la classe show */
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.35rem !important;
    }
    
    .unified-navbar.scrolled .navbar-collapse.show .unified-menu .nav-link {
        padding: 7px 12px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.4px !important;
    }
    
    .unified-navbar.scrolled .navbar-collapse {
        order: 2 !important;
        width: 100% !important;
        display: none !important; /* Masqué par défaut */
    }
    
    .unified-navbar.scrolled .navbar-collapse.show {
        display: flex !important; /* Afficher quand on clique sur hamburger */
        flex-direction: column !important;
    }
    
    .unified-navbar.scrolled .unified-search-form {
        order: 1 !important;
        min-width: 180px !important;
        max-width: 250px !important;
        flex: 1 !important;
    }
    
    .unified-navbar.scrolled .unified-search-form .d-flex {
        padding: 0.25rem 0.5rem !important;
        border-radius: 18px !important;
    }
    
    .unified-navbar.scrolled .unified-search-form input {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .unified-navbar.scrolled .unified-search-form button {
        font-size: 0.85rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .unified-navbar.scrolled .unified-navbar-right {
        order: 1 !important;
        gap: 0.75rem !important;
        margin-left: auto !important;
    }
    
    .unified-navbar.scrolled .mobile-search-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
        color: #0F172A !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    .unified-navbar.scrolled .mobile-search-icon:hover {
        color: #20c997 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-color: rgba(32, 201, 151, 0.3) !important;
        transform: translateY(-2px) scale(1.05) !important;
    }
    
    .unified-navbar.scrolled .navbar-social-icons-right {
        display: flex !important; /* Afficher les réseaux sociaux sur mobile au scroll */
        gap: 0.5rem !important;
        order: 3 !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0.5rem !important;
    }
    
    .unified-navbar.scrolled .navbar-social-icons-right .social-float {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }
}

/* Tablette (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .unified-navbar.scrolled .unified-navbar-container {
        padding: 10px 18px !important;
        max-width: 98% !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }
    
    .unified-navbar.scrolled .unified-logo {
        margin-right: 1rem !important;
    }
    
    .unified-navbar.scrolled .unified-logo .site-logo {
        max-height: 42px !important;
    }
    
    .unified-navbar.scrolled .unified-menu {
        order: 2 !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        justify-content: center !important;
    }
    
    .unified-navbar.scrolled .unified-menu .nav-link {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .unified-navbar.scrolled .unified-search-form {
        order: 1 !important;
        min-width: 200px !important;
        max-width: 280px !important;
    }
    
    .unified-navbar.scrolled .unified-navbar-right {
        order: 1 !important;
        gap: 0.75rem !important;
    }
    
    .unified-navbar.scrolled .navbar-social-icons-right {
        display: flex !important; /* Afficher les réseaux sociaux sur tablette au scroll */
        gap: 0.5rem !important;
        order: 3 !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 0.5rem !important;
    }
    
    .unified-navbar.scrolled .navbar-social-icons-right .social-float {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.9rem !important;
    }
}

.unified-navbar-container {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .unified-navbar-container {
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 1200px) {
    .unified-navbar-container {
        padding: 0.75rem 3rem;
    }
}

.unified-logo {
    margin-right: 0;
    padding: 0;
    flex-shrink: 0;
    z-index: 10;
}

.unified-logo .site-logo {
    max-height: 60px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.unified-logo:hover .site-logo {
    transform: scale(1.05);
}

/* S'assurer que le logo reste visible au scroll */
.unified-navbar.scrolled .unified-logo {
    order: -1 !important;
    flex: 0 0 auto !important;
    margin-right: 1rem !important;
    margin-left: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.unified-navbar.scrolled .unified-logo .site-logo {
    max-height: 45px !important; /* Réduit de 60px à 45px */
    height: auto !important;
    width: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.unified-menu {
    flex: 1;
    justify-content: center;
}

.unified-navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}


.unified-search-form {
    min-width: 250px;
    max-width: 350px;
}

.unified-search-form .form-control {
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
}

.unified-user-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.unified-user-icons .header-icon-link {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.unified-user-icons .header-icon-badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
    min-width: 16px;
}

.navbar-social-icons-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar-social-icons-right .social-float {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .unified-navbar-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    
    .unified-logo .site-logo {
        max-height: 50px;
    }
    
    .unified-navbar-right {
        gap: 0.75rem;
    }
    
    .unified-search-form {
        display: none !important;
    }
    
    .unified-user-icons {
        gap: 0.5rem;
    }
    
    .unified-user-icons .header-icon-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .navbar-social-icons-right {
        gap: 0.3rem;
    }
    
    .navbar-social-icons-right .social-float {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .unified-menu {
        margin-top: 1rem;
        width: 100%;
    }
    
    .unified-navbar-right {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.header-icon-link {
    color: #111827;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.header-icon-link:hover {
    background: #F3F4F6;
    color: #111827;
}

.header-icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    border: 2px solid #FFFFFF;
}

/* Badge au scroll : meilleure visibilité */
.unified-navbar.scrolled .header-icon-badge {
    background: #EF4444 !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.5) !important;
    font-weight: 800 !important;
}

.header-search-form {
    width: 100%;
    max-width: 500px;
}

.header-search-form .form-control {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.topbar {
    background: #111827 !important; /* Bandeau sombre sobre */
}

.topbar a {
    font-size: 0.85rem;
}

.topbar-social {
    margin-left: 0 !important;
    margin-right: auto;
    padding-left: 1.5rem;
}

@media (min-width: 992px) {
    .topbar-social {
        padding-left: 2rem;
    }
}

@media (min-width: 1200px) {
    .topbar-social {
        padding-left: 3rem;
    }
}

@media (max-width: 991.98px) {
    .topbar-social {
        padding-left: 1rem;
    }
}

.topbar-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    margin-right: 0;
}

/* ===== Navbar Social Icons Right Side - Aligned with Top Logo ===== */
.navbar-social-icons-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-left: auto;
}


.navbar-social-icons-right .social-float {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: social-pulse 1.6s infinite;
}

.navbar-social-icons-right .social-float:nth-child(1) {
    animation-delay: 0s;
}

.navbar-social-icons-right .social-float:nth-child(2) {
    animation-delay: 0.2s;
}

.navbar-social-icons-right .social-float:nth-child(3) {
    animation-delay: 0.4s;
}

.navbar-social-icons-right .social-float:nth-child(4) {
    animation-delay: 0.6s;
}

.navbar-social-icons-right .social-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.navbar-social-icons-right .social-float-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.navbar-social-icons-right .social-float-instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
}

.navbar-social-icons-right .social-float-tiktok {
    background: #000000;
}

.navbar-social-icons-right .social-float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

@media (max-width: 991.98px) {
    .navbar-social-icons-right {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
        order: 3;
    }
    
    .navbar-social-icons-right .social-float {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Facebook - Bleu */
.topbar-social a[href*="facebook"] {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    border: none;
}

.topbar-social a[href*="facebook"]:hover {
    background: linear-gradient(135deg, #0C63D4 0%, #1877F2 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
    animation: none;
}

/* Instagram - Dégradé rose/orange/violet */
.topbar-social a[href*="instagram"] {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 25%, #FCAF45 50%, #C13584 75%, #833AB4 100%);
    border: none;
}

.topbar-social a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 25%, #E4405F 50%, #F77737 75%, #FCAF45 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
    animation: none;
}

/* TikTok - Noir avec accent */
.topbar-social a[href*="tiktok"] {
    background: linear-gradient(135deg, #000000 0%, #161823 100%);
    border: none;
}

.topbar-social a[href*="tiktok"]:hover {
    background: linear-gradient(135deg, #161823 0%, #000000 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: none;
}

/* WhatsApp - Vert caractéristique */
.topbar-social a[href*="whatsapp"] {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
}

.topbar-social a[href*="whatsapp"]:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: none;
}

@keyframes social-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Navbar (Legacy - pour compatibilité) ===== */
.nav-bar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
    background: #FFFFFF !important;
    border-bottom: 1px solid #E5E7EB;
}

.navbar-nav .nav-link {
    color: #000000 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--alrehab-secondary) !important;
}

/* Navbar links style moderne et minimaliste */
.nav-link-bordered {
    position: relative;
    border: none !important;
    border-radius: 0;
    margin: 0;
    padding: 0.75rem 1.25rem !important;
    background: transparent !important;
    color: #6B7280 !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link-bordered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #111827;
    transition: width 0.3s ease;
}

.nav-link-bordered:hover {
    color: #111827 !important;
    transform: none;
    box-shadow: none;
    background: transparent !important;
}

.nav-link-bordered:hover::after {
    width: calc(100% - 2.5rem);
}

.nav-link-bordered.active {
    color: #111827 !important;
    background: transparent !important;
    border: none !important;
}

.nav-link-bordered.active::after {
    width: calc(100% - 2.5rem);
}

/* Espacement optimisé entre navbar et carousel */
.unified-navbar {
    margin-bottom: 0 !important;
}

/* S'assurer que la navbar reste toujours visible */
html {
    overflow-x: hidden;
}

/* Padding-top ajusté pour la navbar */
body {
    padding-top: 100px !important; /* Hauteur approximative de la navbar */
    overflow-x: hidden;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px !important; /* Hauteur réduite sur mobile */
    }
}

/* Pour éviter que le contenu passe sous la navbar */
.unified-navbar + * {
    margin-top: 0;
}

/* S'assurer qu'aucun parent n'empêche le fixed */
#main-content {
    position: relative;
    overflow-x: hidden;
}

/* ===== Section Carousel Moderne Plein Écran - Style Luxueux ===== */
.carousel-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #FAF9F6;
    margin-top: 23px !important; /* 1px entre navbar et slide + 22px de déplacement vers le bas = 23px */
    padding-top: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-slide-container {
    width: 100%;
    position: relative;
    margin: 0 auto;
    margin-top: 02px; /* Déplacé un peu vers le bas */
    padding: 0;
    max-width: 100%;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Header Carousel Moderne Plein Écran ===== */
.header-carousel {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-stage-outer {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.header-carousel .owl-item {
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

/* Animation fade professionnelle pour Owl Carousel */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Styles pour les animations Owl Carousel */
.header-carousel .owl-item.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.header-carousel .owl-item.fadeIn {
    animation-name: fadeIn;
    z-index: 2;
}

.header-carousel .owl-item.fadeOut {
    animation-name: fadeOut;
    z-index: 1;
}

/* S'assurer que les items actifs sont visibles */
.header-carousel .owl-item.active {
    opacity: 1 !important;
    z-index: 2;
}

.header-carousel .owl-item:not(.active) {
    opacity: 0;
    z-index: 1;
}

.header-carousel-item {
    width: 100%;
    height: 720px; /* Augmenté encore plus pour plus de hauteur */
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0 auto;
    background: #FAF9F6;
    max-width: 100%;
}

.header-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transform: scale(1);
}

.header-carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transform: scale(1);
}

/* Style pour les items non actifs - masqués */
.header-carousel .owl-item:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.header-carousel .owl-item.active {
    opacity: 1;
    pointer-events: auto;
}

.header-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
    z-index: 2;
}

/* Style Dominika - Contenu centré */
.slide-content-wrapper-dominika {
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 2rem 0;
}

.slide-title-line1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Roboto', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-title-line2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.slide-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    padding: 0.5rem 0;
    margin-bottom: 2rem;
}

.promo-percent {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.promo-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    max-width: 300px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.slide-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slide-feature-left,
.slide-feature-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #6B6B6B;
    font-size: 0.9rem;
    min-width: 120px;
}

.slide-feature-left i,
.slide-feature-right i {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.slide-feature-left span,
.slide-feature-right span {
    text-align: center;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-dominika-cta {
    background: linear-gradient(135deg, #E8D5B7 0%, #D4A574 100%);
    color: #2C2C2C;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    min-width: 220px;
}

.btn-dominika-cta:hover {
    background: linear-gradient(135deg, #D4A574 0%, #C49664 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    color: #2C2C2C;
}

.slide-content-wrapper {
    max-width: 50%;
    animation: slideContentFadeIn 1s ease-out;
}

.slide-content-wrapper.animated {
    animation: slideContentFadeIn 1s ease-out;
}

@keyframes slideContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #D4A574;
    color: #FFFFFF;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
    }
}

.slide-badge-modern i {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

.slide-title-animated {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: titleSlideIn 1.2s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-description-animated {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 60%;
    line-height: 1.6;
    opacity: 0.95;
    animation: descriptionFadeIn 1.4s ease-out 0.4s both;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-btn-animated {
    animation: buttonSlideUp 1.6s ease-out 0.6s both;
}

@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-carousel-overlay h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 60%;
}

.header-carousel-overlay .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 50%;
}

/* ===== Compteur de Slides Moderne - Style Dominika ===== */
.slide-counter-modern {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    animation: counterFadeIn 1s ease-out;
}

@keyframes counterFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.slide-counter-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0.75rem;
}

.slide-counter-current {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    min-width: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.slide-counter-modern.active .slide-counter-current {
    transform: scale(1.1);
    color: #D4A574;
}

.slide-counter-separator {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6B6B6B;
    margin: 0 0.3rem;
}

.slide-counter-total {
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B6B6B;
}

.slide-counter-progress {
    width: 100%;
    height: 2px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 0.5rem;
}

.slide-counter-progress-bar {
    height: 100%;
    background: #D4A574;
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease-out;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 165, 116, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.9);
    }
}

/* ===== Particules Décoratives ===== */
.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    animation: floatParticle 15s ease-in-out infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
}

.particle-4 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 25%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -50px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -20px) scale(1.05);
        opacity: 0.5;
    }
}

/* Badge moderne pour le slide */
.badge-modern-slide {
    display: none; /* Masqué pour style minimaliste */
}

/* Bouton moderne pour le slide */
.btn-modern-slide {
    background: linear-gradient(135deg, #D4A574 0%, #C49664 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.btn-modern-slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern-slide:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern-slide:hover {
    background: linear-gradient(135deg, #C49664 0%, #B58754 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    color: #FFFFFF;
}

.btn-modern-slide span,
.btn-modern-slide i {
    position: relative;
    z-index: 1;
}

.btn-modern-slide i {
    transition: transform 0.3s ease;
}

.btn-modern-slide:hover i {
    transform: translateX(5px);
}

/* Navigation du carousel - Flèches masquées */
.header-carousel.owl-carousel .owl-nav {
    display: none !important;
}

.header-carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-carousel.owl-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4) !important;
    margin: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.header-carousel.owl-carousel .owl-dots .owl-dot.active {
    background: #FFFFFF !important;
    width: 24px;
    height: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: none;
}

@media (max-width: 1000px) {
    .carousel-section {
        padding: 0;
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .carousel-section {
        padding: 0;
    }
    
    .header-carousel-item {
        height: 690px; /* Augmenté encore plus */
        max-width: 100%;
    }
    
    .header-carousel-overlay {
        padding: 0 1.5rem;
    }
    
    .slide-content-wrapper-dominika {
        max-width: 80%;
        padding: 1.5rem 0;
    }
    
    .slide-title-line1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .slide-title-line2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .slide-cta-section {
        gap: 1.5rem;
    }
    
    .btn-dominika-cta {
        min-width: 200px;
        padding: 0.875rem 2rem;
    }
    
    .header-carousel.owl-carousel .owl-dots {
        bottom: 1rem;
    }
    
    .header-carousel.owl-carousel .owl-nav .owl-prev {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .header-carousel.owl-carousel .owl-nav .owl-next {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .slide-counter-modern {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.75rem 1.25rem;
    }
    
    .slide-counter-current {
        font-size: 1.5rem;
    }
    
    .slide-counter-total {
        font-size: 1.25rem;
    }
    
    .slide-content-wrapper {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .header-carousel-item {
        height: 420px; /* Augmenté encore plus */
    }

    .header-carousel-overlay {
        padding: 0 1rem;
    }
    
    .slide-content-wrapper-dominika {
        max-width: 90%;
        padding: 1rem 0;
    }
    
    .slide-title-line1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.25rem;
    }
    
    .slide-title-line2 {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .slide-promo-badge {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Product cards mobile */
    .product-card-modern {
        margin-bottom: 1.5rem;
    }
    
    .product-card-inner {
        padding: 0.75rem;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-price .current-price {
        font-size: 1.1rem;
    }
    
    .promo-percent {
        font-size: 2rem;
    }
    
    .promo-text {
        font-size: 0.85rem;
        text-align: center;
        max-width: 100%;
    }
    
    .slide-cta-section {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .slide-feature-left,
    .slide-feature-right {
        flex-direction: row;
        gap: 0.75rem;
        min-width: auto;
    }
    
    .slide-feature-left i,
    .slide-feature-right i {
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    
    .btn-dominika-cta {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
    
    .slide-counter-modern {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .slide-counter-current {
        font-size: 1.25rem;
        min-width: 30px;
    }
    
    .slide-counter-separator {
        font-size: 1.1rem;
    }
    
    .slide-counter-total {
        font-size: 1.1rem;
    }
}

/* ===== Loading Screen ===== */
.loading-screen {
    background: #FFFFFF;
    z-index: 9999;
}

.loading-logo-container {
    text-align: center;
}

.loading-logo-container img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    animation: logo-fade-in 1s ease-in-out;
}

@keyframes logo-fade-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes social-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Categories Section ===== */
.categories-section {
    background: #FFFFFF;
    padding: 3rem 0 !important;
}

.categories-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    text-align: center;
}

.categories-section p.text-muted {
    color: #6B7280;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

/* ===== Categories Carousel Horizontal ===== */
.categories-carousel-wrapper {
    position: relative;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.categories-carousel-container {
    overflow: hidden;
    width: 100%;
    /* Largeur pour afficher exactement 5 catégories : 5 × 180px + 4 × 40px (gaps) = 1100px */
    max-width: 1200px;
    margin: 0 auto;
}

/* Ajustement pour écran 14 pouces (992px - 1366px) */
@media (min-width: 992px) and (max-width: 1366px) {
    .categories-carousel-wrapper {
        max-width: 100%;
        padding: 0 60px;
    }
    
    .categories-carousel-container {
        /* Pour 14 pouces : 5 catégories × 160px + 4 × 32px (gaps) = 928px */
        max-width: 1100px;
    }
    
    .category-item {
        min-width: 160px;
        max-width: 160px;
        width: 160px;
    }
    
    .category-item .category-circle {
        width: 130px;
        height: 130px;
    }
    
    .categories-carousel {
        gap: 0.15rem; /* Réduit à 2.4px pour un espacement ultra serré */
    }
}

.categories-carousel {
    display: flex;
    gap: 0.15rem; /* Réduit à 2.4px pour un espacement ultra serré */
    transition: transform 0.4s ease-in-out;
    padding: 1rem 0;
}

/* Centrer les collections quand il y en a 4 ou moins */
.collections-centered .categories-carousel-container {
    display: flex;
    justify-content: center;
}

.collections-centered .categories-carousel {
    justify-content: center;
    width: auto;
}

.category-item {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 180px;
    width: 180px;
    flex-shrink: 0;
}

.category-item .category-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.categories-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.categories-nav-btn:hover {
    background: #20c997;
    border-color: #20c997;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.categories-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.categories-nav-btn i {
    font-size: 1.2rem;
    color: #111827;
    transition: color 0.3s ease;
}

.categories-nav-btn:hover i {
    color: #FFFFFF;
}

.categories-nav-prev {
    left: 0;
}

.categories-nav-next {
    right: 0;
}

.categories-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.category-card-modern {
    text-align: center;
    transition: transform 0.3s ease;
    display: block;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.category-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-card-modern:hover .category-circle {
    transform: scale(1.1);
}

.category-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.category-icon-placeholder {
    font-size: 3rem;
    color: #9CA3AF;
    z-index: 2;
}

.category-floral-decoration {
    position: absolute;
    font-size: 1.2rem;
    color: rgba(168, 85, 247, 0.25);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.category-floral-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.category-floral-2 {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.category-floral-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-count {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0;
}

/* ===== Product Cards ===== */
.product-card-modern {
    background: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-card-modern:hover {
    box-shadow: none;
    transform: none;
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    min-height: 0;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 85%; /* Augmenté de 70% à 85% pour plus de hauteur */
    overflow: hidden;
    background: #FFFFFF;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 1.5rem;
}

.product-image-placeholder span {
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.product-discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    z-index: 3;
}

.product-info {
    padding: 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: auto; /* Ajusté pour enlever l'espace inutile */
    justify-content: flex-start; /* Aligné en haut */
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0; /* Enlevé l'espace entre description et prix */
    line-height: 1.3;
}

.product-name a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #20c997;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0; /* Enlevé l'espace entre description et prix */
    min-height: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #20c997;
    line-height: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.old-price {
    font-size: 0.85rem;
    color: #9CA3AF;
    text-decoration: line-through;
    line-height: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.old-price-placeholder {
    font-size: 0.85rem;
    line-height: 2rem;
    height: 2rem;
    display: inline-block;
    flex-shrink: 0;
    visibility: hidden;
    opacity: 0;
    min-width: 80px;
    content: '';
}

.product-add-form {
    margin-top: auto;
}

.product-add-btn {
    width: 100%;
    background: #000000; /* Changé en noir */
    color: #FFFFFF;
    border: none;
    padding: 0.65rem 0.85rem;
    border-radius: 0; /* Pas de bordure arrondie */
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-add-btn:hover {
    background: #333333; /* Gris foncé au hover */
    transform: none;
    box-shadow: none;
}

.product-add-btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-add-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.product-add-btn-name {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.product-add-btn-price {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-top: 0.1rem;
}

.product-add-btn-icon {
    font-size: 0.95rem;
}

/* ===== Offer Cards (Offers Page Style) ===== */
.product-offer-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.product-offer-card:hover {
    transform: translateY(-5px);
}

.offer-card-inner {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.product-offer-card.featured-offer .offer-card-inner {
    background: linear-gradient(135deg, #20c997 0%, #1ab885 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(32, 201, 151, 0.3);
}

.product-offer-card:hover .offer-card-inner {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: #D1D5DB;
}

.offer-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.offer-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-offer-card:hover .offer-product-image {
    transform: scale(1.05);
}

.offer-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 3rem;
}

.offer-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.6rem;
    color: #111827;
}

.product-offer-card:not(.featured-offer) .offer-product-name a {
    color: #111827;
    text-decoration: none;
}

.product-offer-card.featured-offer .offer-product-name a {
    color: #FFFFFF;
    text-decoration: none;
}

.offer-product-name a:hover {
    text-decoration: underline;
}

.offer-price-section {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E5E7EB;
}

.offer-current-price {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-offer-card:not(.featured-offer) .offer-current-price {
    color: #111827;
}

.product-offer-card.featured-offer .offer-current-price {
    color: #FFFFFF;
}

.offer-price-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.offer-old-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    opacity: 0.6;
    color: #9CA3AF;
}

.product-offer-card:not(.featured-offer) .offer-old-price {
    color: #6B7280;
}

.product-offer-card.featured-offer .offer-old-price {
    color: rgba(255, 255, 255, 0.7);
}

.offer-discount-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

.product-offer-card:not(.featured-offer) .offer-discount-badge {
    background: #EF4444;
    color: #FFFFFF;
}

.product-offer-card.featured-offer .offer-discount-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.offer-ratings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    padding: 0.75rem 0;
}

.product-offer-card:not(.featured-offer) .offer-ratings-text {
    color: #6B7280;
}

.product-offer-card.featured-offer .offer-ratings-text {
    color: rgba(255, 255, 255, 0.9);
}

.offer-rating-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-rating-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111827;
}

.product-offer-card.featured-offer .offer-rating-value {
    color: #FFFFFF;
}

.offer-stars-rating {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    cursor: pointer;
}

.offer-star {
    font-size: 0.9rem;
    color: #D1D5DB;
    transition: all 0.2s ease;
    cursor: pointer;
}

.offer-star:hover {
    color: #FBBF24;
    transform: scale(1.1);
}

.offer-star.active {
    color: #FBBF24;
}

.offer-star.hover {
    color: #FBBF24;
}

.offer-action-buttons {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 0.75rem;
}

.offer-cart-form {
    width: 100%;
}

.btn-offer-cart-with-text {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 0.75rem;
}

.product-offer-card:not(.featured-offer) .btn-offer-cart-with-text {
    background: #111827;
    color: #FFFFFF;
}

.product-offer-card.featured-offer .btn-offer-cart-with-text {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-offer-cart-with-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.product-offer-card.featured-offer .btn-offer-cart-with-text:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}

.btn-cart-text {
    flex: 1;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-cart-icon {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-offer-card:not(.featured-offer) .btn-cart-icon {
    background: rgba(255, 255, 255, 0.15);
}

.btn-offer-cart-with-text:hover .btn-cart-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

/* ===== New Nike-Style Offer Cards ===== */
.offers-section-nike {
    background: rgb(239, 240, 245);
    position: relative;
    overflow: hidden;
}

.offers-section-nike::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 120px 120px, 80px 80px, 110px 110px, 90px 90px, 100px 100px, 95px 95px, 105px 105px;
    background-position: 0 0, 30px 30px, 60px 60px, 20px 20px, 50px 50px, 10px 10px, 40px 40px, 70px 70px;
    pointer-events: none;
    opacity: 0.5;
    animation: snowParticles 20s linear infinite;
}

@keyframes snowParticles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

.product-offer-card-nike {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.product-offer-card-nike:hover {
    transform: translateY(-5px);
}

.offer-card-inner-nike {
    background: rgb(239, 240, 245);
    border: 2px solid #0F172A;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
}

/* Effet de particules de neige en arrière-plan */
.offer-card-inner-nike::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 50px 50px, 60px 60px, 40px 40px, 55px 55px, 45px 45px, 50px 50px;
    background-position: 0 0, 20px 20px, 40px 40px, 10px 10px, 30px 30px, 50px 50px;
    pointer-events: none;
    opacity: 0.6;
}

.product-offer-card-nike:hover .offer-card-inner-nike {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
    border-color: #1e40af;
}

.offer-image-wrapper-nike {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offer-product-image-nike {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-offer-card-nike:hover .offer-product-image-nike {
    transform: scale(1.05);
}

.offer-image-placeholder-nike {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    color: #9CA3AF;
    font-size: 2rem;
}

.offer-product-info-nike {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.offer-product-name-nike {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

.offer-product-name-nike a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offer-product-name-nike a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.offer-price-section-nike {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.offer-price-original-nike {
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: line-through;
    font-weight: 500;
}

.offer-price-sale-nike {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
}

.offer-price-single-nike {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
}

.offer-action-buttons-nike {
    margin-top: auto;
}

.btn-offer-cart-nike {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    text-align: center;
    display: block;
}

.btn-offer-cart-nike:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-offer-cart-nike:active {
    transform: translateY(0);
}

/* Responsive pour les cartes Nike */
@media (max-width: 767.98px) {
    .product-offer-card-nike {
        margin-bottom: 1.5rem;
    }
    
    .offer-card-inner-nike {
        padding: 1.25rem;
    }
    
    .offer-product-name-nike {
        font-size: 0.9rem;
        min-height: 2.4rem;
    }
    
    .offer-price-sale-nike,
    .offer-price-single-nike {
        font-size: 1.1rem;
    }
    
    .btn-offer-cart-nike {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Écran 24 pouces - Forcer 5 cartes par ligne et centrer */
@media (min-width: 1920px) {
    .offers-section-nike .row.g-4 {
        justify-content: center !important;
    }
    
    .offers-section-nike .row.g-4 .col-md-6.col-lg-3,
    .offers-section-nike .row.g-4 [class*="col-lg-3"] {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
    
    .offers-section-nike .container {
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .offer-card-inner-nike {
        padding: 1.5rem;
    }
    
    .offer-product-name-nike {
        font-size: 0.95rem;
        min-height: 2.5rem;
        line-height: 1.3;
    }
    
    .offer-price-original-nike {
        font-size: 0.85rem;
    }
    
    .offer-price-sale-nike,
    .offer-price-single-nike {
        font-size: 1.15rem;
    }
    
    .btn-offer-cart-nike {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    /* Centrer les cartes de la section "Nos Nouveautés" sur écran 24 pouces */
    .new-products-section .row.g-4 {
        justify-content: center !important;
    }
    
    .new-products-section .container {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* ===== Section "Nos Collections" - Style Moderne Centré ===== */
.collections-header-modern {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.collections-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    text-align: center;
}

.collections-description-modern {
    font-size: 1.1rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0;
}

.collections-nav-modern {
    margin-top: 2rem;
    gap: 1rem;
}

.collections-btn-all {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    border: none;
    display: inline-block;
    cursor: pointer;
}

.collections-btn-all:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.collections-btn-all.active {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.collections-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.collections-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

.collections-link.active {
    color: #ea580c;
    font-weight: 700;
    text-decoration: underline;
}

/* Responsive pour "Nos Collections" */
@media (max-width: 767.98px) {
    .collections-title-modern {
        font-size: 2rem;
    }
    
    .collections-description-modern {
        font-size: 0.95rem;
    }
    
    .collections-nav-modern {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .collections-btn-all {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .collections-link {
        font-size: 0.9rem;
    }
}

/* Écran 14 pouces (992px - 1919px) */
@media (min-width: 992px) and (max-width: 1919.98px) {
    .collections-title-modern {
        font-size: 2.5rem;
    }
    
    .collections-description-modern {
        font-size: 1rem;
    }
    
    .collections-nav-modern {
        gap: 1.5rem;
    }
    
    .collections-btn-all {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .collections-link {
        font-size: 0.95rem;
    }
}

/* Écran 14 pouces (992px - 1919px) - Centrer les cartes */
@media (min-width: 992px) and (max-width: 1919.98px) {
    .product .tab-content .row.g-4 {
        justify-content: center !important;
    }
    
    .product .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Écran 24 pouces (>= 1920px) */
@media (min-width: 1920px) {
    .collections-header-modern {
        margin-bottom: 4rem;
        padding: 3rem 0;
    }
    
    .collections-title-modern {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .collections-description-modern {
        font-size: 1.2rem;
    }
    
    .collections-nav-modern {
        margin-top: 2.5rem;
        gap: 2rem;
    }
    
    .collections-btn-all {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .collections-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Centrer les cartes de produits sur écran 24 pouces */
    .product .tab-content .row.g-4 {
        justify-content: center !important;
    }
    
    .product .container {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* ===== Single Product Page ===== */
/* ===== Single Product Page - Styles améliorés ===== */
.single-product-image-wrapper {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    height: fit-content;
}

.single-product-main-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    min-height: 250px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8f9fa;
    padding: 0.25rem;
    display: block;
}

.single-carousel .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.single-product-placeholder {
    width: 100%;
    min-height: 250px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    padding: 1.5rem;
}

.single-product-placeholder i {
    margin-bottom: 0.5rem;
    opacity: 0.5;
    font-size: 2.5rem;
}

.single-product-placeholder p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Product Gallery Wrapper */
.product-gallery-wrapper {
    position: relative;
}

.product-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: zoom-in;
}

.zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.zoom-btn:hover {
    background: #20c997;
    color: white;
    transform: scale(1.1);
}

.zoom-btn i {
    font-size: 1rem;
}

.image-counter {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

/* Product Thumbnails Gallery */
.product-thumbnails-wrapper {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.thumbnail-item {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thumbnail-item:hover {
    border-color: #20c997;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

.thumbnail-item.active {
    border-color: #20c997;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.2);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 201, 151, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.thumbnail-item:hover .thumbnail-overlay {
    background: rgba(32, 201, 151, 0.7);
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 1.25rem;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
}

.image-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.image-modal-close:hover {
    background: #dc2626;
    color: white;
    transform: rotate(90deg);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.image-modal-prev {
    left: -70px;
}

.image-modal-next {
    right: -70px;
}

.image-modal-nav:hover {
    background: #20c997;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 991.98px) {
    .image-modal-prev {
        left: 10px;
    }
    
    .image-modal-next {
        right: 10px;
    }
    
    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
    }
}

.single-product-info {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.single-product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.single-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.single-product-price .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #20c997;
}

.single-product-price .old-price {
    font-size: 0.95rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.single-product-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 1rem;
}

.single-product-actions {
    margin-bottom: 1rem;
}

.single-product-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #f9fafb;
}

.btn-quantity {
    background: #FFFFFF;
    border: none;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #374151;
    font-size: 0.85rem;
}

.btn-quantity:hover {
    background: #20c997;
    color: #FFFFFF;
}

.quantity-input {
    border: none;
    width: 50px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    padding: 0.4rem 0.2rem;
}

.quantity-input:focus {
    outline: none;
}

.btn-add-to-cart {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, #20c997 0%, #1ab885 100%);
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 5px rgba(32, 201, 151, 0.2);
}

.btn-add-to-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(32, 201, 151, 0.3);
    background: linear-gradient(135deg, #1ab885 0%, #20c997 100%);
}

.single-product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.product-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.detail-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.8rem;
}

.detail-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.8rem;
}

/* Owl Carousel Customization pour Single Product */
.single-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.single-carousel .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    border: none;
    color: #20c997;
    font-size: 1.2rem;
}

.single-carousel .owl-nav button:hover {
    background: #20c997 !important;
    color: #FFFFFF !important;
    transform: scale(1.1);
}

.single-carousel .owl-dots {
    margin-top: 1.5rem;
    text-align: center;
}

.single-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db !important;
    margin: 0 0.25rem;
    transition: all 0.3s;
}

.single-carousel .owl-dots button.active {
    background: #20c997 !important;
    width: 30px;
    border-radius: 6px;
}

/* Section Avis améliorée */
.reviews-section {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.reviews-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Produits similaires */
.related-products-section {
    margin-top: 1.5rem;
}

.related-products-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .single-product-image-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
        padding: 0.75rem;
    }
    
    .single-product-main-image {
        max-height: 400px;
    }
    
    .single-product-info {
        padding: 1.25rem;
    }
    
    .single-product-name {
        font-size: 1.25rem;
    }
    
    .single-product-price .current-price {
        font-size: 1.5rem;
    }
    
    .single-product-form {
        flex-direction: column;
    }
    
    .btn-add-to-cart {
        width: 100%;
    }
}

/* ===== Cart Page Moderne ===== */
.cart-page-modern {
    background: #f8f9fa;
    min-height: 60vh;
}

.cart-alert-modern {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Cart Empty State */
.cart-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-icon i {
    font-size: 3.5rem;
    color: #999;
}

.cart-empty-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.cart-empty-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
    color: white;
}

/* Cart Header */
.cart-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

.cart-count-badge {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
}

/* Cart Items */
.cart-items-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-item-card-modern {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cart-item-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #20c997;
}

.cart-item-image-modern {
    flex-shrink: 0;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-placeholder {
    width: 100px;
    height: 100px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.cart-item-info-modern {
    flex: 1;
    min-width: 0;
}

.cart-item-name-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.cart-item-price-modern {
    font-size: 1rem;
    color: #20c997;
    font-weight: 600;
    margin: 0;
}

.cart-item-quantity-modern {
    flex-shrink: 0;
}

.quantity-control-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity-btn:hover {
    background: #20c997;
    color: white;
    transform: scale(1.1);
}

.quantity-input-modern {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 0.25rem;
}

.quantity-input-modern:focus {
    outline: none;
}

.cart-item-total-modern {
    flex-shrink: 0;
    text-align: right;
    min-width: 120px;
}

.cart-item-subtotal {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.cart-item-action-modern {
    flex-shrink: 0;
}

.cart-remove-btn-modern {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1rem;
}

.cart-remove-btn-modern:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Cart Summary */
.cart-summary-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.cart-summary-header {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%);
    padding: 1.5rem;
    color: white;
}

.cart-summary-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.cart-summary-body {
    padding: 1.5rem;
}

.cart-summary-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cart-summary-label-modern {
    color: #666;
    font-weight: 500;
}

.cart-summary-value-modern {
    font-weight: 600;
    color: #333;
}

.cart-summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 1.25rem 0;
}

.cart-summary-total-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.cart-summary-total-modern .cart-summary-label-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.cart-summary-value-modern-total {
    font-size: 1.75rem;
    font-weight: 700;
    color: #20c997;
}

.cart-summary-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-checkout-modern {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-checkout-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
    color: white;
}

.btn-continue-shopping {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-continue-shopping:hover {
    border-color: #20c997;
    color: #20c997;
    background: #f0fdf4;
}

/* ===== Cart Page (Ancien style - conservé pour compatibilité) ===== */
.cart-table-wrapper {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cart-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #111827;
    border-bottom: 2px solid #E5E7EB;
    font-size: 0.85rem;
}

.cart-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
}

.cart-th-image {
    width: 80px;
}

.cart-th-name {
    min-width: 200px;
}

.cart-th-price,
.cart-th-quantity,
.cart-th-total {
    width: 120px;
    text-align: center;
}

.cart-th-action {
    width: 80px;
    text-align: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.9rem;
}

.cart-item-price {
    color: #20c997;
    font-weight: 600;
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #111827;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #F3F4F6;
    border-color: #20c997;
    color: #20c997;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 0.25rem;
    font-size: 0.85rem;
}

.cart-item-total {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.cart-remove-btn {
    background: #EF4444;
    color: #FFFFFF;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.cart-remove-btn:hover {
    background: #DC2626;
    transform: scale(1.1);
}

.cart-summary {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.cart-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E5E7EB;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.cart-summary-label {
    color: #6B7280;
}

.cart-summary-value {
    font-weight: 600;
    color: #111827;
}

.cart-summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #E5E7EB;
    font-size: 1.1rem;
}

.cart-summary-total .cart-summary-label {
    font-weight: 700;
    color: #111827;
}

.cart-summary-total .cart-summary-value {
    font-size: 1.25rem;
    color: #20c997;
}

.checkout-btn {
    width: 100%;
    background: #20c997;
    color: #FFFFFF;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #1ab885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

/* ===== Checkout Page ===== */
.form-item {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-sm {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.payment-method-card {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFFFFF;
    margin-bottom: 1rem;
}

.payment-method-card:hover {
    border-color: #20c997;
    background: #F0FDFA;
}

.payment-method-card input[type="radio"]:checked + .payment-method-content {
    border-color: #20c997;
}

.payment-method-card input[type="radio"]:checked ~ .payment-method-content {
    border-color: #20c997;
    background: #F0FDFA;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-icon {
    font-size: 2rem;
    color: #20c997;
}

.payment-method-info h6 {
    margin: 0;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.payment-method-info p {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: #6B7280;
}

/* ===== News Popup ===== */
.news-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.news-popup-container {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popup-fade-in 0.4s ease-out;
}

@keyframes popup-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.news-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F3F4F6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    color: #111827;
}

.news-popup-close:hover {
    background: #E5E7EB;
    transform: rotate(90deg);
}

.news-popup-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.news-popup-content {
    padding: 3rem 1.5rem 1.5rem;
}

.news-popup-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.news-popup-image-wrapper {
    flex: 0 0 45%;
    text-align: center;
}

.news-popup-image {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-popup-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-popup-new-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.4);
}

.news-popup-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-popup-product-name {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-popup-product-price-wrapper {
    margin-bottom: 1.5rem;
}

.news-popup-product-price {
    color: #20c997;
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.news-popup-product-old-price {
    color: #9CA3AF;
    font-size: 1.1rem;
    text-decoration: line-through;
    display: inline-block;
}

.news-popup-form {
    margin-top: 0.5rem;
}

.news-popup-button {
    background: #20c997;
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-popup-button:hover {
    background: #1ab885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
    color: #FFFFFF;
}

.news-popup-description {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-popup-link {
    display: inline-block;
    background: #20c997;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.news-popup-link:hover {
    background: #1ab885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
    color: #FFFFFF;
}

/* ===== Logo Animation ===== */
.site-logo {
    max-height: 72px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    animation: logo-breathe 6s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .site-logo {
        max-height: 56px;
    }
}

@keyframes logo-breathe {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* ===== Responsive Adjustments ===== */

/* ===== Mobile (< 768px) ===== */
@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }
    
    .container, .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Navbar Mobile */
    .unified-navbar-container {
        padding: 0.5rem 1rem !important;
    }
    
    .unified-logo .site-logo {
        max-height: 45px;
    }
    
    .unified-menu {
        font-size: 0.9rem;
    }
    
    .unified-navbar-right {
        gap: 0.5rem;
    }
    
    .unified-search-form {
        display: none !important;
    }
    
    /* Mobile Search Icon */
    .mobile-search-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: #111827;
        font-size: 1.1rem;
        text-decoration: none;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-search-icon:hover {
        background: #F3F4F6;
        color: #20c997;
        transform: scale(1.1);
    }
    
    .mobile-search-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Slide Mobile */
    .carousel-section {
        padding: 0;
    }
    
    .header-carousel-item {
        height: 530px; /* Augmenté encore plus */
        max-width: 100%;
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    /* Categories Mobile */
    .categories-section {
        padding: 2rem 0 !important;
    }
    
    .categories-carousel-wrapper {
        padding: 0 40px;
        max-width: 100%;
    }
    
    .categories-carousel-container {
        /* Pour mobile : afficher 2 catégories (2 × 150px + 1 × 32px gap = 332px) */
        max-width: 332px;
        margin: 0 auto;
    }
    
    .categories-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .categories-nav-btn i {
        font-size: 1rem;
    }
    
    .category-item {
        min-width: 150px;
        max-width: 150px;
        width: 150px;
        flex-shrink: 0;
    }
    
    .category-item .category-circle {
        width: 120px;
        height: 120px;
    }
    
    .category-circle {
        width: 120px;
        height: 120px;
    }
    
    /* Product Cards Mobile */
    .product-offer-card {
        margin-bottom: 1.5rem;
    }
    
    .offer-card-inner {
        padding: 1rem;
    }
    
    .offer-product-name {
        font-size: 0.95rem;
        min-height: 2.2rem;
    }
    
    .offer-current-price {
        font-size: 1.5rem;
    }
    
    .offer-old-price {
        font-size: 0.85rem;
    }
    
    .offer-discount-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .offer-ratings {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-offer-cart-with-text {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-cart-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Cart Mobile - Style Moderne */
    .cart-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-title-modern {
        font-size: 1.5rem;
    }
    
    .cart-item-card-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .cart-item-image-modern {
        width: 100%;
        text-align: center;
    }
    
    .cart-item-img,
    .cart-item-placeholder {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .cart-item-info-modern {
        width: 100%;
        text-align: center;
    }
    
    .cart-item-quantity-modern {
        width: 100%;
    }
    
    .quantity-control-modern {
        justify-content: center;
    }
    
    .cart-item-total-modern {
        width: 100%;
        text-align: center;
    }
    
    .cart-item-action-modern {
        width: 100%;
        text-align: center;
    }
    
    .cart-summary-modern {
        position: relative;
        top: 0;
    }
    
    /* Cart Mobile (Ancien style) */
    .cart-table-wrapper {
        padding: 1rem;
    }
    
    .cart-table {
        font-size: 0.8rem;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 0.5rem;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    /* Popup Mobile */
    .news-popup-container {
        max-width: 95%;
        padding: 1rem;
    }
    
    .news-popup-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .news-popup-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .news-popup-product-details {
        text-align: center;
    }
    
    .news-popup-product-name {
        font-size: 1.25rem;
    }
    
    .news-popup-product-price {
        font-size: 1.5rem;
    }
}

/* Popup - Écrans 14 pouces (1366px - 1919px) */
@media (min-width: 1366px) and (max-width: 1919.98px) {
    .news-popup-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .news-popup-container {
        max-width: 420px !important;
        max-height: calc(100vh - 4rem) !important;
        border-radius: 12px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .news-popup-content {
        padding: 1.75rem 1rem 1rem !important;
    }
    
    .news-popup-layout {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .news-popup-image-wrapper {
        flex: 0 0 40%;
    }
    
    .news-popup-product-details {
        flex: 1;
    }
    
    .news-popup-product-name {
        font-size: 1.3rem !important;
    }
    
    .news-popup-product-price {
        font-size: 1.5rem !important;
    }
    
    .news-popup-badge {
        top: 0.5rem !important;
        padding: 0.35rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
    
    .news-popup-close {
        top: 0.5rem !important;
        right: 0.5rem !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }
    
    .news-popup-image {
        max-width: 100% !important;
    }
    
    .news-popup-image img {
        max-height: 300px !important;
        object-fit: contain !important;
    }
    
    .news-popup-new-badge {
        bottom: 0.5rem !important;
        padding: 0.3rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
    
    .news-popup-description {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .news-popup-product-info {
        padding: 0.6rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .news-popup-product-info strong {
        font-size: 0.85rem !important;
    }
    
    .news-popup-product-price {
        font-size: 1rem !important;
        margin-top: 0.3rem !important;
    }
    
    .news-popup-link {
        padding: 0.5rem 1.25rem !important;
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
    }
}

/* ===== Tablet (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 720px;
    }
    
    /* Navbar Tablet */
    .unified-navbar-container {
        padding: 0.75rem 1.5rem;
    }
    
    /* Slide Tablet */
    .header-carousel-item {
        height: 640px; /* Augmenté encore plus */
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    /* Categories Tablet */
    .categories-carousel-container {
        /* Pour tablette : afficher 3 catégories (3 × 150px + 2 × 32px gap = 514px) */
        max-width: 514px;
        margin: 0 auto;
    }
    
    .category-item {
        min-width: 150px;
        max-width: 150px;
        width: 150px;
    }
    
    .category-circle {
        width: 150px;
        height: 150px;
    }
    
    /* Product Cards Tablet */
    .offer-card-inner {
        padding: 1.25rem;
    }
    
    .offer-current-price {
        font-size: 1.6rem;
    }
}

/* ===== Laptop 14 pouces (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 960px;
    }
    
    /* Navbar 14 pouces */
    .unified-navbar-container {
        padding: 0.75rem 2rem;
    }
    
    /* Slide 14 pouces */
    .header-carousel-item {
        height: 690px; /* Augmenté encore plus */
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    /* Product Cards 14 pouces */
    .offer-card-inner {
        padding: 1.35rem;
    }
    
    .offer-product-name {
        font-size: 1.05rem;
    }
    
    .offer-current-price {
        font-size: 1.7rem;
    }
    
    /* Categories 14 pouces */
    .categories-section {
        padding: 3.5rem 0 !important;
    }
    
    .category-circle {
        width: 160px;
        height: 160px;
    }
    
    /* Carousel Categories 14 pouces - Ajuster pour afficher 5 catégories */
    .categories-carousel-wrapper {
        max-width: 100%;
        padding: 0 50px;
    }
    
    .categories-carousel-container {
        /* Pour 14 pouces : 5 catégories × 150px + 4 × 32px (gaps) = 878px */
        max-width: 1050px;
    }
    
    .category-item {
        min-width: 150px;
        max-width: 150px;
        width: 150px;
    }
    
    .category-item .category-circle {
        width: 130px;
        height: 130px;
    }
    
    .categories-carousel {
        gap: 0.15rem; /* Réduit à 2.4px pour un espacement ultra serré */
    }
    
    .category-title {
        font-size: 0.9rem;
    }
    
    .category-count {
        font-size: 0.8rem;
    }
}

/* ===== Desktop Standard (1200px - 1919px) ===== */
@media (min-width: 1000px) and (max-width: 1919.98px) {
    html {
        font-size: 16px;
    }
    
    .container {
        max-width: 1000px;
    }
    
    /* Navbar Desktop */
    .unified-navbar-container {
        padding: 0.75rem 3rem;
    }
    
    /* Slide Desktop */
    .header-carousel-item {
        height: 720px; /* Augmenté encore plus */
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    /* Product Cards Desktop */
    .offer-card-inner {
        padding: 1.5rem;
    }
    
    .offer-current-price {
        font-size: 1.75rem;
    }
}

/* ===== Desktop Large 24 pouces (>= 1920px) ===== */
@media (min-width: 1920px) {
    html {
        font-size: 17px;
    }
    
    .container {
        max-width: 1400px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    /* Navbar 24 pouces */
    .unified-navbar-container {
        padding: 1rem 4rem;
    }
    
    .unified-logo .site-logo {
        max-height: 70px;
    }
    
    .unified-menu .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }
    
    /* Slide 24 pouces */
    .carousel-section {
        padding: 0;
    }
    
    .header-carousel-item {
        height: 790px; /* Augmenté encore plus */
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    /* Product Cards 24 pouces */
    .offer-card-inner {
        padding: 2rem;
    }
    
    .offer-product-name {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .offer-current-price {
        font-size: 2rem;
    }
    
    .offer-old-price {
        font-size: 1.1rem;
    }
    
    .offer-discount-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.7rem;
    }
    
    .offer-ratings {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-star {
        font-size: 1rem;
    }
    
    .btn-offer-cart-with-text {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-cart-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Categories 24 pouces */
    .categories-carousel-wrapper {
        max-width: 1600px;
    }
    
    .categories-carousel-container {
        max-width: 1200px; /* 5 catégories × 180px + 4 gaps × 32px */
    }
    
    .category-item {
        min-width: 180px;
        max-width: 180px;
        width: 180px;
    }
    
    .category-item .category-circle {
        width: 160px;
        height: 160px;
    }
    
    .category-circle {
        width: 190px;
        height: 190px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    /* Sections spacing 24 pouces */
    .categories-section,
    .products-section {
        padding: 4rem 0;
    }
    
    /* Product Grid 24 pouces */
    .row.g-4 {
        gap: 2rem !important;
    }
}

/* ===== Ajustements généraux pour toutes les tailles ===== */

/* Grille de produits responsive */
@media (max-width: 575.98px) {
    .product-offer-card {
        margin-bottom: 1.25rem;
    }
    
    .col-md-6.col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .col-md-6.col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-6.col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .col-md-6.col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1200px) and (max-width: 1919.98px) {
    .col-md-6.col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Section Nos Collections - 5 produits par ligne sur 24 pouces */
/* Chaque produit prend 20% (100% / 5 = 20%) et la grille est centrée */
@media (min-width: 1920px) {
    /* Forcer 5 produits (20% chacun) avec col-xl-3 */
    .product .container .row.g-4 .col-md-6.col-lg-4.col-xl-3,
    .product .container .tab-content .row.g-4 .col-md-6.col-lg-4.col-xl-3,
    .product .row.g-4 .col-md-6.col-lg-4.col-xl-3,
    .product .tab-content .row.g-4 .col-md-6.col-lg-4.col-xl-3,
    .product .row.g-4 [class*="col-xl-3"],
    .product .tab-content .row.g-4 [class*="col-xl-3"],
    .product .container .row.g-4 [class*="col-xl-3"],
    .product .container .tab-content .row.g-4 [class*="col-xl-3"],
    .product .container-fluid .container .row.g-4 .col-md-6.col-lg-4.col-xl-3,
    .product .container-fluid .container .tab-content .row.g-4 .col-md-6.col-lg-4.col-xl-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
    
    /* Pour les éléments sans col-xl-3, garder 3 colonnes (col-lg-4) */
    .product .row.g-4 .col-md-6.col-lg-4:not(.col-xl-3),
    .product .row.g-4 [class*="col-lg-4"]:not([class*="col-xl-3"]),
    .product .tab-content .row.g-4 .col-md-6.col-lg-4:not(.col-xl-3) {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        width: 33.333333% !important;
    }
    
    /* Surcharger toutes les instances de col-xl-3 dans la section product avec spécificité maximale */
    .product .container-fluid .container .row .col-xl-3,
    .product .container .row .col-xl-3,
    .product .tab-content .row .col-xl-3,
    .product .row .col-xl-3,
    .product .container .tab-content .row .col-xl-3,
    .product .container-fluid .container .tab-content .row .col-xl-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
    
    /* Surcharger aussi les sélecteurs génériques Bootstrap */
    .product [class*="col-xl-3"] {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
    
    /* Espacement plus large sur grand écran */
    .row.g-4 > * {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* Centrer le container et ajuster pour 5 produits */
    .product .container {
        max-width: 1600px !important;
        margin: 0 auto !important;
    }
    
    /* Centrer la grille de produits */
    .product .container .row.g-4,
    .product .container .tab-content .row.g-4 {
        justify-content: center !important;
    }
    
    /* Forcer explicitement 5 produits - dernière tentative avec sélecteur ultra-spécifique */
    .container-fluid.product .container.py-5 .tab-class .tab-content .row.g-4 > div[class*="col-xl-3"],
    .container-fluid.product .container.py-5 .tab-content .row.g-4 > div[class*="col-xl-3"],
    .container-fluid.product .container .tab-class .tab-content .row.g-4 > div[class*="col-xl-3"],
    .container-fluid.product .container .tab-content .row.g-4 > div[class*="col-xl-3"] {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* Surcharger Bootstrap col-xl-3 de manière globale pour les écrans 24 pouces */
/* Forcer 5 produits (20% chacun) au lieu de 4 produits (25%) */
@media (min-width: 1920px) {
    /* Utiliser un sélecteur qui cible directement tous les éléments avec col-xl-3 dans product */
    div.product div[class*="col-xl-3"],
    div.product div.col-xl-3,
    .product div[class*="col-xl-3"],
    .product div.col-xl-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* Ajustements du viewport pour éviter le zoom sur mobile */
@media (max-width: 767.98px) {
    body {
        font-size: 0.9rem;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: calc(1rem + 0.5vw);
    }
}

/* Optimisation pour les écrans moyens (14 pouces) */
@media (min-width: 992px) and (max-width: 1366px) {
    .container {
        max-width: 1200px;
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    .header-carousel-item {
        height: 660px; /* Augmenté encore plus */
    }
}

/* Optimisation pour les très grands écrans (24 pouces et plus) */
@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
    
    .modern-slide-container {
        max-width: 100%;
    }
    
    .header-carousel-item {
        height: 840px; /* Augmenté encore plus */
    }
    
    .offer-card-inner {
        padding: 2.5rem;
    }
    
    .offer-product-name {
        font-size: 1.3rem;
    }
    
    .offer-current-price {
        font-size: 2.2rem;
    }
}

/* ===== Ajustements supplémentaires pour tous les composants ===== */

/* Page Header responsive */
@media (max-width: 767.98px) {
    .page-header {
        padding: 2rem 0 !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
}

@media (min-width: 1920px) {
    .page-header {
        padding: 4rem 0 !important;
    }
    
    .page-header h1 {
        font-size: 3rem !important;
    }
}

/* Shop page sidebar responsive */
@media (max-width: 991.98px) {
    .shop .product-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .shop .categories-item {
        flex: 0 0 auto;
    }
}

/* User Dropdown Menu */
.user-dropdown-menu {
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    margin-top: 0.5rem;
}

.user-dropdown-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.user-dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.user-dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #20c997;
    padding-left: 2rem;
}

.user-dropdown-menu .dropdown-divider {
    margin: 0;
}

.user-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #20c997;
    border-radius: 50%;
    border: 2px solid white;
}

.header-icon-link {
    position: relative;
}

.header-icon-link.dropdown-toggle::after {
    display: none;
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    pointer-events: none;
}

.toast-notification {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border-left: 4px solid;
    min-width: 320px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.toast-success {
    border-left-color: #20c997;
}

.toast-notification.toast-error {
    border-left-color: #dc2626;
}

.toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.toast-success .toast-icon {
    background: #d1e7dd;
    color: #0f5132;
}

.toast-error .toast-icon {
    background: #f8d7da;
    color: #842029;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.toast-product {
    font-size: 0.85rem;
    color: #20c997;
    font-weight: 600;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e0e0e0;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.875rem;
    transition: all 0.2s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.toast-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Animation pour le bouton d'ajout au panier */
.cart-added-animation {
    animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animation pour l'icône du panier */
.cart-updated {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2) rotate(-5deg); }
    75% { transform: scale(1.2) rotate(5deg); }
}

/* Responsive Toast */
@media (max-width: 767.98px) {
    .toast-container {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: 100%;
    }
    
    .toast-notification {
        min-width: auto;
        width: 100%;
    }
}

/* Copyright Section - Style moderne et centré */
.copyright {
    background: #20c997 !important;
    padding: 1.5rem 0 !important;
}

.copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.copyright-brand {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.copyright-separator {
    margin: 0 0.75rem;
    opacity: 0.7;
}

.copyright-tagline {
    font-weight: 500;
}

.copyright-year {
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer responsive */
@media (max-width: 767.98px) {
    .footer {
        padding: 2rem 0 !important;
        text-align: center;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .copyright {
        padding: 1.25rem 0 !important;
    }
    
    .copyright-content p {
        font-size: 0.9rem;
    }
    
    .copyright-year {
        font-size: 0.85rem;
    }
}

/* Copyright - Écran 24 pouces */
@media (min-width: 1920px) {
    .copyright {
        padding: 2rem 0 !important;
    }
    
    .copyright .container {
        max-width: 1800px !important;
    }
    
    .copyright-content p {
        font-size: 1.15rem !important;
    }
    
    .copyright-year {
        font-size: 1rem !important;
    }
}

/* Footer - Écran 24 pouces - Tailles réduites */
@media (min-width: 1920px) {
    .footer {
        padding: 2.5rem 0 !important;
    }
    
    .footer .container {
        max-width: 1400px !important;
        margin: 0 auto;
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Réduire le padding py-5 du container */
    .footer .container.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .footer .container-fluid {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    /* Section Contact Info - 4 colonnes sur une seule ligne */
    .footer .row.g-4.rounded {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 1.25rem !important;
        justify-content: space-between !important;
        align-items: stretch !important;
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    
    .footer .row.g-4.rounded > .col-md-6.col-lg-6.col-xl-3 {
        flex: 1 1 23% !important;
        max-width: 23% !important;
        min-width: 0 !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .footer .row.g-4.rounded .rounded.p-4 {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1.25rem 1rem !important;
    }
    
    /* Réduire le padding de toutes les divs du footer */
    .footer .row {
        margin-left: -0.75rem !important;
        margin-right: -0.75rem !important;
    }
    
    .footer .row > [class*="col-"] {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    /* Titres et textes de contact */
    .footer .row.g-4.rounded h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.625rem !important;
    }
    
    .footer .row.g-4.rounded p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Icônes de contact */
    .footer .rounded-circle.bg-secondary {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem !important;
    }
    
    .footer .rounded-circle.bg-secondary i {
        font-size: 1.2rem !important;
    }
    
    /* Colonnes footer Newsletter et Pages */
    .footer .row.g-5 {
        gap: 2.5rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Réduire les marges de toutes les sections du footer */
    .footer .row.g-4 {
        margin-bottom: 1rem !important;
    }
    
    .footer .row.g-4.rounded {
        margin-bottom: 0.75rem !important;
    }
    
    .footer .col-md-6.col-lg-5 {
        flex: 0 0 45% !important;
        max-width: 45% !important;
    }
    
    /* Newsletter section */
    .footer-item h4 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-item p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Input et bouton newsletter */
    .footer-item .form-control {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .footer-item .btn {
        padding: 0.625rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Centrer le bouton newsletter sur écran 24 pouces */
    .footer-item form {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .footer-item form .input-group,
    .footer-item form .position-relative {
        width: 100% !important;
        max-width: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .footer-item form .form-control {
        width: 100% !important;
        position: relative !important;
        margin-bottom: 0 !important;
    }
    
    .footer-item form .btn {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 500px !important;
    }
    
    .footer-item .position-relative {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-item .position-relative .form-control {
        width: 100% !important;
        max-width: 500px !important;
    }
    
    .footer-item .position-relative .btn {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 500px !important;
    }
    
    /* Links Pages du site */
    .footer-item a {
        font-size: 0.95rem !important;
        padding: 0.625rem 0 !important;
        margin-bottom: 0.4rem !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .footer-item a i {
        font-size: 0.85rem !important;
        margin-right: 0.75rem !important;
    }
}

/* Single product page responsive */
@media (max-width: 767.98px) {
    .single-product-header {
        padding: 2rem 0 !important;
    }
    
    .single-product-title {
        font-size: 1.5rem !important;
    }
}

@media (min-width: 1920px) {
    .single-product-header {
        padding: 3rem 0 !important;
    }
    
    .single-product-title {
        font-size: 2.5rem !important;
    }
}

/* Cart Page - Écrans 14-15 pouces (1366px - 1919px) */
@media (min-width: 1366px) and (max-width: 1919.98px) {
    /* Réduire les tailles des composants du panier */
    .cart-page-modern {
        padding: 2rem 0 !important;
    }
    
    .cart-page-modern .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Cart Header */
    .cart-header-modern {
        margin-bottom: 1rem !important;
    }
    
    .cart-title-modern {
        font-size: 1.5rem !important;
    }
    
    .cart-count-badge {
        padding: 0.4rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Cart Items */
    .cart-items-modern {
        gap: 1rem !important;
    }
    
    .cart-item-card-modern {
        padding: 1.25rem !important;
        gap: 1rem !important;
        border-radius: 12px !important;
    }
    
    .cart-item-img,
    .cart-item-placeholder {
        width: 80px !important;
        height: 80px !important;
        border-radius: 10px !important;
    }
    
    .cart-item-placeholder {
        font-size: 1.5rem !important;
    }
    
    .cart-item-name-modern {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .cart-item-price-modern {
        font-size: 0.95rem !important;
    }
    
    /* Quantity Control */
    .quantity-control-modern {
        padding: 0.4rem !important;
        gap: 0.4rem !important;
    }
    
    .quantity-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    .quantity-input-modern {
        width: 50px !important;
        font-size: 0.95rem !important;
    }
    
    /* Cart Item Total */
    .cart-item-total-modern {
        min-width: 100px !important;
    }
    
    .cart-item-subtotal {
        font-size: 1.1rem !important;
    }
    
    /* Remove Button */
    .cart-remove-btn-modern {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
    
    /* Cart Summary */
    .cart-summary-modern {
        border-radius: 16px !important;
        top: 90px !important;
    }
    
    .cart-summary-header {
        padding: 1.25rem !important;
    }
    
    .cart-summary-title-modern {
        font-size: 1.3rem !important;
    }
    
    .cart-summary-body {
        padding: 1.25rem !important;
    }
    
    .cart-summary-row-modern {
        margin-bottom: 0.875rem !important;
        font-size: 0.95rem !important;
    }
    
    .cart-summary-total-modern .cart-summary-label-modern {
        font-size: 1.1rem !important;
    }
    
    .cart-summary-value-modern-total {
        font-size: 1.5rem !important;
    }
    
    .cart-summary-footer {
        padding: 1.25rem !important;
        gap: 0.625rem !important;
    }
    
    .btn-checkout-modern {
        padding: 0.875rem 1.25rem !important;
        font-size: 1rem !important;
    }
    
    .btn-continue-shopping {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Cart Empty State */
    .cart-empty-state {
        padding: 4rem 1.5rem !important;
    }
    
    .cart-empty-icon {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .cart-empty-icon i {
        font-size: 3rem !important;
    }
    
    .cart-empty-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.875rem !important;
    }
    
    .cart-empty-text {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-primary-modern {
        padding: 0.75rem 1.75rem !important;
        font-size: 0.95rem !important;
    }
}

/* Cart and Checkout responsive */
@media (max-width: 767.98px) {
    .cart-summary-box,
    .checkout-summary {
        margin-top: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .cart-summary-box,
    .checkout-summary {
        padding: 2rem;
    }
}

/* Navigation arrows responsive */
@media (max-width: 1200px) {
    .header-carousel.owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .header-carousel.owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    
    .header-carousel.owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (min-width: 1920px) {
    .header-carousel.owl-carousel .owl-nav button {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .header-carousel.owl-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
    
    .header-carousel.owl-carousel .owl-nav button.owl-next {
        right: -30px;
    }
}

/* ===== Products Offer Section ===== */
.products-offer-section {
    background: #F9FAFB;
    padding: 3rem 0 !important;
}

.products-offer-section .container .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.products-offer-section .row .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    float: none !important;
    display: block !important;
}

@media (min-width: 992px) {
    .products-offer-section .row {
        margin-left: -0.75rem !important;
        margin-right: -0.75rem !important;
    }
    
    .products-offer-section .row .col-lg-6 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

@media (max-width: 991.98px) {
    .products-offer-section .row .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Écrans moyens (1000px - 1365px) - Assurer 2 bannières par ligne pour écran 14 pouces */
@media (min-width: 1000px) and (max-width: 1365.98px) {
    .products-offer-section .row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Forcer 2 bannières par ligne */
    .products-offer-section .row .col-lg-6 {
        flex: 0 0 calc(50% - 0.75rem) !important;
        max-width: calc(50% - 0.75rem) !important;
        width: calc(50% - 0.75rem) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Si une seule bannière, la centrer */
    .products-offer-section .row .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ===== Header Bannières Promotionnelles ===== */
.promotional-banners-header {
    margin-bottom: 3rem;
}

.promotional-banners-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.promotional-banners-slogan {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* ===== Bannière Promotionnelle Multi-Produits (Style Parfums) ===== */
.promotional-banner-multi-products {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
}

.promo-banner-multi-bg {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, 
        #fef3e2 0%, 
        #fde8d4 30%,
        #fce4d6 60%,
        #fef3e2 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Ovale de lumière en arrière-plan */
.promo-light-oval {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Éléments décoratifs - Feuilles */
.promo-decorative-elements-multi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.promo-leaf-multi {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(22, 163, 74, 0.4) 100%);
    border-radius: 50% 0 50% 0;
    animation: floatLeafMulti 6s ease-in-out infinite;
}

.promo-leaf-multi-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-20deg);
}

.promo-leaf-multi-2 {
    top: 12%;
    left: 8%;
    animation-delay: 1.5s;
    transform: rotate(15deg);
    width: 45px;
    height: 45px;
}

.promo-leaf-multi-3 {
    top: 10%;
    right: 6%;
    animation-delay: 3s;
    transform: rotate(-25deg);
    width: 50px;
    height: 50px;
}

.promo-leaf-multi-4 {
    top: 15%;
    right: 10%;
    animation-delay: 4.5s;
    transform: rotate(20deg);
    width: 40px;
    height: 40px;
}

@keyframes floatLeafMulti {
    0%, 100% {
        transform: translateY(0) rotate(var(--leaf-rot, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(calc(var(--leaf-rot, 0deg) + 10deg));
    }
}

/* Contenu principal */
.promo-multi-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Affichage des produits */
.promo-products-display {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.promo-product-item {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-product-pedestal-multi {
    position: relative;
    width: 200px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 100%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.8),
        inset 0 -2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 1rem;
}

.promo-product-item:hover .promo-product-pedestal-multi {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.promo-product-link-multi {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.promo-product-image-wrapper-multi {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.promo-product-img-multi {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.promo-product-item:hover .promo-product-img-multi {
    transform: scale(1.1) translateY(-5px);
}

.promo-product-placeholder-multi {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #999;
    font-size: 3rem;
}

.promo-product-info-multi {
    text-align: center;
    width: 100%;
}

.promo-product-name-multi {
    font-size: 1.1rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.promo-product-desc-multi {
    font-size: 0.85rem;
    color: #92400e;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.5rem;
}

.promo-product-price-multi {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.promo-price-old-multi {
    font-size: 0.9rem;
    color: #a3a3a3;
    text-decoration: line-through;
}

.promo-price-new-multi {
    font-size: 1.25rem;
    font-weight: 700;
    color: #78350f;
}

/* Éléments décoratifs spécifiques aux produits */
.promo-product-decorative {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    pointer-events: none;
}

/* Baies/Fruits */
.promo-decor-berry {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #7c2d12 0%, #991b1b 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(124, 45, 18, 0.4);
    animation: floatBerry 3s ease-in-out infinite;
}

.promo-decor-berry-1 {
    animation-delay: 0s;
}

.promo-decor-berry-2 {
    animation-delay: 1.5s;
}

/* Fleurs */
.promo-decor-flower {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(253, 230, 138, 0.4);
    animation: floatFlower 4s ease-in-out infinite;
}

/* Ambre */
.promo-decor-amber {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(217, 119, 6, 0.4);
    animation: floatAmber 3.5s ease-in-out infinite;
}

/* Café */
.promo-decor-coffee {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #78350f 0%, #451a03 100%);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(69, 26, 3, 0.4);
    animation: floatCoffee 3s ease-in-out infinite;
}

.promo-decor-coffee-1 {
    animation-delay: 0s;
}

.promo-decor-coffee-2 {
    animation-delay: 1.5s;
}

/* Vanille */
.promo-decor-vanilla {
    width: 35px;
    height: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(253, 230, 138, 0.4);
    animation: floatVanilla 4s ease-in-out infinite;
}

@keyframes floatBerry {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatFlower {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

@keyframes floatAmber {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

@keyframes floatCoffee {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes floatVanilla {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

/* Informations en bas */
.promo-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(120, 53, 15, 0.2);
    margin-top: 2rem;
}

.promo-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.promo-edp-label {
    font-size: 0.75rem;
    color: #92400e;
    font-weight: 500;
    letter-spacing: 1px;
}

.promo-edp-large {
    font-size: 2rem;
    font-weight: 800;
    color: #78350f;
    letter-spacing: 2px;
}

.promo-bottom-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.promo-start-from {
    font-size: 0.85rem;
    color: #92400e;
    font-weight: 500;
    letter-spacing: 1px;
}

.promo-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #78350f;
}

.promo-price-large small {
    font-size: 1.5rem;
    font-weight: 600;
}

.promo-bottom-right {
    display: flex;
    align-items: center;
}

.promo-shop-now-btn {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(120, 53, 15, 0.3);
    transition: all 0.3s ease;
}

.promo-shop-now-btn:hover {
    background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 53, 15, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .promo-products-display {
        gap: 2rem;
    }
    
    .promo-product-pedestal-multi {
        width: 180px;
    }
}

@media (max-width: 991.98px) {
    .promo-banner-multi-bg {
        padding: 3rem 2rem;
        min-height: 550px;
    }
    
    .promo-products-display {
        gap: 1.5rem;
    }
    
    .promo-product-pedestal-multi {
        width: 160px;
    }
    
    .promo-product-image-wrapper-multi {
        height: 200px;
    }
    
    .promo-bottom-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .promo-banner-multi-bg {
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }
    
    .promo-products-display {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .promo-product-pedestal-multi {
        width: 200px;
    }
    
    .promo-product-image-wrapper-multi {
        height: 220px;
    }
    
    .promo-edp-large {
        font-size: 1.5rem;
    }
    
    .promo-price-large {
        font-size: 2rem;
    }
    
    .promo-shop-now-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ===== Bannières Promotionnelles avec Auto-Change ===== */
.promotional-banners-wrapper {
    position: relative;
    width: 100%;
}

.promotional-banners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.promo-banner-item {
    position: relative;
    transition: opacity 0.6s ease, transform 0.6s ease, z-index 0s;
    width: 100%;
}

.promo-banner-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.promo-banner-item:not(.active) {
    opacity: 0.7;
    transform: scale(0.95);
    z-index: 1;
}

/* Si une seule bannière, prendre toute la largeur */
.promo-banner-item.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Si plusieurs bannières, afficher côte à côte sur écrans moyens et plus */
@media (min-width: 768px) {
    .promo-banner-item.col-md-6 {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

/* ===== Bannières Promotionnelles Style 3D Moderne ===== */
.promotional-banner-3d {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 350px;
    min-height: 350px;
    max-height: 350px;
    margin-bottom: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
    overflow: hidden;
}

/* Border innovant avec gradient animé - Style professionnel Alrehab */
.promotional-banner-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 3px;
    background: linear-gradient(135deg, 
        #F28B00 0%, 
        #F92400 25%, 
        #D97706 50%, 
        #EA580C 75%, 
        #F28B00 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: gradientBorder 3s ease infinite;
    z-index: 1;
}

@keyframes gradientBorder {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.promotional-banner-3d:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promotional-banner-3d:hover::before {
    animation-duration: 1.5s;
    background-size: 200% 200%;
}

.promo-banner-link-3d {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.promo-banner-link-3d:hover {
    text-decoration: none;
    color: inherit;
}

.promo-banner-bg-3d {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    background: linear-gradient(to bottom, 
        #F28B00 0%, 
        #EA580C 15%,
        #F92400 30%,
        #F97316 45%,
        #FB923C 60%,
        #FED7AA 75%,
        #FFF7ED 90%,
        #ffffff 100%);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    z-index: 0;
    box-sizing: border-box;
}

/* Éléments décoratifs - Éclaboussures d'eau */
.promo-banner-bg-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 35%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 35%);
    border-radius: 32px;
    z-index: 1;
    pointer-events: none;
    animation: waterSplash 4s ease-in-out infinite;
}

@keyframes waterSplash {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Éléments décoratifs */
.promo-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Feuilles décoratives - Style professionnel */
.promo-leaf {
    position: absolute;
    background: linear-gradient(135deg, rgba(242, 139, 0, 0.35) 0%, rgba(249, 36, 0, 0.45) 100%);
    border-radius: 50% 0 50% 0;
    animation: floatLeaf 6s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(249, 36, 0, 0.25);
}

.promo-leaf::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    border-radius: inherit;
}

.promo-leaf-1 {
    width: 100px;
    height: 100px;
    top: 8%;
    left: 3%;
    animation-delay: 0s;
    --leaf-rotation: -15deg;
    transform: rotate(-15deg);
}

.promo-leaf-2 {
    width: 80px;
    height: 80px;
    top: 75%;
    left: 5%;
    animation-delay: 2s;
    --leaf-rotation: 25deg;
    transform: rotate(25deg);
}

.promo-leaf-3 {
    width: 90px;
    height: 90px;
    top: 15%;
    right: 8%;
    animation-delay: 4s;
    --leaf-rotation: -20deg;
    transform: rotate(-20deg);
}

/* Éléments décoratifs circulaires - Style professionnel */
.promo-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 237, 213, 0.85) 0%, 
        rgba(254, 215, 170, 0.9) 50%,
        rgba(251, 146, 60, 0.8) 100%);
    animation: floatFruit 5s ease-in-out infinite;
    box-shadow: 
        0 8px 20px rgba(242, 139, 0, 0.35),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.promo-circle::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.promo-circle-1 {
    width: 140px;
    height: 140px;
    bottom: 8%;
    right: 8%;
    animation-delay: 1s;
    --fruit-rotation: 15deg;
    transform: rotate(15deg);
}

.promo-circle-2 {
    width: 110px;
    height: 110px;
    top: 55%;
    left: 2%;
    animation-delay: 3s;
    --fruit-rotation: -25deg;
    transform: rotate(-25deg);
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(var(--leaf-rotation, 0deg));
    }
    50% {
        transform: translateY(-25px) rotate(calc(var(--leaf-rotation, 0deg) + 15deg));
    }
}

@keyframes floatFruit {
    0%, 100% {
        transform: translateY(0) rotate(var(--fruit-rotation, 0deg)) scale(1);
    }
    50% {
        transform: translateY(-15px) rotate(calc(var(--fruit-rotation, 0deg) + 10deg)) scale(1.05);
    }
}

/* Contenu de la bannière */
.promo-banner-content-3d {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    box-sizing: border-box;
}

/* Texte gauche */
.promo-text-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    height: 100%;
    overflow: hidden;
}

.promo-subtitle-3d {
    font-size: 0.9rem;
    color: #B45309;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.promo-discount-3d {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.promo-discount-percent {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-discount-off {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Produit au centre avec effet 3D */
.promo-product-center-3d {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    width: 200px;
    height: 250px;
    flex-shrink: 0;
}

.promo-product-wrapper-3d {
    position: relative;
    transform-style: preserve-3d;
    animation: floatProduct 3s ease-in-out infinite;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

.promo-product-shadow-3d {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(242, 139, 0, 0.25) 0%, rgba(249, 36, 0, 0.2) 50%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.8;
    }
}

.promo-product-pedestal-3d {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 247, 237, 0.5) 50%,
        rgba(255, 255, 255, 0.7) 100%);
    border-radius: 15px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.6),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(242, 139, 0, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.promo-product-image-3d {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: 
        drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3))
        drop-shadow(0 5px 15px rgba(242, 139, 0, 0.2));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.promotional-banner-3d:hover .promo-product-image-3d {
    transform: scale(1.1) translateY(-15px) rotateY(5deg);
    filter: 
        drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4))
        drop-shadow(0 8px 20px rgba(242, 139, 0, 0.3));
}

/* Texte droite */
.promo-text-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.75rem;
    text-align: right;
    height: 100%;
    overflow: hidden;
}

.promo-title-3d {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 4.2rem;
}

.promo-price-3d {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.promo-price-old {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: line-through;
    opacity: 0.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.promo-price-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-limited-3d {
    font-size: 0.85rem;
    font-weight: 600;
    color: #B45309;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .promo-banner-content-3d {
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .promo-discount-percent {
        font-size: 3.5rem;
    }
    
    .promo-title-3d {
        font-size: 2rem;
    }
}

/* Écrans de 14 pouces (1366px - 1440px) */
@media (min-width: 1366px) and (max-width: 1440px) {
    .promotional-banner-3d {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }
    
    .promo-banner-bg-3d {
        padding: 1.75rem 1.25rem;
        min-height: 300px;
        max-height: 300px;
    }
    
    .promo-banner-content-3d {
        gap: 1rem;
    }
    
    .promo-product-center-3d {
        width: 160px;
        height: 200px;
    }
    
    .promo-product-shadow-3d {
        width: 160px;
        height: 35px;
    }
    
    .promo-product-pedestal-3d {
        width: 160px;
        height: 20px;
    }
    
    .promo-discount-percent {
        font-size: 2.25rem;
    }
    
    .promo-discount-off {
        font-size: 1rem;
    }
    
    .promo-title-3d {
        font-size: 1.4rem;
    }
    
    .promo-price-old {
        font-size: 0.95rem;
    }
    
    .promo-price-new {
        font-size: 1.4rem;
    }
    
    .promo-subtitle-3d {
        font-size: 0.85rem;
    }
    
    .promo-limited-3d {
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .promotional-banner-3d {
        height: 350px;
        min-height: 350px;
        max-height: 350px;
    }
    
    .promo-banner-bg-3d {
        padding: 2rem 1.5rem;
        min-height: 350px;
        max-height: 350px;
    }
    
    .promo-banner-content-3d {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .promo-text-left,
    .promo-text-right {
        align-items: center;
        text-align: center;
    }
    
    .promo-product-center-3d {
        order: 2;
    }
    
    .promo-text-left {
        order: 1;
    }
    
    .promo-text-right {
        order: 3;
    }
    
    .promo-discount-percent {
        font-size: 3rem;
    }
    
    .promo-title-3d {
        font-size: 1.5rem;
    }
    
    .promo-price-new {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .promotional-banner-3d {
        height: 380px;
        min-height: 380px;
        max-height: 380px;
        margin-bottom: 1.5rem;
    }
    
    .promotional-banner-3d::before {
        padding: 2px;
        border-radius: 24px;
    }
    
    .promo-banner-bg-3d {
        padding: 2.5rem 1.5rem;
        min-height: 380px;
        max-height: 380px;
        border-radius: 24px;
    }
    
    .promo-banner-content-3d {
        gap: 2rem;
    }
    
    .promo-product-center-3d {
        width: 180px;
        height: 220px;
    }
    
    .promo-product-shadow-3d {
        width: 180px;
        height: 35px;
    }
    
    .promo-product-pedestal-3d {
        width: 180px;
        height: 22px;
    }
    
    .promo-discount-percent {
        font-size: 3rem;
    }
    
    .promo-discount-off {
        font-size: 1.25rem;
    }
    
    .promo-title-3d {
        font-size: 1.5rem;
    }
    
    .promo-price-old {
        font-size: 1.25rem;
    }
    
    .promo-price-new {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .promotional-banners-title {
        font-size: 1.75rem;
    }
    
    .promotional-banners-slogan {
        font-size: 1rem;
    }
    
    
    .promotional-banner-3d {
        height: 350px;
        min-height: 350px;
        max-height: 350px;
    }
    
    .promo-banner-bg-3d {
        padding: 2rem 1.25rem;
        min-height: 350px;
        max-height: 350px;
    }
    
    .promo-banner-content-3d {
        gap: 1.5rem;
    }
    
    .promo-product-center-3d {
        width: 140px;
        height: 180px;
    }
    
    .promo-product-shadow-3d {
        width: 140px;
        height: 30px;
    }
    
    .promo-product-pedestal-3d {
        width: 140px;
        height: 18px;
    }
    
    .promo-discount-percent {
        font-size: 2.5rem;
    }
    
    .promo-title-3d {
        font-size: 1.25rem;
    }
    
    .promo-price-new {
        font-size: 1.5rem;
    }
}

/* Responsive pour le carrousel */
@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
    .promotional-banners-title {
        font-size: 2rem;
    }
    
    .promotional-banners-slogan {
        font-size: 1.1rem;
    }
    
}

.product-offer-banner {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    width: 100%;
    opacity: 0;
    animation: slideInFade 0.8s ease-out forwards;
    display: block;
}

.product-offer-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.product-offer-right {
    animation: slideInFromRight 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.product-offer-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.offer-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.offer-banner-link:hover {
    text-decoration: none;
    color: inherit;
}

.offer-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    gap: 2rem;
    min-height: 280px;
}

.offer-banner-text {
    flex: 1;
    min-width: 0;
}

.offer-banner-subtitle {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.offer-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #20c997;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offer-banner-discount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.discount-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -2px;
}

.discount-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: #20c997;
    line-height: 1;
}

.offer-banner-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.offer-banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.offer-banner-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: imageFadeIn 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.product-offer-banner:hover .offer-banner-image img {
    transform: scale(1.05);
}

/* Responsive pour Products Offer */

/* Très petits écrans (max-width: 575px) */
@media (max-width: 575.98px) {
    .products-offer-section {
        padding: 1rem 0 !important;
    }
    
    .products-offer-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .products-offer-section .row {
        gap: 0.75rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .products-offer-section .row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .product-offer-banner {
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }
    
    .product-offer-left,
    .product-offer-right {
        animation: slideInFade 0.8s ease-out forwards;
    }
    
    .offer-banner-content {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        min-height: auto;
        gap: 1rem;
    }
    
    .offer-banner-text {
        width: 100%;
        order: 1;
    }
    
    .offer-banner-image {
        position: relative;
        width: 100%;
        padding-top: 70%;
        margin-top: 0.5rem;
        order: 2;
        overflow: hidden;
        background: #F9FAFB;
        border-radius: 8px;
    }
    
    .offer-banner-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .discount-percentage {
        font-size: 1.75rem;
        letter-spacing: -1px;
    }
    
    .discount-text {
        font-size: 1rem;
    }
    
    .offer-banner-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .offer-banner-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .offer-banner-discount {
        gap: 0.25rem;
        justify-content: center;
    }
}

/* Mobile petits (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .products-offer-section {
        padding: 1.5rem 0 !important;
    }
    
    .products-offer-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .products-offer-section .row {
        gap: 1rem !important;
    }
    
    .product-offer-banner {
        border-radius: 14px;
    }
    
    .product-offer-left,
    .product-offer-right {
        animation: slideInFade 0.8s ease-out forwards;
    }
    
    .offer-banner-content {
        flex-direction: column;
        padding: 1.25rem;
        text-align: center;
        min-height: auto;
        gap: 1rem;
    }
    
    .offer-banner-text {
        width: 100%;
        order: 1;
    }
    
    .offer-banner-image {
        position: relative;
        width: 100%;
        padding-top: 70%;
        margin-top: 0.75rem;
        order: 2;
        overflow: hidden;
        background: #F9FAFB;
        border-radius: 8px;
    }
    
    .offer-banner-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .discount-percentage {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .discount-text {
        font-size: 1.25rem;
    }
    
    .offer-banner-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .offer-banner-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
    }
    
    .offer-banner-discount {
        gap: 0.375rem;
        justify-content: center;
    }
}

/* Tablettes et petits écrans (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .products-offer-section {
        padding: 2rem 0 !important;
    }
    
    .products-offer-section .container {
        max-width: 100% !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .products-offer-section .row {
        gap: 1.5rem !important;
    }
    
    .product-offer-banner {
        border-radius: 16px;
    }
    
    .product-offer-left,
    .product-offer-right {
        animation: slideInFade 0.8s ease-out forwards;
    }
    
    .offer-banner-content {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        min-height: auto;
        gap: 1.25rem;
    }
    
    .offer-banner-text {
        width: 100%;
        order: 1;
    }
    
    .offer-banner-image {
        position: relative;
        width: 100%;
        padding-top: 70%;
        margin-top: 1rem;
        order: 2;
        overflow: hidden;
        background: #F9FAFB;
        border-radius: 8px;
    }
    
    .offer-banner-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .discount-percentage {
        font-size: 2.5rem;
    }
    
    .discount-text {
        font-size: 1.5rem;
    }
    
    .offer-banner-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .offer-banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .offer-banner-discount {
        gap: 0.5rem;
        justify-content: center;
    }
}

/* Écrans moyens-grands (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .products-offer-section {
        padding: 2.5rem 0 !important;
    }
    
    .products-offer-section .container {
        max-width: 960px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .products-offer-section .row {
        gap: 1.5rem !important;
    }
    
    .product-offer-banner {
        min-height: 280px;
        border-radius: 16px;
    }
    
    .offer-banner-content {
        padding: 1.75rem 2rem;
        gap: 1.5rem;
        min-height: 280px;
        flex-direction: row;
        text-align: left;
    }
    
    .offer-banner-text {
        flex: 1;
        order: 1;
    }
    
    .offer-banner-image {
        width: 240px;
        height: 240px;
        flex-shrink: 0;
        order: 2;
        margin-top: 0;
    }
    
    .offer-banner-image img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .discount-percentage {
        font-size: 3rem;
    }
    
    .discount-text {
        font-size: 1.5rem;
    }
    
    .offer-banner-title {
        font-size: 1.4rem;
        margin-bottom: 0.875rem;
    }
    
    .offer-banner-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .offer-banner-discount {
        gap: 0.5rem;
        justify-content: flex-start;
    }
}

/* Écrans grands (1200px - 1365px) */
@media (min-width: 1200px) and (max-width: 1365.98px) {
    .products-offer-section {
        padding: 2.5rem 0 !important;
    }
    
    .products-offer-section .container {
        max-width: 1140px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .products-offer-section .row {
        gap: 2rem !important;
    }
    
    .product-offer-banner {
        min-height: 320px;
        border-radius: 18px;
    }
    
    .offer-banner-content {
        padding: 2rem 2.5rem;
        gap: 2rem;
        min-height: 320px;
        flex-direction: row;
        text-align: left;
    }
    
    .offer-banner-text {
        flex: 1;
        order: 1;
    }
    
    .offer-banner-image {
        width: 280px;
        height: 280px;
        flex-shrink: 0;
        order: 2;
        margin-top: 0;
    }
    
    .offer-banner-image img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .discount-percentage {
        font-size: 3.5rem;
    }
    
    .discount-text {
        font-size: 1.75rem;
    }
    
    .offer-banner-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .offer-banner-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .offer-banner-discount {
        gap: 0.5rem;
        justify-content: flex-start;
    }
}

/* Écrans très grands (1366px - 1919px) - 14-15 pouces */
@media (min-width: 1366px) and (max-width: 1919.98px) {
    .products-offer-section {
        padding: 2.5rem 0 !important;
    }
    
    .products-offer-section .container {
        max-width: 1320px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .products-offer-section .row {
        gap: 1.5rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    /* Forcer 2 bannières par ligne sur écran 14 pouces */
    .products-offer-section .row .col-lg-6 {
        flex: 0 0 calc(50% - 0.75rem) !important;
        max-width: calc(50% - 0.75rem) !important;
        width: calc(50% - 0.75rem) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Si une seule bannière, la centrer */
    .products-offer-section .row .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .product-offer-banner {
        min-height: 340px;
        border-radius: 18px;
    }
    
    .offer-banner-content {
        padding: 2rem 2.5rem;
        gap: 2rem;
        min-height: 340px;
        flex-direction: row;
        text-align: left;
    }
    
    .offer-banner-text {
        flex: 1;
        order: 1;
    }
    
    .offer-banner-image {
        width: 300px;
        height: 300px;
        flex-shrink: 0;
        order: 2;
        margin-top: 0;
    }
    
    .offer-banner-image img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .discount-percentage {
        font-size: 4rem;
    }
    
    .discount-text {
        font-size: 2rem;
    }
    
    .offer-banner-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .offer-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .offer-banner-discount {
        gap: 0.5rem;
        justify-content: flex-start;
    }
}

/* Écrans 24 pouces et plus (1920px+) */
@media (min-width: 1920px) {
    .products-offer-section {
        padding: 3rem 0 !important;
    }
    
    .products-offer-section .container {
        max-width: 1600px !important;
    }
    
    .products-offer-section .row {
        display: flex !important;
        flex-wrap: wrap !important; /* Permet le retour à la ligne */
        justify-content: center !important;
        gap: 2.5rem !important;
    }
    
    /* Forcer 2 bannières par ligne sur écran 24 pouces */
    .products-offer-section .row .col-lg-6 {
        flex: 0 0 calc(50% - 1.25rem) !important;
        max-width: calc(50% - 1.25rem) !important;
        width: calc(50% - 1.25rem) !important;
    }
    
    /* Si une seule bannière, la centrer */
    .products-offer-section .row .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .product-offer-banner {
        min-height: 400px;
        border-radius: 20px;
    }
    
    .offer-banner-content {
        padding: 2.5rem 3rem !important;
        min-height: 400px;
        gap: 2.5rem;
    }
    
    .offer-banner-image {
        width: 400px !important;
        height: 400px !important;
        flex-shrink: 0;
    }
    
    .offer-banner-text {
        flex: 1;
        min-width: 0;
    }
    
    .discount-percentage {
        font-size: 5.5rem !important;
        font-weight: 900;
    }
    
    .discount-text {
        font-size: 2.75rem !important;
    }
    
    .offer-banner-title {
        font-size: 2.25rem !important;
        margin-bottom: 1.25rem;
    }
    
    .offer-banner-subtitle {
        font-size: 1.15rem !important;
        margin-bottom: 1rem;
    }
}

/* Écrans ultra larges (2560px+) */
@media (min-width: 2560px) {
    .products-offer-section {
        padding: 3.5rem 0 !important;
    }
    
    .products-offer-section .container {
        max-width: 1800px !important;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .products-offer-section .row {
        gap: 3rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .products-offer-section .row .col-lg-6 {
        flex: 0 0 calc(50% - 1.5rem) !important;
        max-width: calc(50% - 1.5rem) !important;
        width: calc(50% - 1.5rem) !important;
    }
    
    .product-offer-banner {
        min-height: 450px;
        border-radius: 24px;
    }
    
    .offer-banner-content {
        padding: 3rem 3.5rem !important;
        min-height: 450px;
        gap: 3rem;
        flex-direction: row;
        text-align: left;
    }
    
    .offer-banner-text {
        flex: 1;
        min-width: 0;
        order: 1;
    }
    
    .offer-banner-image {
        width: 450px !important;
        height: 450px !important;
        flex-shrink: 0;
        order: 2;
        margin-top: 0;
    }
    
    .offer-banner-image img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .discount-percentage {
        font-size: 6rem !important;
        font-weight: 900;
    }
    
    .discount-text {
        font-size: 3rem !important;
    }
    
    .offer-banner-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .offer-banner-subtitle {
        font-size: 1.25rem !important;
        margin-bottom: 1.25rem;
    }
    
    .offer-banner-discount {
        gap: 1rem;
        justify-content: flex-start;
    }
}

/* Support pour une seule bannière (col-lg-12) */
@media (min-width: 992px) {
    .products-offer-section .row .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .products-offer-section .row .col-lg-12 .offer-banner-content {
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    @media (min-width: 1920px) {
        .products-offer-section .row .col-lg-12 .offer-banner-content {
            max-width: 1400px;
        }
    }
    
    @media (min-width: 2560px) {
        .products-offer-section .row .col-lg-12 .offer-banner-content {
            max-width: 1600px;
        }
    }
}

/* ===== Shop Page Modern Styles ===== */
.shop-page-modern {
    background: #f8f9fa;
}

/* Shop Header */
.shop-header-modern {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shop-title-modern {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.shop-subtitle-modern {
    font-size: 0.95rem;
    color: #64748b;
}

/* Shop Search Form */
.shop-search-form-modern .input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shop-search-input {
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.shop-search-input:focus {
    border-color: #20c997;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
    outline: none;
}

.shop-search-btn {
    background: #20c997;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.shop-search-btn:hover {
    background: #1aa87a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

/* Shop Sidebar Modern */
.shop-sidebar-modern {
    position: sticky;
    top: 100px;
}

.shop-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shop-sidebar-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shop-sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.shop-sidebar-title i {
    color: #20c997;
}

/* Shop Categories Modern */
.shop-categories-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shop-category-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.shop-category-item-modern:hover {
    background: #f8fafc;
    color: #20c997;
    border-color: #e2e8f0;
    transform: translateX(5px);
}

.shop-category-item-modern.active {
    background: linear-gradient(135deg, #20c997 0%, #1aa87a 100%);
    color: #ffffff;
    border-color: #20c997;
    box-shadow: 0 2px 8px rgba(32, 201, 151, 0.2);
}

.shop-category-item-modern.active .category-name,
.shop-category-item-modern.active .category-count {
    color: #ffffff;
    font-weight: 500;
}

.shop-category-item-modern .category-name {
    transition: color 0.3s ease;
}

.shop-category-item-modern .category-count {
    font-size: 0.85rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.shop-category-item-modern:hover .category-count {
    background: #e2e8f0;
    color: #64748b;
}

.shop-category-item-modern.active .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Shop Filters Active */
.shop-filters-active {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shop-filter-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-filter-badge a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-filter-badge a:hover {
    color: #ef4444;
}

/* Shop Empty State */
.shop-empty-state {
    background: #ffffff;
    padding: 4rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shop-empty-icon {
    opacity: 0.5;
}

.shop-empty-state h4 {
    color: #1e293b;
    font-weight: 600;
}

/* ===== Pagination Moderne et Élégante ===== */
/* Design professionnel avec style contemporain */

/* Container de pagination */
.pagination,
nav[role="navigation"] ul.pagination,
nav[role="navigation"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.625rem !important;
    flex-wrap: wrap !important;
    margin: 3rem auto 2.5rem auto !important;
    padding: 1.25rem !important;
    list-style: none !important;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    max-width: fit-content !important;
}

/* Items de pagination */
.page-item,
nav[role="navigation"] ul.pagination li {
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Liens de pagination - Design moderne */
.pagination .page-link,
.pagination li a,
.pagination li span,
nav[role="navigation"] .pagination .page-link,
nav[role="navigation"] .pagination li a,
nav[role="navigation"] .pagination li span,
nav[role="navigation"] ul.pagination li a,
nav[role="navigation"] ul.pagination li span {
    border: none !important;
    color: #64748b !important;
    background: #ffffff !important;
    padding: 0.625rem 1.125rem !important;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    min-width: 44px !important;
    min-height: 44px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.08) !important;
    position: relative !important;
    overflow: visible !important;
}

/* Effet subtil au hover */
.page-link::after,
nav[role="navigation"] ul.pagination li a::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1) 0%, rgba(23, 181, 125, 0.1) 100%) !important;
    border-radius: 10px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.page-link:hover::after,
nav[role="navigation"] ul.pagination li a:hover::after {
    opacity: 1 !important;
}

/* Hover state - Moderne et élégant */
.pagination .page-link:hover,
.pagination li a:hover,
nav[role="navigation"] .pagination .page-link:hover,
nav[role="navigation"] .pagination li a:hover,
nav[role="navigation"] ul.pagination li a:hover {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(32, 201, 151, 0.28) !important;
    transform: translateY(-2px) !important;
}

/* Empêcher le hover sur les éléments désactivés */
.pagination li.disabled a:hover,
.pagination li.disabled span:hover,
nav[role="navigation"] .pagination li.disabled a:hover,
nav[role="navigation"] .pagination li.disabled span:hover {
    background: #ffffff !important;
    color: #cbd5e1 !important;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.08) !important;
    transform: none !important;
}

/* Focus state */
.page-link:focus,
nav[role="navigation"] ul.pagination li a:focus {
    box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.2) !important;
    outline: none !important;
    border-color: #20c997 !important;
}

/* Active page - Design moderne avec gradient */
.pagination li.active .page-link,
.pagination li.active span,
.pagination li.active a,
.page-item.active .page-link,
.page-item.active span,
nav[role="navigation"] .pagination li.active .page-link,
nav[role="navigation"] .pagination li.active span,
nav[role="navigation"] .pagination li.active a,
nav[role="navigation"] ul.pagination li.active span,
nav[role="navigation"] ul.pagination li.active a,
nav[role="navigation"] ul.pagination li[aria-current="page"] span,
nav[role="navigation"] ul.pagination li[aria-current="page"] a {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(32, 201, 151, 0.35), 0 0 0 3px rgba(32, 201, 151, 0.12) !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Disabled state - Style moderne */
.page-item.disabled .page-link,
.page-item.disabled span,
nav[role="navigation"] ul.pagination li.disabled span,
nav[role="navigation"] ul.pagination li[aria-disabled="true"] span {
    background: #f8fafc !important;
    color: #cbd5e1 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    box-shadow: none !important;
}

.page-item.disabled .page-link:hover,
nav[role="navigation"] ul.pagination li.disabled span:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    background: #f8fafc !important;
    color: #cbd5e1 !important;
    border-color: #e2e8f0 !important;
}

/* Previous/Next buttons - Style moderne avec icônes */
.page-link[rel="prev"],
.page-link[rel="next"],
nav[role="navigation"] ul.pagination li a[rel="prev"],
nav[role="navigation"] ul.pagination li a[rel="next"] {
    padding: 0.625rem 1.375rem !important;
    font-weight: 700 !important;
    min-width: auto !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    letter-spacing: 0.025em !important;
}

.page-link[rel="prev"]:hover,
.page-link[rel="next"]:hover,
nav[role="navigation"] ul.pagination li a[rel="prev"]:hover,
nav[role="navigation"] ul.pagination li a[rel="next"]:hover {
    background: linear-gradient(135deg, #20c997 0%, #17b57d 100%) !important;
    box-shadow: 0 4px 16px rgba(32, 201, 151, 0.32) !important;
}

/* Cacher les grandes flèches (chevrons) SVG */
.pagination svg,
nav[role="navigation"] svg,
.page-link svg,
nav[role="navigation"] ul.pagination li svg {
    display: none !important;
}

/* S'assurer que seul le texte des boutons est visible */
.page-link[rel="prev"],
.page-link[rel="next"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Cacher le texte "Showing X to Y of Z results" */
.pagination-info,
nav[role="navigation"] p,
nav[role="navigation"] > p.text-sm,
.text-sm.text-gray-700 {
    display: none !important;
    visibility: hidden !important;
}

/* Shop Pagination Container - Masquée */
.shop-pagination-modern {
    display: none !important;
    visibility: hidden !important;
}

nav[role="navigation"][aria-label="Pagination Navigation"] {
    display: none !important;
    visibility: hidden !important;
}

/* Responsive Shop Page */
@media (max-width: 991.98px) {
    .shop-sidebar-modern {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .shop-header-modern {
        padding: 1.5rem;
    }
    
    .shop-title-modern {
        font-size: 1.5rem;
    }
    
    .shop-sidebar-card {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .shop-header-modern {
        padding: 1.25rem;
    }
    
    .shop-title-modern {
        font-size: 1.25rem;
    }
    
    .shop-search-input {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .shop-search-btn {
        padding: 0.625rem 1.25rem;
    }
    
    .shop-category-item-modern {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Services Section - Responsive pour 5 sections */
.services-row-responsive {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}

.services-row-responsive > [class*="col-"] {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-item-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    min-height: 120px !important;
}

.service-item-content {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.service-icon-wrapper {
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.service-icon {
    font-size: 2rem !important;
    width: 2rem !important;
    height: 2rem !important;
    line-height: 2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.service-text-wrapper {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.service-title {
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
    color: #1f2937 !important;
    letter-spacing: 0.5px !important;
}

.service-subtitle {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    color: #6b7280 !important;
}

/* Mobile - 2 colonnes */
@media (max-width: 767.98px) {
    .services-row-responsive > [class*="col-"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .service-item-wrapper {
        min-height: 100px !important;
        padding: 1rem 0.75rem !important;
    }
    
    .service-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    .service-icon {
        font-size: 1.5rem !important;
        width: 1.5rem !important;
        height: 1.5rem !important;
        line-height: 1.5rem !important;
    }
    
    .service-text-wrapper {
        margin-left: 0.75rem !important;
    }
    
    .service-title {
        font-size: 0.75rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .service-subtitle {
        font-size: 0.7rem !important;
    }
}

/* Tablette - 3 colonnes */
@media (min-width: 768px) and (max-width: 991.98px) {
    .services-row-responsive > [class*="col-"] {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .service-item-wrapper {
        min-height: 110px !important;
        padding: 1.25rem 1rem !important;
    }
    
    .service-icon-wrapper {
        width: 45px !important;
        height: 45px !important;
    }
    
    .service-icon {
        font-size: 1.75rem !important;
        width: 1.75rem !important;
        height: 1.75rem !important;
        line-height: 1.75rem !important;
    }
    
    .service-title {
        font-size: 0.8rem !important;
    }
    
    .service-subtitle {
        font-size: 0.75rem !important;
    }
}

/* Desktop - 5 colonnes égales */
@media (min-width: 992px) {
    .services-row-responsive > [class*="col-lg"] {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
    
    .service-item-wrapper {
        min-height: 120px !important;
        padding: 1.5rem 1.25rem !important;
    }
}

/* Grand écran - 5 colonnes égales */
@media (min-width: 1200px) {
    .service-item-wrapper {
        padding: 1.75rem 1.5rem !important;
    }
}

/* Très grand écran */
@media (min-width: 1920px) {
    .service-item-wrapper {
        padding: 2rem 1.75rem !important;
        min-height: 140px !important;
    }
    
    .service-icon-wrapper {
        width: 55px !important;
        height: 55px !important;
    }
    
    .service-icon {
        font-size: 2.25rem !important;
        width: 2.25rem !important;
        height: 2.25rem !important;
        line-height: 2.25rem !important;
    }
    
    .service-title {
        font-size: 0.95rem !important;
    }
    
    .service-subtitle {
        font-size: 0.85rem !important;
    }
}

/* Shop Page 24 pouces - Garder le même layout */
@media (min-width: 1920px) {
    .shop-page-modern {
        background: #f8f9fa;
    }
    
    .shop-page-modern .container {
        max-width: 1600px !important;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Shop Header 24 pouces */
    .shop-header-modern {
        padding: 2.5rem 3rem;
        border-radius: 16px;
    }
    
    .shop-title-modern {
        font-size: 2.5rem;
    }
    
    .shop-subtitle-modern {
        font-size: 1.1rem;
    }
    
    /* Shop Sidebar 24 pouces */
    .shop-sidebar-modern {
        position: sticky;
        top: 120px;
        height: fit-content;
    }
    
    .shop-sidebar-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .shop-sidebar-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .shop-category-item-modern {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    /* Centrer verticalement les produits par rapport à la sidebar */
    .shop-page-modern .container > .row.g-4 {
        display: flex !important;
        align-items: stretch !important;
        min-height: 600px;
    }
    
    .shop-page-modern .col-lg-3 {
        display: flex !important;
        align-items: flex-start !important;
    }
    
    .shop-page-modern .col-lg-9 {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        min-height: 100% !important;
    }
    
    /* Centrer le contenu des produits verticalement */
    .shop-page-modern .col-lg-9 > .shop-filters-active {
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .shop-page-modern .col-lg-9 > .row.g-4,
    .shop-page-modern .col-12 > .row.g-4 {
        margin: 0 !important;
        width: 100% !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }
    
    /* Uniformiser la hauteur des colonnes de produits */
    .shop-page-modern .row.g-4 > [class*="col-"] {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .shop-page-modern .row.g-4 > [class*="col-"] > .product-card-modern {
        height: 100%;
        min-height: 100%;
    }
    
    .shop-page-modern .col-lg-9 > .shop-empty-state {
        width: 100%;
        margin: auto 0;
    }
    
    .shop-page-modern .col-lg-9 > .shop-pagination-modern {
        width: 100%;
        margin-top: auto;
    }
    
    /* Shop Products Grid 24 pouces - 5 produits par ligne avec meilleur espacement */
    .shop-page-modern .row.g-4 {
        --bs-gutter-x: 1.25rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .shop-page-modern .col-lg-12 .row.g-4 .col-md-6.col-lg-3.col-xl-3,
    .shop-page-modern .col-lg-9 .row.g-4 .col-md-6.col-lg-3.col-xl-3,
    .shop-page-modern .row.g-4 .col-md-6.col-lg-3.col-xl-3 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
    
    /* Grille de produits centrée sur la page shop */
    .shop-page-modern .col-lg-12 .row.g-4,
    .shop-page-modern .col-12 .row.g-4 {
        justify-content: center !important;
        margin-left: calc(var(--bs-gutter-x) * -0.5) !important;
        margin-right: calc(var(--bs-gutter-x) * -0.5) !important;
    }
    
    /* Améliorer les cartes produits sur écran 24 pouces - 5 par ligne */
    .shop-page-modern .product-card-modern {
        max-width: 100%;
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .shop-page-modern .product-card-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        flex: 1;
    }
    
    .shop-page-modern .product-image-wrapper {
        padding-top: 85%;
    }
    
    .shop-page-modern .product-info {
        padding: 1rem;
        min-height: 110px !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .shop-page-modern .product-name {
        font-size: 1rem;
        margin-bottom: 0.625rem;
        line-height: 1.35;
    }
    
    .shop-page-modern .product-name a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .shop-page-modern .product-price {
        min-height: 2rem !important;
        height: 2rem !important;
        flex-shrink: 0 !important;
    }
    
    .shop-page-modern .current-price {
        font-size: 1.1rem;
        line-height: 2rem !important;
        height: 2rem !important;
        display: inline-flex !important;
        align-items: center !important;
    }
    
    .shop-page-modern .old-price {
        font-size: 0.85rem;
        line-height: 2rem !important;
        height: 2rem !important;
        display: inline-flex !important;
        align-items: center !important;
    }
    
    .shop-page-modern .old-price-placeholder {
        font-size: 0.85rem;
        line-height: 2rem !important;
        height: 2rem !important;
        display: inline-block !important;
        visibility: hidden !important;
        opacity: 0 !important;
        min-width: 80px !important;
        flex-shrink: 0 !important;
    }
    
    .shop-page-modern .product-add-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .shop-page-modern .product-add-btn-content {
        gap: 0.5rem;
    }
    
    .shop-page-modern .product-add-btn-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .shop-page-modern .product-add-btn-price {
        font-size: 0.8rem;
    }
    
    .shop-page-modern .product-add-btn-icon {
        font-size: 0.9rem;
    }
    
    .shop-page-modern .product-discount-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.45rem;
        top: 6px;
        right: 6px;
    }
    
    /* Shop Filters Active 24 pouces */
    .shop-filters-active {
        padding: 1.5rem 2rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    
    .shop-filter-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Shop Empty State 24 pouces */
    .shop-empty-state {
        padding: 5rem 3rem;
    }
    
    .shop-empty-icon i {
        font-size: 5rem;
    }
    
    .shop-empty-state h4 {
        font-size: 1.75rem;
    }
    
    .shop-empty-state p {
        font-size: 1.1rem;
    }
    
    /* Pagination 24 pouces */
    .pagination {
        gap: 0.75rem;
        margin: 3rem 0;
    }
    
    .page-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-width: 50px;
        border-radius: 12px;
    }
    
    .page-link[rel="prev"],
    .page-link[rel="next"] {
        padding: 0.75rem 1.75rem;
        font-size: 1.05rem;
    }
}

/* ===== STORES / BOUTIQUES SECTION ===== */
.stores-section {
    background: #F9FAFB;
}

.store-card-modern {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.store-image-wrapper,
.store-video-wrapper {
    width: 100%;
    padding-top: 75%; /* Augmenté pour agrandir l'image/vidéo */
    position: relative;
    overflow: hidden;
    background: #F9FAFB;
}

.store-image,
.store-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-video {
    cursor: pointer;
}

.store-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #20c997;
    margin-bottom: 0.75rem;
}

.store-description {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #374151;
}

.store-info-item a {
    color: #374151;
    text-decoration: none;
}

.store-info-item a:hover {
    color: #20c997;
}

.store-actions {
    margin-top: auto;
}

/* Responsive - 3 boutiques par ligne sur tous les écrans */
.stores-section .row {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap; /* Force les 3 sur la même ligne */
}

/* Mobile - 3 par ligne forcées */
@media (max-width: 767.98px) {
    .stores-section .row {
        flex-wrap: nowrap;
        overflow-x: auto; /* Permet le scroll horizontal si nécessaire */
        -webkit-overflow-scrolling: touch;
    }
    
    .stores-section .col-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        min-width: 33.333333% !important;
    }
    
    .store-card-modern {
        min-width: 100%;
    }
    
    .store-content {
        padding: 1rem;
    }
    
    .store-name {
        font-size: 1rem;
    }
    
    .store-description {
        font-size: 0.8rem;
    }
    
    .store-info-item {
        font-size: 0.8rem;
    }
    
    .store-image-wrapper,
    .store-video-wrapper {
        padding-top: 65%; /* Réduit sur mobile pour s'adapter */
    }
}

/* Tablette - 3 par ligne */
@media (min-width: 768px) and (max-width: 991.98px) {
    .stores-section .row {
        flex-wrap: nowrap;
    }
    
    .stores-section .col-md-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}

/* Desktop - 3 par ligne */
@media (min-width: 992px) {
    .stores-section .row {
        flex-wrap: nowrap;
    }
    
    .stores-section .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}

/* Écrans larges (24 pouces) - 3 par ligne */
@media (min-width: 1920px) {
    .stores-section .row {
        flex-wrap: nowrap;
    }
    
    .stores-section .col-xl-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    
    .store-card-modern {
        max-width: 100%;
    }
}

/* ===== LANGUAGE MODAL / POPUP DE LANGUE ===== */
#languageModal {
    z-index: 10050 !important;
}

#languageModal .modal-dialog {
    z-index: 10051 !important;
    max-width: 500px;
}

#languageModal .modal-backdrop {
    z-index: 10040 !important;
    background-color: rgba(0, 0, 0, 0.5);
}

#languageModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#languageModal .modal-header {
    border-bottom: 2px solid #e2e8f0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px 12px 0 0;
}

#languageModal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

#languageModal .btn-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#languageModal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

#languageModal .modal-body {
    padding: 1.5rem;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-option {
    display: flex;
    align-items: center;
    margin: 0;
}

.language-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #20c997;
}

.language-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    background: #ffffff;
}

.language-label:hover {
    border-color: #20c997;
    background: #f0fdfa;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(32, 201, 151, 0.1);
}

.language-option input[type="radio"]:checked + .language-label {
    border-color: #20c997;
    background: rgba(32, 201, 151, 0.1);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.2);
}

.language-flag {
    font-size: 2rem;
    line-height: 1;
}

/* Drapeaux circulaires */
.language-flag-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
    position: relative;
}

.language-flag-france {
    background: linear-gradient(to right, #002654 0%, #002654 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #ED2024 66.66%, #ED2024 100%);
}

.language-flag-morocco {
    background: #C12717;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 8 L23 16 L31 17 L25 23 L27 31 L20 27 L13 31 L15 23 L9 17 L17 16 Z' fill='%23008045'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Drapeau dans le menu (plus petit) */
.language-icon-btn .language-flag-circle {
    width: 30px;
    height: 30px;
    border: none;
}

.language-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

#languageModal .modal-footer {
    border-top: 2px solid #e2e8f0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

#languageModal .modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#languageModal .modal-footer .btn-secondary {
    background: #6b7280;
    border-color: #6b7280;
    color: #ffffff;
}

#languageModal .modal-footer .btn-secondary:hover {
    background: #4b5563;
    border-color: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

#languageModal .modal-footer .btn-primary {
    background: #20c997;
    border-color: #20c997;
    color: #ffffff;
}

#languageModal .modal-footer .btn-primary:hover {
    background: #1ab885;
    border-color: #1ab885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

/* Responsive pour le popup de langue */
@media (max-width: 576px) {
    #languageModal .modal-dialog {
        max-width: 90%;
        margin: 1rem auto;
    }
    
    #languageModal .modal-header {
        padding: 1rem;
    }
    
    #languageModal .modal-title {
        font-size: 1.25rem;
    }
    
    #languageModal .modal-body {
        padding: 1rem;
    }
    
    .language-label {
        padding: 0.875rem 1rem;
    }
    
    .language-flag {
        font-size: 1.75rem;
    }
    
    .language-name {
        font-size: 1rem;
    }
    
    #languageModal .modal-footer {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    #languageModal .modal-footer .btn {
        width: 100%;
    }
}

/* =====================================================
   Section Meilleurs Avis Clients - Page d'accueil
   ===================================================== */
.reviews-section-home {
    background: #f8f9fa;
    padding: 4rem 0;
}

.review-card-home {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-card-header {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
}

.review-product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.review-product-details {
    flex: 1;
}

.review-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.review-product-name a {
    color: #1f2937;
    transition: color 0.3s ease;
}

.review-product-name a:hover {
    color: #20c997;
}

.review-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-rating {
    font-size: 0.9rem;
}

.review-rating .fa-star {
    margin-right: 2px;
}

.review-comment {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.review-customer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.review-customer-name {
    color: #1f2937;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive pour les avis */
@media (max-width: 768px) {
    .reviews-section-home {
        padding: 2.5rem 0;
    }
    
    .review-card-home {
        margin-bottom: 1rem;
    }
    
    .review-product-image {
        width: 50px;
        height: 50px;
    }
    
    .review-product-name {
        font-size: 0.85rem;
    }
    
    .review-comment {
        font-size: 0.85rem;
    }
}

/* ============================================
   ANNOUNCEMENT BANNER - Défilement horizontal
   ============================================ */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    z-index: 9998;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-horizontal 30s linear infinite;
    width: fit-content;
}

.announcement-text {
    display: inline-block;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Animation de défilement horizontal continu */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 10px 0;
    }
    
    .announcement-text {
        font-size: 12px;
        padding: 0 30px;
    }
    
    .announcement-content {
        animation-duration: 20s;
    }
}

/* Ajustement pour la navbar quand l'annonce est présente */
body:has(.announcement-banner) .container-fluid.unified-navbar {
    margin-top: 48px;
}

/* Fallback pour navigateurs sans support :has() */
.announcement-banner ~ .container-fluid.unified-navbar {
    margin-top: 48px;
}

/* ============================================
   SECTION BLOG PREMIUM - STYLE PROFESSIONNEL MONDIAL
   Inspiré des meilleures pratiques (Apple, Medium, Pinterest, etc.)
   ============================================ */

.blog-section {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFF7ED 50%, #FFFFFF 100%);
    position: relative;
}

.blog-section-header {
    margin-bottom: 2.5rem;
}

.blog-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.blog-section-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

/* Grid de blog - Style Customer Favorites (3 par ligne) */
.blog-grid-customer-favorites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Carte de blog - Style Customer Favorites */
.blog-card-customer-favorites {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-customer-favorites:hover {
    transform: translateY(-2px);
}

.blog-card-link-cf {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-link-cf:hover {
    text-decoration: none;
    color: inherit;
}

/* Image wrapper - Style Customer Favorites */
.blog-card-image-cf {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Ratio carré 1:1 */
    overflow: hidden;
    background: #F5F5F5;
    margin-bottom: 1rem;
}

.blog-image-cf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-customer-favorites:hover .blog-image-cf {
    transform: scale(1.02);
}

/* Contenu de la carte - Style Customer Favorites */
.blog-card-content-cf {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title-cf {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-description-cf {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-separator-cf {
    width: 100%;
    height: 1px;
    background: #E5E7EB;
    margin-top: auto;
}


/* Responsive Design - Style Customer Favorites */
@media (max-width: 1199.98px) {
    .blog-grid-customer-favorites {
        gap: 1.5rem;
    }
    
    .blog-section-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 991.98px) {
    .blog-grid-customer-favorites {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .blog-section-title {
        font-size: 1.75rem;
    }
    
    .blog-section-subtitle {
        font-size: 0.95rem;
    }
    
    .blog-card-title-cf {
        font-size: 0.9375rem;
    }
    
    .blog-card-description-cf {
        font-size: 0.8125rem;
    }
}

@media (max-width: 767.98px) {
    .blog-grid-customer-favorites {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .blog-section-title {
        font-size: 1.5rem;
    }
    
    .blog-card-image-cf {
        padding-top: 100%;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .blog-section-header {
        margin-bottom: 1.5rem;
    }
    
    .blog-section-title {
        font-size: 1.375rem;
    }
    
    .blog-section-subtitle {
        font-size: 0.875rem;
    }
    
    .blog-grid-customer-favorites {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-title-cf {
        font-size: 0.875rem;
    }
    
    .blog-card-description-cf {
        font-size: 0.75rem;
    }
}

/* ============================================
   BANNIÈRES PROMOTIONNELLES PREMIUM - STYLE PROFESSIONNEL MONDIAL
   Inspiré des meilleures pratiques (Apple, Amazon, Nike, etc.)
   ============================================ */

/* Container principal premium */
.promotional-banner-premium {
    position: relative;
    width: 100%;
    height: 420px;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.promotional-banner-premium:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(242, 139, 0, 0.15);
}

.promo-banner-link-premium {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.promo-banner-link-premium:hover {
    text-decoration: none;
    color: inherit;
}

/* Background avec gradient moderne */
.promo-banner-bg-premium {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #FFF7ED 0%,
        #FED7AA 15%,
        #FED7AA 30%,
        #FED7AA 50%,
        #FFF7ED 70%,
        #FFFFFF 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}

/* Badge de réduction premium (coin supérieur droit) */
.promo-badge-premium {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F28B00 0%, #F92400 100%);
    border-radius: 50%;
    box-shadow: 
        0 8px 24px rgba(242, 139, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promo-badge-percent {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Éléments décoratifs subtils */
.promo-decorative-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.promo-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: linear-gradient(135deg, #F28B00, #F92400);
    animation: floatShape 8s ease-in-out infinite;
}

.promo-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.promo-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.promo-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Contenu principal */
.promo-banner-content-premium {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
    height: 100%;
}

/* Section gauche - Informations */
.promo-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    justify-content: center;
}

.promo-subtitle-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-subtitle-icon {
    color: #F28B00;
    font-size: 0.875rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.promo-subtitle-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #B45309;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.promo-title-premium {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1F2937;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.promo-description-premium {
    margin-top: 0.5rem;
}

.promo-description-premium p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Prix premium */
.promo-price-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.promo-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.promo-price-old {
    font-size: 1.25rem;
    font-weight: 600;
    color: #9CA3AF;
    text-decoration: line-through;
}

.promo-price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F28B00;
    line-height: 1;
}

.promo-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
}

.promo-savings i {
    font-size: 0.75rem;
}

/* CTA Button premium */
.promo-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F28B00 0%, #F92400 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 139, 0, 0.3);
    width: fit-content;
}

.promo-cta-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 139, 0, 0.4);
}

.promo-cta-text {
    letter-spacing: 0.5px;
}

.promo-cta-icon {
    transition: transform 0.3s ease;
}

.promo-cta-premium:hover .promo-cta-icon {
    transform: translateX(4px);
}

/* Section droite - Image produit */
.promo-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.promo-image-wrapper-premium {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(242, 139, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.promo-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.promo-image-premium {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.promotional-banner-premium:hover .promo-image-premium {
    transform: scale(1.05);
}

.promo-image-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

/* Footer premium */
.promo-footer-premium {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(242, 139, 0, 0.2);
}

.promo-footer-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.promo-footer-icon {
    color: #F28B00;
    font-size: 1rem;
    animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

.promo-footer-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 0.3px;
}

/* Responsive Design Premium */
@media (max-width: 1199.98px) {
    .promotional-banner-premium {
        height: 380px;
        min-height: 380px;
    }
    
    .promo-banner-bg-premium {
        padding: 2rem;
    }
    
    .promo-banner-content-premium {
        gap: 2rem;
    }
    
    .promo-title-premium {
        font-size: 2rem;
    }
    
    .promo-price-new {
        font-size: 2.25rem;
    }
    
    .promo-image-wrapper-premium {
        max-width: 300px;
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .promotional-banner-premium {
        height: auto;
        min-height: 500px;
    }
    
    .promo-banner-content-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .promo-content-left {
        align-items: center;
        text-align: center;
    }
    
    .promo-price-wrapper {
        justify-content: center;
    }
    
    .promo-cta-premium {
        margin: 0 auto;
    }
    
    .promo-image-wrapper-premium {
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .promo-badge-premium {
        top: 1rem;
        right: 1rem;
        width: 70px;
        height: 70px;
    }
    
    .promo-badge-percent {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .promotional-banner-premium {
        min-height: 450px;
    }
    
    .promo-banner-bg-premium {
        padding: 1.5rem;
    }
    
    .promo-title-premium {
        font-size: 1.75rem;
    }
    
    .promo-price-new {
        font-size: 2rem;
    }
    
    .promo-price-old {
        font-size: 1.1rem;
    }
    
    .promo-image-wrapper-premium {
        max-width: 240px;
        height: 240px;
    }
    
    .promo-cta-premium {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .promo-badge-premium {
        width: 60px;
        height: 60px;
    }
    
    .promo-badge-percent {
        font-size: 1.25rem;
    }
    
    .promo-badge-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .promotional-banner-premium {
        min-height: 400px;
    }
    
    .promo-banner-bg-premium {
        padding: 1.25rem;
    }
    
    .promo-title-premium {
        font-size: 1.5rem;
    }
    
    .promo-description-premium p {
        font-size: 0.9rem;
    }
    
    .promo-price-new {
        font-size: 1.75rem;
    }
    
    .promo-image-wrapper-premium {
        max-width: 200px;
        height: 200px;
    }
    
    .promo-cta-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .promo-footer-text {
        font-size: 0.8rem;
    }
}

