/* ==============================================
   BOUTIQUE CHAPTER 91 - Design Ultra-Moderne 2026 
   Style inspiré de la page New Membre
   Version: 4.0
   Créé le: 09/02/2026
=============================================== */

/* Masquer UNIQUEMENT le contenu visuel du header, PAS le menu sticky */
/* Note : WordPress génère la classe avec ou sans -php selon la version */
.page-template-template-boutique .header .overlay-layer,
.page-template-template-boutique-php .header .overlay-layer {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.page-template-template-boutique .intro-section,
.page-template-template-boutique-php .intro-section {
    display: none !important;
}

/* Réduire l'espace du header au minimum */
.page-template-template-boutique .header,
.page-template-template-boutique-php .header {
    min-height: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== VARIABLES CSS ===== */
:root {
    --boutique-primary: #ff6600;
    --boutique-orange: #f16c20;
    --boutique-dark: #0f0f0f;
    --boutique-card-bg: rgba(20, 20, 20, 0.8);
    --boutique-white: #ffffff;
}

/* Section principale avec fond dégradé moderne */
.boutique-section-modern {
    position: relative;
    padding: 40px 0 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
    overflow: hidden;
    min-height: 100vh;
}

/* Effet de particules en arrière-plan */
.calendrier-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(241, 108, 32, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.calendrier-overlay-modern {
    position: relative;
    z-index: 1;
}

/* ===== HEADER MODERNE ===== */
.calendrier-header-modern {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 100px;
    position: relative;
}

.calendrier-title-modern {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ligne décorative animée */
.calendrier-line-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px auto;
}

.calendrier-line-modern span {
    height: 3px;
    background: var(--boutique-orange);
    border-radius: 3px;
    animation: lineGrow 2s ease-in-out infinite;
}

.calendrier-line-modern span:nth-child(1) {
    width: 60px;
    animation-delay: 0s;
}

.calendrier-line-modern span:nth-child(2) {
    width: 100px;
    animation-delay: 0.3s;
}

.calendrier-line-modern span:nth-child(3) {
    width: 60px;
    animation-delay: 0.6s;
}

@keyframes lineGrow {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

/* Texte d'introduction */
.calendrier-intro-modern {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.calendrier-intro-modern p {
    margin: 0;
}

.calendrier-intro-modern strong {
    color: var(--boutique-orange);
    font-weight: 600;
}

/* ===== SECTION CONTAINER ===== */
.boutique-section-modern .container {
    max-width: 1600px !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== FILTRES MODERNISÉS ===== */
.boutique-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 50px;
    max-width: 1050px;
    padding: 0 20px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid rgba(241, 108, 32, 0.3);
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(241, 108, 32, 0.1);
    border-color: rgba(241, 108, 32, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(241, 108, 32, 0.8);
    color: #ffffff;
    border-color: var(--boutique-orange);
    box-shadow: 0 5px 20px rgba(241, 108, 32, 0.3);
}

/* ===== GRILLE DE PRODUITS - 4 COLONNES ===== */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 auto 40px;
    max-width: 1050px;
    padding: 0 20px;
}

/* ===== CARTE PRODUIT MODERNE ===== */
.product-card {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.product-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Effet glow au hover */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(241, 108, 32, 0.15) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 1;
}

/* Conteneur interne de la carte */
.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card,
.product-image-wrapper,
.product-info {
    background: var(--boutique-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 108, 32, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(241, 108, 32, 0.2);
}

/* ===== IMAGE PRODUIT ===== */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 125px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.5);
    border: none;
    border-radius: 12px 12px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Dégradé sur l'image */
.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

/* Overlay au hover */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 108, 32, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-details {
    background: var(--boutique-white);
    color: var(--boutique-orange);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-details:hover {
    background: var(--boutique-dark);
    color: var(--boutique-white);
    transform: scale(1.05);
}

.btn-view-details i {
    margin-right: 5px;
}

/* ===== INFO PRODUIT ===== */
.product-info {
    padding: 15px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0 0 12px 12px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--boutique-orange);
}

.product-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.product-card:hover .product-description {
    color: rgba(241, 108, 32, 0.8);
}

.product-size {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 10px;
    font-style: italic;
}

.product-size i {
    margin-right: 5px;
    color: var(--boutique-orange);
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--boutique-orange);
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btn-add-cart {
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: var(--boutique-white);
    border: none;
    padding: 9px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(241, 108, 32, 0.4);
}

.btn-add-cart i {
    margin-right: 5px;
}

/* Ligne hover au bas de la carte */
.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 9px;
    right: 9px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--boutique-orange) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 2px;
    z-index: 2;
}

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

/* ===== MESSAGE AUCUN PRODUIT ===== */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    display: none;
}

.no-products i {
    font-size: 4rem;
    color: var(--boutique-orange);
    margin-bottom: 20px;
}

.no-products p {
    margin: 0;
}

/* ===== PANIER FLOTTANT ===== */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.cart-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: var(--boutique-white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(241, 108, 32, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.cart-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(241, 108, 32, 0.6);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--boutique-dark);
    color: var(--boutique-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 3px solid var(--boutique-white);
}

.cart-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 600px;
    background: var(--boutique-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.cart-panel.active {
    display: flex;
    animation: slideInUp 0.3s ease;
}

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

.cart-header {
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: var(--boutique-white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--boutique-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 400px;
}

.cart-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
    font-style: italic;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.cart-item-name {
    font-weight: 600;
    color: var(--boutique-white);
    margin: 0 0 5px;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--boutique-orange);
    font-weight: 700;
    font-size: 1rem;
}

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

.cart-item-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--boutique-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cart-item-controls button:hover {
    background: var(--boutique-orange);
    border-color: var(--boutique-orange);
}

.btn-remove {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.btn-remove:hover {
    color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.1) !important;
}

.cart-item-quantity {
    color: var(--boutique-white);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* ===== ZONE LOOKUP N° HOG ===== */
.cart-hog-lookup {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
}

.cart-hog-lookup label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--boutique-orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.hog-input-row {
    display: flex;
    gap: 8px;
}

.hog-input-row input {
    flex: 1;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
}

.hog-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.4);
}

.hog-input-row input:focus {
    border-color: var(--boutique-orange);
    background: rgba(255, 255, 255, 0.1);
}

.btn-hog-search {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.btn-hog-search:hover {
    background: linear-gradient(135deg, #e85d12 0%, #f16c20 100%);
    transform: scale(1.08);
}

.btn-hog-search:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.hog-result {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    min-height: 20px;
    transition: all 0.3s ease;
}

.hog-result.hog-success {
    color: #2ecc71;
}

.hog-result.hog-error {
    color: #e74c3c;
}

.hog-result.hog-loading {
    color: rgba(255,255,255,0.6);
}

.hog-result .hog-email {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.hog-result .hog-email-missing {
    display: block;
    font-size: 12px;
    color: rgba(255,180,0,0.8);
    font-style: italic;
    margin-top: 2px;
}

/* Bouton commander désactivé */
.btn-checkout:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--boutique-white);
}

.total-amount {
    color: var(--boutique-orange);
    font-size: 1.5rem;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: var(--boutique-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(241, 108, 32, 0.4);
}

.btn-checkout i {
    margin-right: 8px;
}

/* ===== MODAL PRODUIT ===== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--boutique-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--boutique-white);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--boutique-orange);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
}

.modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--boutique-white);
}

#modalTitle {
    font-size: 2rem;
    font-weight: 800;
    color: var(--boutique-white);
    margin: 0 0 15px;
}

#modalDescription {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 15px;
}

#modalTaille {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 25px;
}

#modalTaille strong {
    color: var(--boutique-orange);
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--boutique-orange);
    margin-bottom: 30px;
}

.btn-add-to-cart-modal {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: var(--boutique-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-to-cart-modal:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(241, 108, 32, 0.5);
}

.btn-add-to-cart-modal i {
    margin-right: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .boutique-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 991px) {
    .calendrier-title-modern {
        font-size: 42px;
    }
    
    .boutique-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 100%;
    }
    
    .product-image-wrapper {
        height: 115px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .boutique-section-modern {
        padding: 60px 0;
    }
    
    .calendrier-header-modern {
        margin-bottom: 40px;
        margin-top: 80px;
    }
    
    .calendrier-title-modern {
        font-size: 32px;
    }
    
    .calendrier-intro-modern {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .boutique-filters {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .product-image-wrapper {
        height: 100px;
    }
    
    .product-name {
        font-size: 11px;
    }
    
    .product-description {
        font-size: 9px;
    }
    
    .cart-panel {
        width: 320px;
    }
    
    .floating-cart {
        bottom: 20px;
        right: 20px;
    }
    
    .cart-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    #modalTitle {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .boutique-section-modern {
        padding: 40px 0;
    }
    
    .calendrier-header-modern {
        margin-top: 60px;
    }
    
    .calendrier-title-modern {
        font-size: 28px;
    }
    
    .boutique-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
    
    .cart-panel {
        width: 100%;
        max-width: none;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
    }
}

/* ===== ANIMATIONS ===== */
.product-card {
    animation: fadeIn 0.5s ease;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

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

/* Mode sombre optimisé */
@media (prefers-color-scheme: dark) {
    .boutique-section-modern {
        background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%) !important;
    }
}

/* ===== CARTE D'AJOUT ADMIN ===== */
.product-card-add {
    background: rgba(241, 108, 32, 0.1);
    border: 2px dashed rgba(241, 108, 32, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 350px;
}

.product-card-add:hover {
    background: rgba(241, 108, 32, 0.2);
    border-color: var(--boutique-orange);
    transform: translateY(-5px);
}

.add-product-icon {
    font-size: 4rem;
    color: var(--boutique-orange);
    transition: transform 0.3s ease;
}

.product-card-add:hover .add-product-icon {
    transform: scale(1.1) rotate(90deg);
}

.add-product-text {
    color: var(--boutique-white);
    font-size: 1rem;
    margin-top: 15px;
    font-weight: 600;
    opacity: 0.8;
}

/* Badge admin sur les produits personnalisés */
.custom-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--boutique-orange);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}

/* ===== BARRE ADMIN + BOUTON + ===== */
.boutique-admin-bar {
    display: flex;
    justify-content: flex-end;
    max-width: 1050px;
    margin: 0 auto 16px;
    padding: 0 20px;
}

.btn-floating-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.45);
    transition: all 0.3s ease;
}
.btn-floating-add i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.btn-floating-add:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 6px 24px rgba(39, 174, 96, 0.65);
    transform: translateY(-2px);
}
.btn-floating-add:hover i {
    transform: rotate(90deg);
}
@media (max-width: 767px) {
    .boutique-admin-bar {
        padding: 0 15px;
        margin-bottom: 12px;
    }
    .btn-floating-add {
        font-size: 13px;
        padding: 9px 18px;
    }
}

/* ===== BOUTON STYLO ÉDITION (style identique aux boutons P et R du trombinoscope) ===== */
.btn-edit-product {
    position: absolute;
    top: 8px;
    left: 46px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #f0b429 100%);
    border: none;
    border-radius: 50%;
    color: #8B0000;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5),
                0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    padding: 0;
    font-weight: 800;
    font-size: 15px;
    z-index: 10;
}
.btn-edit-product:hover {
    background: linear-gradient(135deg, #ffe140 0%, #FFD700 100%);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.7),
                0 3px 8px rgba(0,0,0,0.35);
    transform: scale(1.1);
}
.btn-edit-product:active {
    transform: scale(0.95);
}

/* ===== BOUTON − SUPPRESSION (style identique aux boutons P et R du trombinoscope) ===== */
.btn-delete-product {
    position: absolute;
    top: 8px;
    left: 8px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.5),
                0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    padding: 0;
    font-weight: 800;
    font-size: 15px;
    z-index: 10;
}
.btn-delete-product:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 6px 24px rgba(231, 76, 60, 0.7),
                0 3px 8px rgba(0,0,0,0.35);
    transform: scale(1.1);
}
.btn-delete-product:active {
    transform: scale(0.95);
}

