* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import des polices spirituelles et apaisantes */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@300;400;600;700&family=Lato:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', 'Open Sans', 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fef9f6;
    font-weight: 300;
}

/* ==========================================
   HEADER RESTRUCTURÉ AVEC BANDE DÉFILANTE
   ========================================== */

/* Bande défilante en haut */
.top-scrolling-banner {
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    height: 35px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Supprimer le curseur de défilement encombrant */
.top-scrolling-banner::-webkit-scrollbar {
    display: none;
}

.top-scrolling-banner {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrolling-content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-text {
    padding: 0 2rem;
}

/* Réduction de la taille des textes défilants sur mobile + ralentissement pour éviter les vibrations */
@media (max-width: 768px) {
    .scrolling-content {
        font-size: 0.75rem;
        /* Ralentir l'animation sur mobile pour réduire les vibrations */
        animation: scroll-left 45s linear infinite;
    }
    
    .scroll-text {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .scrolling-content {
        font-size: 0.65rem;
        /* Animation encore plus lente sur très petits écrans */
        animation: scroll-left 60s linear infinite;
    }
    
    .scroll-text {
        padding: 0 0.8rem;
    }
}

/* Option pour désactiver complètement sur mobile si problème persiste */
@media (max-width: 480px) and (prefers-reduced-motion: reduce) {
    .scrolling-content {
        animation: none;
        transform: translateX(0);
    }
}

.scroll-separator {
    color: rgba(230, 199, 216, 0.7);
    padding: 0 1rem;
}

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

/* Header principal réorganisé */
header {
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    box-shadow: 0 3px 10px rgba(5,58,92,0.3);
    position: relative;
    overflow: hidden;
}

.main-header {
    padding: 1rem 0;
}

/* Barre de navigation supérieure */
.top-nav-bar {
    background: linear-gradient(135deg, #041e2f 0%, #053a5c 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(230, 199, 216, 0.2);
    position: relative;
    z-index: 4;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.return-link {
    color: #e6c7d8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(230, 199, 216, 0.1);
    border: 1px solid rgba(230, 199, 216, 0.2);
}

.return-link:hover {
    background: rgba(230, 199, 216, 0.2);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(230, 199, 216, 0.3);
}

.top-nav-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.9;
}

.info-text {
    font-size: 0.8rem;
}

.separator {
    color: rgba(230, 199, 216, 0.6);
    font-weight: 300;
}

/* Messages défilants en haut de l'en-tête */
.header-messages {
    background: rgba(230, 199, 216, 0.9);
    color: #053a5c;
    padding: 8px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.messages-slider {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messages-slider .message-item {
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
    width: 100%;
    text-align: center;
}

.messages-slider .message-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Zone pour image de fond décalée à droite */
header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background-image: url('../images/vierge-marie-2.png'); /* Image de la Vierge Marie pour l'en-tête */
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
    transform: skewX(-10deg);
    transform-origin: top right;
}

/* S'assurer que le contenu reste au-dessus de l'image */
.header-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nouvelle structure de header réorganisée */
.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.site-return-btn {
    color: #e6c7d8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(230, 199, 216, 0.1);
    border: 1px solid rgba(230, 199, 216, 0.2);
    font-size: 0.9rem;
}

.site-return-btn:hover {
    background: rgba(230, 199, 216, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 199, 216, 0.3);
}

.logo-link {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Nouveau style logo avec image */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.logo-link:hover .logo-image {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.logo-text, .logo-link h1 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.currency-display {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(230, 199, 216, 0.3);
}

.currency-label {
    color: #e6c7d8;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-cart-btn {
    background: linear-gradient(135deg, #e6c7d8 0%, #b8a0b8 100%);
    color: #053a5c;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 199, 216, 0.3);
}

.view-cart-btn:hover {
    background: linear-gradient(135deg, #d4b5c8 0%, #a08ca0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 199, 216, 0.4);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section h1 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.contact-info {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Barre de recherche moderne dans l'en-tête */
.modern-search-container {
    position: relative;
    z-index: 3;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.2);
    border: 2px solid rgba(230, 199, 216, 0.8);
    transition: all 0.3s ease;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    background: rgba(255, 255, 255, 1);
    border-color: #e6c7d8;
    box-shadow: 0 6px 25px rgba(5, 58, 92, 0.3);
    transform: translateY(-2px);
}

.modern-search-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #053a5c;
    min-width: 200px;
    font-family: 'Roboto', sans-serif;
}

.modern-search-input::placeholder {
    color: rgba(5, 58, 92, 0.6);
}

.search-btn {
    background: linear-gradient(135deg, #053a5c 0%, #2a5f7f 100%);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #041e2f 0%, #1e4a5f 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.4);
}

.currency-selector {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 6px;
    align-items: center;
}

.currency-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.currency-btn small {
    font-size: 10px;
    opacity: 0.8;
    font-weight: 400;
}

/* Styles par défaut - devise inactive (bleu) */
.currency-btn.currency-primary,
.currency-btn.currency-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 12px;
    padding: 10px 16px;
    opacity: 0.8;
    border: 2px solid rgba(255,255,255,0.2);
}

.currency-btn.currency-primary:hover,
.currency-btn.currency-secondary:hover {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

/* Style actif - devise sélectionnée (rose) */
.currency-btn.active {
    background: rgba(230, 199, 216, 0.9) !important;
    color: #053a5c !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    box-shadow: 0 2px 8px rgba(230, 199, 216, 0.3) !important;
    border: 2px solid rgba(5, 58, 92, 0.3) !important;
    opacity: 1 !important;
    transform: translateY(-1px);
}

.currency-btn.active strong {
    font-size: 15px;
    color: #053a5c;
}

.currency-btn.active:hover {
    background: rgba(230, 199, 216, 1) !important;
    box-shadow: 0 4px 12px rgba(230, 199, 216, 0.4) !important;
}

.categories-nav {
    background: linear-gradient(135deg, #fef9f6 0%, rgba(242, 199, 213, 0.1) 100%);
    box-shadow: 0 2px 8px rgba(5,58,92,0.08);
    border-bottom: 1px solid rgba(230, 199, 216, 0.3);
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Menu hamburger pour mobile */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    border: 2px solid white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    border-radius: 8px;
    transform: translateY(-50%);
    z-index: 1001;
}

.categories-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
}

/* Overlay masqué sur desktop */
.mobile-menu-overlay {
    display: none;
}

/* Section des bannières défilantes */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(5, 58, 92, 0.15);
    border-top: 3px solid #053a5c;
    border-bottom: 3px solid #053a5c;
}

/* Traits décoratifs */
.banner-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e6c7d8 20%, #053a5c 50%, #e6c7d8 80%, transparent 100%);
    z-index: 10;
}

.banner-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e6c7d8 20%, #053a5c 50%, #e6c7d8 80%, transparent 100%);
    z-index: 10;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-size: 200px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 2rem;
    gap: 2rem;
}

/* Styles spécifiques pour chaque type de bannière */
.devotion-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.faith-banner {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.prayer-banner {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.banner-text-content {
    flex: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #053a5c;
    margin: 0 0 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

.banner-image, .banner-decoration {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(5, 58, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(5, 58, 92, 0.2);
}

.banner-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.decoration-icon {
    font-size: 2.5rem;
    opacity: 0.6;
    /* animation: float 3s ease-in-out infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
}

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

/* Contrôles et indicateurs */
.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    padding: 0.5rem;
    border-radius: 0;
    box-shadow: none;
    z-index: 50;
}

.banner-nav {
    display: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-nav:hover {
    background: rgba(5, 58, 92, 0.1);
    transform: scale(1.1);
}

.banner-indicators {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    z-index: 51;
    position: relative;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(5, 58, 92, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 52;
}

.indicator.active {
    background: #053a5c;
    transform: scale(1.3);
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 3px 12px rgba(5, 58, 92, 0.4);
}

.indicator:hover {
    background: rgba(5, 58, 92, 0.7);
    transform: scale(1.2);
    border: 2px solid rgba(255, 255, 255, 1);
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .banner-carousel {
        height: 50vh;
        min-height: 350px;
        margin: 0;
        border-radius: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    /* Adapter les images de la Vierge Marie pour mobile */
    .mary-image-left,
    .mary-image-right {
        display: none;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
        gap: 0.8rem;
        width: 100%;
        height: 100%;
    }

    .banner-title {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .banner-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .banner-text-content {
        max-width: 100%;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
    }
    
    /* Styles spécifiques pour les bannières 3 et 4 avec cadre blanc sur mobile */
    .faith-banner .banner-text-content[style*="background"],
    .prayer-banner .banner-text-content[style*="background"] {
        padding: 1rem 1.2rem !important;
        margin: 0 auto;
        width: fit-content !important;
        max-width: calc(100% - 2rem);
        display: inline-block !important;
        height: auto !important;
    }
}

/* Adaptation pour très petits écrans */
@media (max-width: 480px) {
    .banner-carousel {
        height: 45vh;
        min-height: 300px;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .banner-title {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .banner-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .banner-content {
        padding: 0.4rem;
        width: 100%;
        height: 100%;
    }

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

    .banner-icon {
        font-size: 2rem;
    }

    .decoration-icon {
        font-size: 1.8rem;
    }

    .banner-controls {
        bottom: 10px;
        padding: 0.3rem 0.8rem;
    }

    .banner-nav {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .banner-controls {
        bottom: 15px;
        z-index: 50;
        position: absolute;
    }
    
    /* Images de fond optimisées pour mobile */
    .devotion-banner,
    .faith-banner,
    .prayer-banner {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Adaptation mobile pour la recherche moderne */
    .header-controls {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    /* Adaptation mobile pour la navigation supérieure */
    .top-nav-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-nav-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .return-link {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .modern-search-container {
        order: -1; /* Placer la recherche en premier sur mobile */
        width: 100%;
        max-width: 280px;
    }
    
    .modern-search-input {
        min-width: 160px;
        font-size: 0.85rem;
    }
    
    .search-btn {
        min-width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .search-wrapper {
        padding: 4px;
    }
}

/* Section de bienvenue (conservée pour la première bannière) */
.welcome-section {
    background: linear-gradient(135deg, #fef9f6 0%, rgba(242, 199, 213, 0.05) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(230, 199, 216, 0.2);
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.welcome-text-content {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

.mary-image-left,
.mary-image-right {
    flex: 0 0 150px;
}

.mary-frame {
    width: 150px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(5,58,92,0.15);
    border: 3px solid rgba(230,199,216,0.3);
    position: relative;
    background: white;
}

.mary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mary-frame:hover .mary-img {
    transform: scale(1.05);
}

.mary-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(5,58,92,0.1) 0%, rgba(230,199,216,0.1) 100%);
}

.placeholder-content {
    text-align: center;
    color: #666;
}

.placeholder-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.placeholder-content p {
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
}

.welcome-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    color: #053a5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}


.category-link {
    font-family: 'Open Sans', sans-serif;
    color: #053a5c;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.category-link:hover,
.category-link.active {
    background: linear-gradient(135deg, #053a5c 0%, #074B6E 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.25);
}

.filters-section {
    background: #e6f2ef;
    padding: 1.5rem 0;
    border-bottom: 1px solid #053a5c;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #053a5c;
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-filter label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.price-input {
    width: 80px;
    padding: 8px 10px;
    border: 2px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    text-align: center;
}

.price-input:focus {
    outline: none;
    border-color: #3498db;
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: #3498db;
}

.clear-filters-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

h1 {
    font-size: 2rem;
    font-weight: 300;
}

.view-cart-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-cart-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    position: relative;
}

/* Section des 3 encarts d'insights */
.insights-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.insights-card {
    background: linear-gradient(135deg, rgba(5,58,92,0.03) 0%, rgba(230,199,216,0.03) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: none; /* Suppression des bordures */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 20px rgba(5,58,92,0.04); /* Ombre subtile */
}

.insights-title {
    font-size: 1.3rem;
    color: #053a5c;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid rgba(230,199,216,0.3);
    padding-bottom: 0.5rem;
}

/* Titre spécifique pour l'encart citations sur fond bleu */
.spiritual-quotes .insights-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

/* Citations spirituelles au centre */
.insights-card.spiritual-quotes {
    text-align: center;
}

/* Encarts produits (populaires et meilleures ventes) */
.product-showcase {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(5,58,92,0.05), rgba(230,199,216,0.05));
    margin-bottom: 0.5rem;
    background-size: cover;
    background-position: center;
    border: none; /* Suppression des bordures */
    box-shadow: 0 2px 10px rgba(5,58,92,0.08); /* Ombre douce */
}

.item-info {
    width: 100%;
}

.item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #053a5c;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    font-size: 0.8rem;
    color: #e74c3c;
    font-weight: bold;
}

/* Indicateurs de progression */
.showcase-indicator {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: rgba(5,58,92,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    color: #666;
}

/* Animations pour les transitions */
.quote-text,
.quote-author {
    transition: opacity 0.3s ease;
}

.product-showcase {
    transition: opacity 0.2s ease;
}

.showcase-item {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.showcase-item:hover {
    transform: translateY(-2px);
}

.item-image {
    transition: transform 0.3s ease;
}

.showcase-item:hover .item-image {
    transform: scale(1.05);
}

/* Effet subtil sur les encarts au hover */
.insights-card {
    transition: all 0.3s ease;
}

.insights-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(5,58,92,0.08);
    background: linear-gradient(135deg, rgba(5,58,92,0.05) 0%, rgba(230,199,216,0.05) 100%);
}

/* Citations spirituelles avec oiseaux et ciel étoilé */
.spiritual-quotes {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #053a5c 0%, #2a5f7f 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spiritual-quotes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 58, 92, 0.3);
}

.spiritual-quotes:hover .insights-title {
    color: #1a365d !important; /* Bleu foncé */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.spiritual-quotes:hover .quote-content .quote-text,
.spiritual-quotes:hover .quote-content .quote-author {
    color: #87CEEB !important; /* Bleu ciel pour le contenu */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Ciel étoilé en arrière-plan */
.spiritual-quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 25px 15px, #FFD700, transparent),
        radial-gradient(1px 1px at 85px 35px, #FFFF99, transparent),
        radial-gradient(1px 1px at 150px 25px, #FFD700, transparent),
        radial-gradient(1px 1px at 200px 45px, #FFFF99, transparent),
        radial-gradient(1px 1px at 50px 65px, #FFD700, transparent),
        radial-gradient(1px 1px at 180px 70px, #FFFF99, transparent),
        radial-gradient(1px 1px at 120px 85px, #FFD700, transparent),
        radial-gradient(1px 1px at 250px 90px, #FFFF99, transparent),
        radial-gradient(1px 1px at 70px 110px, #FFD700, transparent),
        radial-gradient(1px 1px at 300px 20px, #FFFF99, transparent);
    background-repeat: repeat;
    background-size: 350px 150px;
    /* animation: twinkleStars 8s ease-in-out infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
    opacity: 0.7;
    z-index: 1;
}

/* Crucifix spirituels */
.spiritual-quotes::after {
    content: '✝ ✝';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 1rem;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.8);
    z-index: 4;
    /* animation: holyGlow 4s ease-in-out infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
}

/* Contenu des citations par-dessus tout */
.spiritual-quotes .quote-container {
    position: relative;
    z-index: 3;
    background: transparent;
    margin: 20px 10px 10px 10px;
    padding: 15px;
}

/* Oiseaux volants */
.spiritual-quotes .bird {
    position: absolute;
    width: 16px;
    height: 12px;
    z-index: 2;
}

.spiritual-quotes .bird::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 6px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-20deg);
    /* animation: birdWingLeft 0.8s ease-in-out infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
}

.spiritual-quotes .bird::after {
    content: '';
    position: absolute;
    right: 0;
    width: 8px;
    height: 6px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(20deg);
    /* animation: birdWingRight 0.8s ease-in-out infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
}

.spiritual-quotes .bird-1 {
    top: 25%;
    left: -20px;
    /* animation: flyAcross1 12s linear infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
    display: none;
}

.spiritual-quotes .bird-2 {
    top: 40%;
    left: -20px;
    /* animation: flyAcross2 15s linear infinite 3s; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
    display: none;
}

.spiritual-quotes .bird-3 {
    top: 60%;
    left: -20px;
    /* animation: flyAcross3 13s linear infinite 7s; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
    display: none;
}

/* Encarts produits avec bordures animées */
.insights-card.popular-items,
.insights-card.best-sellers {
    border: 2px solid #053a5c;
    background: white;
    /* animation: rotateBorder 6s linear infinite; - DÉSACTIVÉE POUR ÉVITER LES VIBRATIONS */
    position: relative;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insights-card.popular-items:hover,
.insights-card.best-sellers:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 58, 92, 0.2);
}

.quote-container {
    text-align: center;
    position: relative;
}

.quote-text {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    font-style: normal;
    margin-bottom: 1rem;
    font-weight: 300;
    position: relative;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -8px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.quote-text::after {
    content: '"';
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.quote-author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* Éléments décoratifs spirituels */
main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(5,58,92,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242,199,213,0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(230,199,216,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animations spirituelles douces et professionnelles */

/* Animation pour le scintillement des étoiles */
@keyframes twinkleStars {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Animations des ailes d'oiseaux */
@keyframes birdWingLeft {
    0%, 100% { 
        transform: rotate(-20deg) scaleY(1);
    }
    50% { 
        transform: rotate(-45deg) scaleY(0.8);
    }
}

@keyframes birdWingRight {
    0%, 100% { 
        transform: rotate(20deg) scaleY(1);
    }
    50% { 
        transform: rotate(45deg) scaleY(0.8);
    }
}

/* Vol des oiseaux à travers l'encart */
@keyframes flyAcross1 {
    0% {
        left: -20px;
        transform: scale(0.6) translateY(0px);
    }
    20% {
        transform: scale(0.8) translateY(-5px);
    }
    40% {
        transform: scale(1) translateY(2px);
    }
    60% {
        transform: scale(0.9) translateY(-3px);
    }
    80% {
        transform: scale(0.7) translateY(0px);
    }
    100% {
        left: calc(100% + 20px);
        transform: scale(0.5) translateY(-2px);
    }
}

@keyframes flyAcross2 {
    0% {
        left: -20px;
        transform: scale(0.7) translateY(0px);
    }
    15% {
        transform: scale(0.9) translateY(3px);
    }
    35% {
        transform: scale(1.1) translateY(-2px);
    }
    55% {
        transform: scale(0.8) translateY(4px);
    }
    75% {
        transform: scale(0.6) translateY(-1px);
    }
    100% {
        left: calc(100% + 20px);
        transform: scale(0.4) translateY(0px);
    }
}

@keyframes flyAcross3 {
    0% {
        left: -20px;
        transform: scale(0.5) translateY(0px);
    }
    25% {
        transform: scale(0.8) translateY(-4px);
    }
    45% {
        transform: scale(1) translateY(1px);
    }
    65% {
        transform: scale(0.9) translateY(-2px);
    }
    85% {
        transform: scale(0.6) translateY(3px);
    }
    100% {
        left: calc(100% + 20px);
        transform: scale(0.3) translateY(-1px);
    }
}

/* Animation pour les bordures rotatives des encarts produits */
@keyframes rotateBorder {
    0% {
        background: white padding-box,
                    linear-gradient(45deg, #053a5c, #2a5f7f, #053a5c, #2a5f7f) border-box;
    }
    25% {
        background: white padding-box,
                    linear-gradient(135deg, #2a5f7f, #053a5c, #2a5f7f, #053a5c) border-box;
    }
    50% {
        background: white padding-box,
                    linear-gradient(225deg, #053a5c, #2a5f7f, #053a5c, #2a5f7f) border-box;
    }
    75% {
        background: white padding-box,
                    linear-gradient(315deg, #2a5f7f, #053a5c, #2a5f7f, #053a5c) border-box;
    }
    100% {
        background: white padding-box,
                    linear-gradient(45deg, #053a5c, #2a5f7f, #053a5c, #2a5f7f) border-box;
    }
}

/* Animation pour la croix - lueur sainte */
@keyframes holyGlow {
    0%, 100% { 
        opacity: 0.5; 
        text-shadow: 0 0 5px rgba(5,58,92,0.3);
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        text-shadow: 0 0 12px rgba(5,58,92,0.6);
        transform: scale(1.08);
    }
}

/* Animations supprimées car les encarts produits sont maintenant épurés */

/* Styles pour les pages de catégories */
.brand-banner {
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.brand-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.brand-logo {
    font-size: 3rem;
    opacity: 0.9;
}

.brand-info {
    text-align: left;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: white;
}

.brand-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 300;
}

.category-banner {
    background: linear-gradient(135deg, rgba(230,199,216,0.1) 0%, rgba(5,58,92,0.05) 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(5,58,92,0.1);
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title {
    font-size: 2rem;
    color: #053a5c;
    margin: 0;
    font-weight: 400;
}

.category-icon {
    font-size: 2.5rem;
    opacity: 0.7;
}

.category-intro {
    padding: 1.5rem 0;
    background: rgba(5,58,92,0.02);
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-style: italic;
}

.loading-state {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

@keyframes fadeInQuote {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.quote-container {
    animation: fadeInQuote 0.8s ease-out;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    justify-content: center;
}

/* Affichage colonne unique sur mobile */
@media (max-width: 480px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 3px 15px rgba(5, 58, 92, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(230, 199, 216, 0.3);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(5, 58, 92, 0.12);
    border-color: rgba(230, 199, 216, 0.8);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #053a5c 0%, #e6c7d8 50%, #f2c7d5 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    flex-shrink: 0;
    background: linear-gradient(45deg, #fef9f6, #f2c7d5);
}

.product-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #053a5c;
    line-height: 1.3;
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Affichage du prix principal (XOF privilégié) */
.price-primary {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #053a5c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.price-primary .currency-label {
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(45deg, rgba(230, 199, 216, 0.4), rgba(242, 199, 213, 0.4));
    color: #053a5c;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(230, 199, 216, 0.5);
}

/* Boutons des produits - Design spirituel et apaisant */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    flex-shrink: 0;
}

.btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-cart {
    background: linear-gradient(135deg, #053a5c 0%, #074B6E 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(5, 58, 92, 0.3);
}

.btn-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #074B6E 0%, #053a5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.4);
}

.btn-order {
    background: linear-gradient(135deg, #053a5c 0%, #074B6E 100%);
    color: white;
    font-weight: 600;
    border: none;
}

.btn-order:hover:not(:disabled) {
    background: linear-gradient(135deg, #074B6E 0%, #053a5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.4);
}

.btn-preview, .btn-description {
    background: rgba(5, 58, 92, 0.05);
    color: #053a5c;
    font-weight: 500;
    border: 1px solid rgba(5, 58, 92, 0.15);
}

.btn-preview:hover, .btn-description:hover {
    background: rgba(5, 58, 92, 0.1);
    color: #053a5c;
    transform: translateY(-1px);
    border-color: rgba(5, 58, 92, 0.25);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}


.product-availability {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 4px 12px;
    border-radius: 15px;
    display: block;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.availability-available {
    background: #d4edda;
    color: #155724;
}

.availability-unavailable {
    background: #f8d7da;
    color: #721c24;
}

.product-unavailable {
    opacity: 0.7;
}

.product-unavailable .btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 1rem;
    min-height: 80px;
}

.btn {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-preview {
    background: #e6f2ef;
    color: #053a5c;
    border: 1px solid #053a5c;
}

.btn-preview:hover {
    background: #053a5c;
    color: white;
    transform: translateY(-2px);
}

.btn-order {
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-order:hover {
    background: linear-gradient(135deg, #041e2d 0%, #02111a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 58, 92, 0.4);
}

.btn-cart {
    background: linear-gradient(135deg, #e6c7d8 0%, #d4a5c0 100%);
    color: #053a5c;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-cart:hover {
    background: linear-gradient(135deg, #d4a5c0 0%, #c294ac 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 199, 216, 0.4);
}

.btn-description {
    background: #e6c7d8;
    color: #053a5c;
    border: 1px solid #e6c7d8;
}

.btn-description:hover {
    background: #d4a5c0;
    color: #053a5c;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050; /* Augmenté pour passer au-dessus des éléments flottants */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.preview-modal-content {
    max-width: 800px;
    max-height: 95vh;
    overflow-y: auto;
}

/* Amélioration responsive pour mobile */
@media (max-width: 768px) {
    .modal-content {
        margin: 1% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 95vh;
    }
    
    .preview-modal-content {
        max-height: 98vh;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #000;
}

.preview-container {
    text-align: center;
}

#preview-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.preview-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.preview-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.preview-thumbnail:hover,
.preview-thumbnail.active {
    border-color: #3498db;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #666;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #2980b9;
}

.cart-total {
    text-align: center;
    padding: 1rem;
    border-top: 2px solid #eee;
    margin-top: 1rem;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
}

.total-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.total-amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: #27ae60;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.checkout-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #c0392b;
}

.pagination {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #2980b9;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    margin-top: 3rem;
    width: 100%;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.site-footer .footer-container:first-child {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 20px 2rem;
}

.footer-section h3 {
    color: #e6c7d8;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #e6c7d8;
    padding-left: 5px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Style pour les boutons contact dans le footer principal (pas dans footer-contact-section) */
.site-footer .contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e6c7d8 0%, #d4a5c0 100%);
    color: #053a5c;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.site-footer .contact-btn:hover {
    background: linear-gradient(135deg, #d4a5c0 0%, #c294ac 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 199, 216, 0.4);
}

.social-links-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.social-link:hover {
    opacity: 1;
    color: #e6c7d8;
    padding-left: 10px;
}

.social-icon {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}


.footer-bottom {
    border-top: 1px solid rgba(230, 199, 216, 0.3);
    padding: 1.5rem 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #e6c7d8;
}

/* Styles pour l'upload d'images */
.uploaded-image {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.uploaded-image img {
    border-radius: 8px;
    border: 2px solid #e6c7d8;
}

.btn-remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-remove-image:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.upload-progress {
    background: linear-gradient(45deg, #fef9f6, #f2c7d5);
    color: #053a5c;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.upload-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

#main-image-preview,
#additional-images-preview {
    margin-top: 1rem;
    padding: 1rem;
    border: 2px dashed #e6c7d8;
    border-radius: 8px;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#main-image-preview:empty::before {
    content: "Aucune image sélectionnée";
    color: #999;
    font-style: italic;
}

#additional-images-preview:empty::before {
    content: "Aucune image additionnelle";
    color: #999;
    font-style: italic;
}

/* Icône panier flottante à gauche */
.floating-cart-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-cart-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 58, 92, 0.4);
    background: linear-gradient(135deg, #074a70 0%, #052c44 100%);
}

@media (max-width: 768px) {
    /* Correction de l'alignement de la bannière défilante */
    .top-scrolling-banner {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .scrolling-content {
        justify-content: center;
        padding: 0 1rem;
    }
    
    /* Header principal responsive */
    .main-header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 10px;
        align-items: center;
        text-align: center;
    }
    
    .header-left,
    .header-center,
    .header-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .header-center h1 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    /* Navigation catégories responsive */
    .categories-nav {
        padding: 0.5rem;
    }
    
    .categories-list {
        display: none; /* Masqué par défaut sur mobile */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 60px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .categories-list.show {
        display: flex !important; /* Affiché quand le menu est ouvert */
        right: 0 !important; /* Glisse depuis la droite */
    }
    
    .categories-list li {
        border-bottom: 1px solid #eee;
    }
    
    .categories-list a {
        padding: 10px 15px;
        display: block;
        text-align: left;
        font-size: 0.9rem;
        text-decoration: none;
        color: #053a5c;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s ease;
    }
    
    .categories-list a:hover {
        background-color: #f8f9fa;
        color: #041e2d;
    }
    
    /* Produits responsive - Colonne unique sur mobile */
    .products-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.8rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-card {
        min-height: auto;
        padding: 0.8rem;
    }
    
    .product-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .product-price {
        font-size: 0.8rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Filtres responsive */
    .filters-section {
        padding: 0.5rem;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-input, .price-input, .sort-select {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Réorganisation du logo et infos pour mobile */
    .logo-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0.5rem;
    }
    
    .logo-section h1 {
        font-size: 1.1rem;
        margin: 0;
        flex: 1;
        text-align: center;
        line-height: 1.2;
    }
    
    .contact-info {
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0.9;
        text-align: right;
        line-height: 1.3;
    }
    
    .header-controls {
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    /* Bouton menu mobile plus visible */
    .mobile-menu-toggle {
        display: block !important;
        background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
        border: 2px solid white;
        color: white;
        font-size: 1rem;
        padding: 6px 10px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(5, 58, 92, 0.3);
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
        min-width: 40px;
        text-align: center;
    }
    
    .mobile-menu-toggle:hover {
        background: linear-gradient(135deg, #074a70 0%, #052c44 100%);
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(5, 58, 92, 0.4);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.98);
    }
    
    /* Ajustement des bannières pour mobile */
    .brand-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .brand-info {
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .category-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }

    /* Responsive pour la section de bienvenue */
    .welcome-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mary-image-left,
    .mary-image-right {
        flex: 0 0 auto;
        align-self: center;
    }

    .mary-frame {
        width: 120px;
        height: 160px;
    }

    .welcome-title {
        font-size: 1.8rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    /* Responsive pour les encarts insights */
    .insights-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }

    .insights-card {
        min-height: 160px;
        padding: 1rem;
    }

    .insights-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .item-image {
        width: 60px;
        height: 60px;
    }

    .item-name {
        font-size: 0.8rem;
    }

    .item-price {
        font-size: 0.75rem;
    }

    /* Ciel étoilé plus subtil sur mobile */
    .spiritual-quotes::before {
        opacity: 0.5;
        background-size: 250px 100px;
    }

    .spiritual-quotes::after {
        font-size: 0.8rem;
        top: 6px;
        opacity: 0.5;
    }

    /* Oiseaux plus petits sur mobile */
    .spiritual-quotes .bird {
        width: 12px;
        height: 9px;
    }

    .spiritual-quotes .bird::before,
    .spiritual-quotes .bird::after {
        width: 6px;
        height: 4px;
    }

    /* Contenu des citations adapté mobile */
    .spiritual-quotes .quote-container {
        margin: 15px 8px 8px 8px;
        padding: 12px;
    }

    .quote-text {
        font-size: 0.9rem;
        line-height: 1.6;
        font-weight: 300;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .quote-text::before,
    .quote-text::after {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.3);
    }
    
    .quote-text::before {
        left: -12px;
        top: -6px;
    }
    
    .quote-text::after {
        right: -12px;
        bottom: -12px;
    }
    
    .quote-author {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    /* Bordures des encarts produits plus subtiles sur mobile */
    .insights-card.popular-items,
    .insights-card.best-sellers {
        border-width: 1px;
        animation-duration: 8s; /* Plus lent sur mobile */
    }

    /* Titre spécifique pour l'encart citations en mobile */
    .spiritual-quotes .insights-title {
        font-size: 1.1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    
    .mobile-menu-toggle {
        display: block;
    }
    
    .categories-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 0 20px 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .categories-list.mobile-open {
        left: 0;
    }
    
    .categories-list li {
        width: 100%;
        margin: 0;
    }
    
    .categories-list .category-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }
    
    /* Overlay pour fermer le menu */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .price-filter {
        justify-content: space-between;
    }
    
    /* Suppression de la règle dupliquée */
    
    .product-card {
        height: auto;
        min-height: 450px;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 1rem;
    }
    
    .product-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive */
    .site-footer {
        text-align: center;
    }
    
    .site-footer .footer-container:first-child {
        grid-template-columns: 1fr;
        padding: 2rem 15px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
        padding: 1rem 0;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .footer-section ul li a {
        display: inline-block;
        padding: 0.5rem 1rem;
    }
    
    .contact-details p {
        justify-content: center;
    }
    
    .social-links-section {
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Icône panier flottante mobile */
    .floating-cart-icon {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-cart-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Ajustement de la barre de navigation sup\u00e9rieure */
    .top-nav-bar {
        padding: 5px 0;
    }
    
    .top-nav-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .return-link {
        font-size: 0.85rem;
    }
    
    .top-nav-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    /* Section messages */
    .header-messages {
        padding: 6px 0;
        font-size: 0.85rem;
    }
    
    /* Ajustement global pour mobile */
    body {
        overflow-x: hidden;
    }
    
    /* Conteneurs principaux */
    .main-container,
    .products-section,
    .welcome-section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ajustement des marges et paddings */
    section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* S'assurer que tous les éléments respectent la largeur de l'écran */
    * {
        max-width: 100vw;
    }
    
    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .site-footer .footer-container:first-child {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 20px;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Bannière unique pour les pages catégories */
.main-banner {
    background: linear-gradient(135deg, #053a5c 0%, #2a5f7f 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.brand-info .brand-name {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-style: italic;
}

.category-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: right;
}

.category-icon {
    font-size: 2.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.category-title {
    font-size: 1.8rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Mobile responsive pour la bannière */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .brand-section, 
    .category-section {
        justify-content: center;
        text-align: center;
    }
    
    .brand-info .brand-name {
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .brand-logo, 
    .category-icon {
        font-size: 2rem;
    }
}

/* Styles pour les liens cliquables du logo */
.logo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-link h1 {
    margin: 0;
    color: inherit;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.brand-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.brand-link .brand-name,
.brand-link .brand-tagline {
    color: inherit;
}

/* =====================================
   PANNEAU LATÉRAL FLOTTANT DE FILTRAGE
   ===================================== */

.floating-filter-panel {
    position: fixed;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    width: 350px;
    max-height: 70vh;
    background: white;
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 0 25px rgba(5, 58, 92, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow: hidden;
    border: 2px solid rgba(5, 58, 92, 0.1);
}

.floating-filter-panel.open {
    right: 0;
}

.filter-header {
    background: linear-gradient(135deg, #053a5c, #2a5f7f);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-filter-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.toggle-filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.filter-content {
    padding: 1.5rem;
    max-height: calc(70vh - 80px);
    overflow-y: auto;
}

.category-filters {
    margin-bottom: 1.5rem;
}

.category-filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.category-filter-item:hover {
    background-color: rgba(5, 58, 92, 0.05);
}

.category-filter-checkbox {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.category-filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    flex-grow: 1;
}

.category-icon {
    font-size: 1.1rem;
}

.category-name {
    font-weight: 500;
    color: #333;
}

.filter-actions {
    display: flex;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(5, 58, 92, 0.1);
}

.filter-actions .btn {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-actions .btn-primary {
    background: linear-gradient(135deg, #053a5c, #2a5f7f);
    color: white;
}

.filter-actions .btn-primary:hover {
    background: linear-gradient(135deg, #2a5f7f, #053a5c);
    transform: translateY(-2px);
}

.filter-actions .btn-secondary {
    background: transparent;
    color: #053a5c;
    border: 2px solid #053a5c;
}

.filter-actions .btn-secondary:hover {
    background: #053a5c;
    color: white;
}

/* Styles pour les actions du panier */
.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(5, 58, 92, 0.1);
}

.cart-actions .btn-secondary {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #053a5c;
    border: 2px solid #053a5c;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cart-actions .btn-secondary:hover {
    background: #053a5c;
    color: white;
    transform: translateY(-2px);
}

.checkout-btn {
    flex: 2;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
}

/* Section explicative objets religieux */
.religious-objects-section {
    background: linear-gradient(135deg, rgba(5, 58, 92, 0.03) 0%, rgba(42, 95, 127, 0.03) 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 1px solid rgba(5, 58, 92, 0.1);
    border-bottom: 1px solid rgba(5, 58, 92, 0.1);
}

.religious-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.religious-objects-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #053a5c;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.religious-text {
    text-align: left;
    line-height: 1.8;
    color: #333;
}

.religious-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.religious-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .religious-objects-section {
        padding: 2.5rem 0;
        margin: 2rem 0;
    }
    
    .religious-objects-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .religious-text p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Section suggestion personnalisée de produits */
.spiritual-channels-section {
    background: transparent;
    padding: 3rem 0;
    margin: 2rem 0;
}

.spiritual-channels-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #053a5c;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
    max-width: 800px;
    padding: 0 20px;
}

.spiritual-suggestion-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    padding: 0 20px;
}

.spiritual-suggestion-text p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
    margin: 0 auto;
}

.spiritual-suggestion-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.suggested-product-frame {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(5, 58, 92, 0.1);
    overflow: hidden;
    border: 1px solid rgba(5, 58, 92, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.suggested-product-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(5, 58, 92, 0.15);
}

.suggested-product-card {
    display: flex;
    flex-direction: column;
    height: 520px;
    width: 100%;
}

.suggested-product-image-container {
    height: 340px;
    padding: 6px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.suggested-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.suggested-product-info {
    padding: 0.4rem 0.6rem 0.6rem;
    height: 160px;
    margin-top: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.suggested-product-name {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #053a5c;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.suggested-product-price {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: #053a5c;
    margin-bottom: 0.6rem;
    text-align: center;
}

.suggested-product-actions {
    position: absolute;
    bottom: 0;
    left: 0.6rem;
    right: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    justify-content: center;
    text-align: center;
    margin-top: 0.8rem;
}

.suggested-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    text-align: center;
    width: 100%;
    height: 36px;
    display: inline-block;
    white-space: nowrap;
}


.suggested-btn-order {
    background: #053a5c;
    color: white;
    border: 1px solid #053a5c;
}

.suggested-btn-order:hover {
    background: #041e2f;
}

.suggested-btn-cart {
    background: #e6c7d8;
    color: #053a5c;
    border: 1px solid #053a5c;
}

.suggested-btn-cart:hover {
    background: #053a5c;
    color: white;
}

.suggestion-controls {
    display: flex;
    align-items: center;
}

.suggest-new-btn {
    font-family: 'Roboto', sans-serif;
    background: #053a5c;
    color: white;
    border: 1px solid #053a5c;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    align-self: center;
}

.suggest-new-btn:hover {
    background: #041e2f;
}

.suggest-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.suggest-new-btn:hover .suggest-icon {
    transform: rotate(180deg);
}

.suggestion-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .spiritual-channels-section {
        padding: 2.5rem 0;
        margin: 2rem 0;
    }
    
    .spiritual-channels-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .spiritual-suggestion-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .spiritual-suggestion-container {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .suggested-product-frame {
        max-width: 100%;
        width: 100%;
    }
    
    .suggested-product-card {
        height: 480px;
    }
    
    .suggested-product-image-container {
        height: 290px;
    }
    
    .suggested-product-info {
        height: 120px;
        padding: 0.3rem 0.5rem 0.5rem;
    }
    
    .suggested-product-name {
        font-size: 0.85rem;
    }
    
    .suggested-product-price {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .suggested-product-actions {
        flex-direction: column;
        gap: 0.6rem;
        left: 0.6rem;
        right: 0.6rem;
    }
    
    .suggested-btn {
        width: 100%;
        height: 34px;
        font-size: 11px;
        padding: 5px 6px;
        white-space: nowrap;
    }
    
    .suggest-new-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .spiritual-suggestion-container {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .suggested-product-frame {
        border-radius: 12px;
    }
    
    .suggested-product-card {
        height: 440px;
    }
    
    .suggested-product-image-container {
        height: 260px;
    }
    
    .suggested-product-info {
        height: 110px;
        padding: 0.3rem 0.4rem 0.4rem;
    }
    
    .suggested-product-name {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .suggested-product-price {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .suggested-product-actions {
        left: 0.5rem;
        right: 0.5rem;
        gap: 0.4rem;
    }
    
    .suggested-btn {
        height: 32px;
        font-size: 10px;
        padding: 4px 4px;
        white-space: nowrap;
    }
    
    .suggest-new-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .suggest-text {
        font-size: 0.75rem;
    }
}


.floating-panel {
    background: white;
    border-radius: 12px;
    box-shadow: 3px 0 20px rgba(5, 58, 92, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 58, 92, 0.1);
    overflow: hidden;
    width: 300px;
    max-height: 400px;
}

.floating-panel.no-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 58, 92, 0.05);
    max-height: 80px;
}

.floating-panel:hover {
    box-shadow: 3px 0 30px rgba(5, 58, 92, 0.25);
    transform: translateX(5px);
}

.panel-header {
    background: linear-gradient(135deg, #053a5c 0%, #2a5f7f 100%);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.panel-content {
    padding: 1rem;
    max-height: 320px;
    overflow-y: auto;
}

/* Panneau panier détaillé */
.cart-panel .cart-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(5, 58, 92, 0.1);
}

.cart-panel .cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #f8f9fa;
}

.cart-item-details {
    flex: 1;
    font-size: 0.85rem;
}

.cart-item-name {
    font-weight: 600;
    color: #053a5c;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: #2a5f7f;
    font-weight: 500;
}

.cart-item-quantity {
    font-size: 0.8rem;
    color: #666;
}

.cart-empty {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 1rem 0;
}

/* Panneau messages défilants */
.messages-panel .message-item {
    background: rgba(5, 58, 92, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #053a5c;
    display: none;
    transition: all 0.5s ease;
}

.messages-panel .message-item.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.messages-panel .message-item:last-child {
    margin-bottom: 0;
}

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

.open-filter-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #053a5c, #2a5f7f);
    color: white;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 50px 0 0 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: -3px 0 15px rgba(5, 58, 92, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.open-filter-btn:hover {
    background: linear-gradient(135deg, #2a5f7f, #053a5c);
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -5px 0 20px rgba(5, 58, 92, 0.4);
}

.open-filter-btn.hidden {
    right: -200px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-filter-panel {
        width: 100%;
        right: -100%;
        top: 0;
        transform: none;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .floating-filter-panel.open {
        right: 0;
    }
    
    .open-filter-btn {
        bottom: 20px;
        top: auto;
        right: 20px;
        transform: none;
        border-radius: 50px;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .open-filter-btn:hover {
        transform: translateY(-3px);
    }

}


/* Styles pour les boutons du panier */
.remove-btn {
    background: #e74c3c !important;
    color: white !important;
    margin-left: 10px !important;
}

.remove-btn:hover {
    background: #c0392b !important;
}

.quantity-btn {
    background: #053a5c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #2a5f7f;
    transform: translateY(-1px);
}

/* Mobile responsiveness */

/* ==========================================
   FOOTER RESTRUCTURÉ - 3 SECTIONS
   ========================================== */

.main-footer {
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e6c7d8 20%, #053a5c 50%, #e6c7d8 80%, transparent 100%);
    z-index: 2;
}

.footer-content {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Section 1: Marque et Contact */
.brand-section {
    max-width: 320px;
}

.footer-logo h3 {
    font-size: 1.4rem;
    color: #e6c7d8;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(230, 199, 216, 0.8);
    font-style: italic;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #e6c7d8;
}

/* Section 2 & 3: Liens */
.footer-title {
    color: #e6c7d8;
    font-size: 1.1rem;
    margin: 0 0 1.2rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: #e6c7d8;
    padding-left: 8px;
    transform: translateX(3px);
}

/* Section 4: Réseaux sociaux */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(230, 199, 216, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(230, 199, 216, 0.15);
    color: white;
    transform: translateX(8px);
    border-color: rgba(230, 199, 216, 0.4);
    box-shadow: 0 4px 15px rgba(230, 199, 216, 0.2);
}

.social-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-link.facebook:hover {
    background: rgba(66, 103, 178, 0.2);
    border-color: rgba(66, 103, 178, 0.4);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.4);
}

/* Section contact du footer - inline */
.footer-contact-section {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(230, 199, 216, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.contact-row-inline, .contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn-inline, .contact-btn {
    background: linear-gradient(135deg, #e6c7d8 0%, #d4a5c0 100%);
    color: #053a5c;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(230, 199, 216, 0.2);
    margin: 0;
}

.contact-btn-inline:hover, .contact-btn:hover {
    background: linear-gradient(135deg, #d4a5c0 0%, #c294ac 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 199, 216, 0.3);
}

.contact-item-inline, .contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-icon {
    font-size: 1rem;
    color: #e6c7d8;
}

/* Footer Bottom */
.footer-bottom-new {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(230, 199, 216, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.separator {
    color: rgba(230, 199, 216, 0.5);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(230, 199, 216, 0.15);
    color: #e6c7d8;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(230, 199, 216, 0.2);
}

/* Mobile responsiveness pour le nouveau footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-row-inline, .contact-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-item-inline, .contact-item {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Header mobile */
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .header-left, .header-center, .header-right {
        justify-content: center;
        flex: none;
    }
    
    .logo-text, .logo-link h1 {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-link {
        gap: 10px;
    }
    
    .site-return-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Navigation mobile */
    .categories-nav {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .categories-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .category-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-container {
        gap: 1.5rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-links {
        max-width: 280px;
    }
    
    .social-link {
        padding: 0.6rem 0.8rem;
    }
}

/* ==========================================
   BOUTON PANIER FLOTTANT LATÉRAL
   ========================================== */

.floating-cart-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 58, 92, 0.4);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    user-select: none;
}

.floating-cart-btn:hover {
    background: linear-gradient(135deg, #064a71 0%, #052336 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(5, 58, 92, 0.6);
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    min-width: 22px;
}

.floating-cart-count.hidden {
    display: none;
}

/* ==========================================
   AMÉLIORATIONS DU MODAL PANIER
   ========================================== */

/* Corriger l'affichage du panier pour éviter les coupures */
.modal-content.large-modal {
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin: 20px 0;
    padding-right: 10px;
}

/* Améliorer les boutons du panier */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #053a5c;
}

.cart-item-info {
    flex: 1;
    margin-right: 15px;
}

.cart-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #7f8c8d;
    font-size: 0.9em;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    background: #053a5c;
    color: white;
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #064a71;
    transform: scale(1.1);
}

.quantity-btn.remove-btn {
    background: #e74c3c;
    width: 28px;
    height: 28px;
    font-size: 18px;
}

.quantity-btn.remove-btn:hover {
    background: #c0392b;
}

/* Style pour le résumé des coûts */
.cart-summary {
    margin-top: auto;
    padding: 20px 0;
    border-top: 2px solid #ecf0f1;
    background: #f8f9fa;
    margin: 0 -20px -20px -20px;
    padding: 20px;
}

.cart-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-actions button {
    flex: 1;
    min-width: 200px;
}

/* Responsive pour le bouton flottant */
@media (max-width: 768px) {
    .floating-cart-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        left: 15px;
    }
    
    .floating-cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -3px;
        right: -3px;
    }
    
    #cart-items {
        max-height: 500px; /* Encore augmenté pour combler plus de vide */
        margin-bottom: 15px; /* Contrôler l'espacement avec cart-summary */
    }
    
    /* Optimisation des textes du panier pour mobile */
    .cart-item-name {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 3px;
    }
    
    .cart-item-price {
        font-size: 0.75rem;
    }
    
    .cart-item-controls {
        gap: 5px;
    }
    
    .cart-item-controls button {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .quantity-input {
        width: 40px;
        font-size: 0.75rem;
        padding: 0.2rem;
    }
    
    .cart-summary {
        font-size: 0.8rem; /* Réduit de 0.85rem à 0.8rem */
        padding: 10px 0; /* Réduit de 20px à 10px */
        margin-top: 0; /* Supprime le margin-top pour réduire l'espacement */
    }
    
    /* Réduire l'espacement du conteneur des options de livraison */
    #shipping-options-container {
        margin: 8px 0;
    }
    
    #shipping-options-container hr {
        margin: 8px 0 !important;
    }
    
    .summary-line {
        padding: 0.2rem 0; /* Réduit de 0.3rem à 0.2rem */
        padding-left: 15px; /* Décalage à droite des textes de résumé */
    }
    
    .cart-actions button {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .modal-content h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* S'assurer que le modal panier passe au-dessus du bouton flottant sur mobile */
    #cart-modal {
        z-index: 1060 !important;
    }
}

/* Styles pour la grille des produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Adaptation mobile pour une seule colonne */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .product-card {
        min-height: auto;
        padding: 15px;
    }
}

/* Nouveau menu dropdown hamburger */
.mobile-dropdown-menu {
    position: fixed;
    top: 55px;
    right: 15px;
    width: 200px;
    max-height: 80vh;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.mobile-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-header {
    padding: 8px 12px;
    background: linear-gradient(135deg, #053a5c 0%, #041e2d 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.mobile-menu-item {
    display: block;
    padding: 6px 12px;
    color: #053a5c;
    text-decoration: none;
    font-size: 0.65rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    line-height: 1.3;
}

.mobile-menu-item:hover {
    background-color: #f8f9fa;
    color: #041e2d;
}

.mobile-menu-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

/* Ajustement sur très petits écrans */
@media (max-width: 768px) {
    .mobile-dropdown-menu {
        width: 180px;
        right: 10px;
        top: 50px;
        max-height: 75vh;
    }
    
    .mobile-menu-header {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    
    .mobile-menu-item {
        font-size: 0.6rem;
        padding: 5px 10px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .mobile-dropdown-menu {
        width: 160px;
        right: 5px;
        top: 45px;
        max-height: 70vh;
    }
    
    .mobile-menu-header {
        font-size: 0.6rem;
        padding: 5px 8px;
    }
    
    .mobile-menu-item {
        font-size: 0.55rem;
        padding: 4px 8px;
        line-height: 1.1;
    }
    
    /* Optimisation du panier pour très petits écrans */
    #cart-items {
        max-height: 400px; /* Encore augmenté pour maximiser l'espace */
        margin-bottom: 10px; /* Contrôler l'espacement */
    }
    
    .cart-item-name {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .cart-item-price {
        font-size: 0.7rem;
    }
    
    .cart-item-controls button {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .quantity-input {
        width: 35px;
        font-size: 0.7rem;
    }
    
    .cart-summary {
        font-size: 0.75rem; /* Réduit de 0.8rem à 0.75rem */
        padding: 8px 0; /* Réduit encore plus l'espacement */
        margin-top: 0; /* Supprime le margin-top */
    }
    
    .summary-line {
        padding: 0.15rem 0; /* Espacement réduit pour très petits écrans */
        padding-left: 12px; /* Décalage à droite adapté aux petits écrans */
    }
    
    /* Optimisation conteneur options livraison pour petits écrans */
    #shipping-options-container {
        margin: 5px 0;
    }
    
    #shipping-options-container hr {
        margin: 5px 0 !important;
    }
    
    .cart-actions button {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .modal-content h2 {
        font-size: 1.1rem;
    }
    
    .modal-content.large-modal {
        max-height: 85vh;
        padding: 1rem;
    }
    
    /* S'assurer que le modal panier passe au-dessus du bouton flottant sur très petits écrans */
    #cart-modal {
        z-index: 1060 !important;
    }
    }
}

