@media (max-width: 900px) and (orientation: landscape) {
  .mobile-landscape-blocker {
    display: flex !important;
    position: fixed;
    z-index: 99999;
    font-family: "Montserrat", sans-serif;
    color: #310439;
    top: 0; left: 0; right: 0; bottom: 0;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    text-align: center;
    padding: 2em;
  }
  body *:not(.mobile-landscape-blocker) {
    display: none !important;
  }
}

/* Styles généraux */
body {
    background-color: #dfcfecd0 !important;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;


}

.produit-prix-petit {
    font-size: 0.9em !important;
    color: #a77ecb;
}


.header-bar {
  background-color: #ffffff88 !important;
    width: 100%;
    height: 150px;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1001;
}

.header-bar h1 {
    font-family: "Pinyon Script", sans-serif;
    color: #310439;
    font-size: 75px;
    text-align: center; /* Ajout pour centrer le texte horizontalement */
    margin-top: 20px; /* Ajustez cette valeur pour le centrage vertical */  font-weight: 500;
  
}
.header-bar h2 {  
    
    font-family: "Cormorant Garamond", sans-serif;
    color: #4A0755;
    font-size: 20px;
    text-align: center; /* Optionnel, déjà hérité de .header-bar */
    position : relative;
    bottom: 70px;
    right: -35px;
   

   
    
}
/* Panier dans le header */
.panier-header {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background:#310439;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.panier-header:hover {
    background:#310439;
    transform: translateY(-50%) scale(1.05);
}

.panier-icon {
    font-size: 1.8em;
}

.panier-count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    color: #ffffff;
    text-align: center;
}

/* Banderole fixe (sans défilement) */
.banderole-defilante {
   background:  #310439;
    overflow: hidden;
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(49, 4, 57, 0.3);
    z-index: 999;
}

.banderole-contenu {
    display: inline-block;
}

.banderole-contenu span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    color: #fff;
    letter-spacing: 1px;
}

/* Container des produits */
.produits-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 60px auto 50px;
    padding: 0 20px;
    margin-top: 230px; /* 150px (header) + 50px (banderole) + 30px (espace) */
}

/* Carte produit */
.produit-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(177, 139, 224, 0.15);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 2px 15px rgba(177, 139, 224, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.produit-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(177, 139, 224, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(177, 139, 224, 0.15);
}


.produit-image {
    width: 60%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 0;
    margin: 15px auto 0;
    display: block;
}

.produit-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.produit-titre {
    font-family: 'Monteserrat', serif;
    font-size: 1.2em;
    font-weight: 500;
    color: #6b0a7a;
    margin: 0 0 10px 0;
    text-align: center;
}

.produit-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex-grow: 1;
    text-align: center;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow-x: hidden;
}

.produit-prix {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #6b0a7a;
    text-align: center;
    margin: 12px 0 15px 0;
}

.produit-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-savoir-plus {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    color: #6b0a7a;
    border: 1px solid rgba(177, 139, 224, 0.25);
    border-radius: 18px;
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.btn-savoir-plus:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(177, 139, 224, 0.4);
    box-shadow: 0 2px 10px rgba(177, 139, 224, 0.15);
}

.btn-acheter {
    flex: 1;
    background: #310439;
    color: white;
    border: 1px solid rgba(177, 139, 224, 0.4);
    border-radius: 18px;
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(177, 139, 224, 0.2);
}

.btn-acheter:hover {
    background: #310439;
    box-shadow: 0 4px 18px rgba(177, 139, 224, 0.3);
    transform: translateY(-2px);
}

.btn-acheter:active,
.btn-savoir-plus:active {
    transform: translateY(0);
}

/* Badge rupture de stock */
.badge-epuise {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    backdrop-filter: blur(8px);
    z-index: 10;
}