/* ===== MODAL D'AJOUT DE PRODUIT ===== */
.add-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}
.add-product-modal.active {
    display: flex;
}

/* Overlay du modal */
.add-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

/* En-tête du modal */
.add-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}
.add-product-header h2 {
    margin: 0;
    color: #ff6600;
    font-size: 1.5rem;
}
.add-product-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ff6600;
    line-height: 1;
    padding: 0 4px;
    transition: transform 0.2s;
}
.add-product-close:hover {
    transform: rotate(90deg);
}

/* Ligne à 2 colonnes dans le formulaire */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 576px) {
    .form-row { grid-template-columns: 1fr; }
}

.add-product-form {
    background: var(--boutique-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.add-product-form h3 {
    color: var(--boutique-white);
    margin: 0 0 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--boutique-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--boutique-white);
    -webkit-text-fill-color: var(--boutique-white);
    caret-color: var(--boutique-white);
    font-size: 1rem;
}

/* Options du select : fond sombre explicite pour éviter texte blanc sur blanc */
.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--boutique-orange);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 8px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit-product,
.btn-cancel-add {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit-product {
    background: linear-gradient(135deg, #f16c20 0%, #ff6600 100%);
    color: var(--boutique-white);
}

.btn-submit-product:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(241, 108, 32, 0.4);
}

.btn-cancel-add {
    background: rgba(255, 255, 255, 0.1);
    color: var(--boutique-white);
}

.btn-cancel-add:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Message de succès/erreur */
.form-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #F44336;
    color: #F44336;
}