/* Badge stock faible */
.badge-stock-faible {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72em;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 15px rgba(218, 165, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: pulse-stock 2.5s ease-in-out infinite;
}

@keyframes pulse-stock {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Badge pièce unique */
.badge-piece-unique {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(107, 10, 122, 0.95) 0%, rgba(167, 126, 203, 0.95) 100%);
    color: white;
    padding: 8px 18px; /* même taille que badge stock faible */
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif; /* harmonisé avec l'autre badge */
    font-size: 0.72em;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 15px rgba(107, 10, 122, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: pulse-stock 2.5s ease-in-out infinite; /* même animation que l'autre */
}

.chargement {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #6b0a7a;
    padding: 40px;
    grid-column: 1 / -1;
}

.aucun-produit {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #666;
    padding: 60px 20px;
    grid-column: 1 / -1;
}


@media (min-width: 769px) and (max-width: 1024px) {
    .produits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Panneau du panier coulissant */
.panier-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
      background-color: #ffffff !important;

    border-left: 1px solid rgba(177, 139, 224, 0.15);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.panier-panel.active {
    right: 0;
}

.panier-header-panel {
    background: rgba(223, 207, 236, 0.4);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(177, 139, 224, 0.15);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panier-header-panel h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    color: #310439;
    margin: 0;
    font-weight: 500;
}

.panier-close {
    background: transparent;
    border: none;
    color: #6b0a7a;
    font-size: 1.3em;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.panier-close:hover {
    background: rgba(177, 139, 224, 0.08);
    opacity: 1;
}

.panier-contenu {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.panier-vide {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #999;
    padding: 40px 20px;
    font-size: 1.1em;
}

.panier-item {
    background: rgba(167, 126, 203, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.panier-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.panier-item-info {
    flex: 1;
}

.panier-item-nom {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1em;
    font-weight: 600;
    color: #6b0a7a;
    margin: 0 0 5px 0;
}

.panier-item-prix {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #6b0a7a;
}

.panier-item-quantite {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-quantite {
    background: #310439;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.2s ease;
}

.btn-quantite:hover {
    background: #500e5e;
}

.quantite-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.btn-supprimer-item {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    transition: all 0.2s ease;
}

.btn-supprimer-item:hover {
    background: #c0392b;
}

.panier-footer {
    background: rgba(223, 207, 236, 0.25);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-top: 1px solid rgba(177, 139, 224, 0.15);
}

.panier-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    color: #6b0a7a;
    margin-bottom: 15px;
}

.btn-commander {
    width: 100%;
  background: #310439;
    color: white;
    border-radius: 24px;
    border: none;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(177, 139, 224, 0.2);
}



.panier-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.panier-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations pour notifications */
@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Modal de connexion personnalisée */
.modal-connexion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(49, 4, 57, 0.4);
    backdrop-filter: blur(12px);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

.modal-connexion {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    box-shadow: 0 15px 50px rgba(162, 89, 230, 0.2),
                0 0 100px rgba(255, 216, 107, 0.1);
    z-index: 9999;
    min-width: 420px;
    max-width: 90%;
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-connexion-header {
    padding: 35px 40px 25px;
    border-bottom: 1px solid rgba(162, 89, 230, 0.15);
}

.modal-connexion-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: #310439;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.5px;
}

.modal-connexion-body {
    padding: 35px 40px;
    text-align: center;
}

.modal-connexion-body p {
    font-family: 'Montserrat', sans-serif;
    color: #310439;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin: 8px 0;
}

.modal-connexion-footer {
    padding: 0 40px 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-modal-annuler,
.btn-modal-connexion {
    font-family: 'Montserrat', sans-serif;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-modal-annuler {
    background: rgba(255, 255, 255, 0.3);
    color: #310439;
    backdrop-filter: blur(10px);
}

.btn-modal-annuler:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(162, 89, 230, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(162, 89, 230, 0.15);
}

.btn-modal-connexion {
    background: #310439;
    color: white;
    box-shadow: 0 4px 20px rgba(162, 89, 230, 0.25);
}



@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -55%);
        opacity: 0;
        filter: blur(10px);
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
        filter: blur(0);
    }
}



@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}
/* Style pour la signature dans le footer */
.footer-signature {
  text-align: center;
  font-family: "Pinyon Script", serif; /* Police de caractère */
  font-weight: 900;
  font-size: 19px;
  color: #310439; /* Couleur du texte */
  letter-spacing: 1px; /* Espacement des lettres */

}


/* ========== MEDIA QUERIES ========== */

/* Téléphone : Maximum 600px */
@media (max-width: 600px) {
    .header-bar {
        height: 111px !important;
        min-height: 111px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100vw !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1001 !important;
    }
    .header-bar h1 {
        font-size: 48px !important;
        margin: 0 !important;
    }
    .header-bar h2 {  
        font-size: 14px !important;
        bottom: 10px !important;
        margin: 0 !important;
        right: -25px !important;
    }
        
    /* Banderole collée au header */
        .banderole-defilante {
                top: 111px !important;
                padding: 10px 0 !important;   
                font-size: 0.8em !important;
        }
        
 
     .panier-header {
        position: fixed !important;
        top: auto !important;
        bottom: 15px !important;
        right: 25px !important;
        transform: none !important;
        padding: 12px !important;
        background:#ffffff !important;
        border: 2px solid  #310439!important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-radius: 50% !important;
        z-index: 1003 !important;
        width: 41px !important;
        height: 41px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
        
        .panier-header:hover {
                         transform: none !important;
        }
        
        .panier-icon {
                font-size: 1.5em !important;
                color: #000000 !important;
        }
        .panier-count {
                position: absolute !important;
                top: -5px !important;
                right: -5px !important;
                background: #310439 !important;
                color: #fff !important;
                font-size: 0.7em !important;
                font-weight: 700 !important;
                min-width: 22px !important;
                height: 22px !important;
                border-radius: 50% !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                border: 2px solid #fff !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
        }
        /* Produits commencent sous la banderole */
        .produits-container {
                margin-top: 170px !important;
                margin-bottom: 20px !important;
                padding: 10px 8px !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px !important;
        }
        
        .product-card,
        .produit-card {
                border-radius: 12px !important;
        }
        
        .product-image,
        .produit-image {
                height: 140px !important;
        }
        
        .product-info,
        .produit-info {
                padding: 10px 8px !important;
        }
        
        .product-title,
        .produit-titre {
                font-size: 1.2em !important;
                margin: 0 0 6px 0 !important;
        }
        
        .produit-description {
                font-size: 0.75em !important;
                margin: 0 0 8px 0 !important;
                line-height: 1.4 !important;
                white-space: normal !important;
                word-break: break-word !important;
                overflow-wrap: break-word !important;
                hyphens: auto !important;
                overflow-x: hidden !important;
        }
        
        .product-price,
        .produit-prix {
                font-size: 1em !important;
                margin: 8px 0 10px 0 !important;
        }
        
        .produit-actions,
        .product-actions {
                gap: 6px !important;
        }
        
        .btn-savoir-plus,
        .btn-acheter {
                padding: 7px 10px !important;
                font-size: 0.75em !important;
                border-radius: 12px !important;
        }
        
        .badge-stock-faible,
        .badge-piece-unique,
        .badge-epuise {
                padding: 5px 10px !important;
                font-size: 0.65em !important;
                top: 8px !important;
                right: 8px !important;
        }
    /* Panier panel à la bonne largeur sans débordement */
        .panier-panel {
                width: 100vw !important;
                max-width: 100vw !important;
                right: -100vw !important;
                border-radius: 0 !important;
        }
        
        .panier-panel.active {
                right: 0 !important;
        }
        
        .panier-header-panel {
                padding: 15px !important;
        }
        
        .panier-header-panel h3 {
                font-size: 1.2em !important;
        }
        
        .panier-contenu {
                padding: 12px !important;
        }
        
        .panier-item {
                padding: 10px !important;
                gap: 10px !important;
        }
        
        .panier-item-image {
                width: 60px !important;
                height: 60px !important;
        }
        
        .panier-item-nom {
                font-size: 1em !important;
        }
        
        .panier-item-prix {
                font-size: 0.95em !important;
        }
        
        .panier-footer {
                padding: 15px !important;
        }
        
        
        .panier-total {
                font-size: 1em !important;
                margin-bottom: 12px !important;
        }
        
        .btn-commander {
                width: 100% !important;
                padding: 12px !important;
                font-size: 0.9em !important;
        }
        
            .modal-connexion {
                min-width: 90% !important;
                max-width: 95% !important;
                border-radius: 25px !important;
        }
        
        .modal-connexion-header {
                padding: 28px 25px 20px !important;
        }
        
        .modal-connexion-header h3 {
                font-size: 22px !important;
        }
        
        .modal-connexion-body {
                padding: 28px 25px !important;
        }
        
        .modal-connexion-body p {
                font-size: 14px !important;
        }
        
        .modal-connexion-footer {
                padding: 0 25px 30px !important;
                flex-direction: column !important;
        }
        
        .btn-modal-annuler,
        .btn-modal-connexion {
                padding: 12px 28px !important;
                font-size: 14px !important;
                width: 100% !important;
        }
}

/* Tablette : 601px à 1200px */
@media (min-width: 601px) and (max-width: 1200px) {

     /* Panier tablette : contenu scrollable, footer toujours visible */
    .panier-panel {
        display: flex !important;
        flex-direction: column !important;
        height: 100vh !important;
        max-height: 100vh !important;
    }
    .panier-contenu {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        padding-bottom: 0 !important;
    }
    .panier-footer {
        position: sticky !important;
        bottom: 0 !important;
        background: rgba(223, 207, 236, 0.95) !important;
        z-index: 10 !important;
        box-shadow: 0 -2px 8px rgba(49,4,57,0.08) !important;
    }
 .header-bar h1 {
  font-size: 75px !important;
}
 .header-bar h2 {

    font-size: 24px !important;
        margin: 0 !important;
    right: -25px;
}
    
    .panier-header {
        right: 15px;
        padding: 8px 12px;
    }
    
    .panier-icon {
        font-size: 1.3em;
    }
    
    .panier-count {
        font-size: 0.7em;
    }
    
    .shop-container {
        margin-top: 145px;
        padding: 15px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .product-card {
        border-radius: 18px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 18px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 20px;
    }
    .footer-signature {
  font-size: 22px !important;
}

}

/* Grand écran : 1201px à 2000px */
@media (min-width: 1201px) and (max-width: 2000px) {
    .header-bar {
        height: 150px;
    }
    
    .header-bar h1 {
        font-size: 75px;
        margin-top: 20px;
    }
    
    .header-bar h2 {
        font-size: 20px;
        bottom: 70px;
    }
    
    .panier-header {
        right: 30px;
        padding: 12px 20px;
    }
    
    .panier-icon {
        font-size: 1.8em;
    }
    
    .panier-count {
        font-size: 0.85em;
    }
    
    .shop-container {
        margin-top: 160px;
        padding: 25px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .product-card {
        border-radius: 20px;
    }
    
    .product-image {
        height: 300px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-price {
        font-size: 22px;
    }
}

/* Mode Paysage : 1000px à 1200px */
@media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {


    .panier-header {
        right: 20px;
        padding: 10px 15px;
    }
    
    .panier-icon {
        font-size: 1.4em;
    }
    
    .panier-count {
        font-size: 0.75em;
    }
    
    .shop-container {
        margin-top: 125px;
        padding: 12px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
}



