/* ==================== RESET ET BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== GESTION DES PAGES ==================== */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ==================== NAVIGATION CENTRÉE ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cart {
    margin-left: auto;
}

.cart-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
        transform: none;
        left: -100%;
    }
    
    .nav-menu.active {
        left: 0;
        transform: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cart {
        margin-left: 0;
    }
}
/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://z-cdn-media.chatglm.cn/files/8bcd13c2-a966-46d7-a47a-ee470037acbc.jpg?auth_key=1873254173-ad0a0087340d4d66867b02aabde44638-0-36816e116c3eecb64f88e480d4b7e90d') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 5%;
    color: white;
    max-width: 90%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

.text-link {
    text-decoration: underline;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

/* ==================== PROMO SECTION ==================== */
.promo-section {
    padding: 60px 0;
    background: #f4f4f4;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-image {
    flex: 1;
    min-width: 280px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

.promo-text {
    flex: 1;
    min-width: 280px;
}

.promo-text h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.promo-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* ==================== PRODUIT INTERACTIF ==================== */
.product-feature {
    padding: 40px 0;  /* Réduit de 60px à 40px */
    background: white;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.3rem, 4vw, 2rem);  /* Réduit la taille du titre */
    margin-bottom: 1.5rem;  /* Réduit de 2rem à 1.5rem */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-carousel {
    position: relative;
    max-width: 500px;  /* Réduit de 600px à 500px */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;  /* Réduit de 20px à 15px */
}

.carousel-btn {
    width: 35px;  /* Réduit de 40px à 35px */
    height: 35px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
}

.carousel-dots {
    display: flex;
    gap: 8px;  /* Réduit de 10px à 8px */
}

.dot {
    width: 8px;  /* Réduit de 10px à 8px */
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #000;
    width: 20px;  /* Réduit de 25px à 20px */
    border-radius: 10px;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .product-feature {
        padding: 30px 0;
    }
    
    .section-title {
        margin-bottom: 1rem;
    }
    
    .product-carousel {
        max-width: 90%;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        margin-top: 12px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-feature {
        padding: 25px 0;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .product-carousel {
        max-width: 95%;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .carousel-controls {
        margin-top: 10px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 16px;
    }
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px 15px;
        max-height: 85vh;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: bold;
    color: #333;
    z-index: 10;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.modal-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-caption {
    margin-top: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 15px 0;
    color: #000;
}

.modal-btn {
    padding: 14px 40px;
    background: #000;
    color: white;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.modal-btn:hover {
    background: #333;
}

/* ==================== SÉLECTEUR DE TAILLE ==================== */
.size-selector {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.size-selector h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.size-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    width: 80px;
    padding: 12px 0;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-btn:hover {
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.size-btn.selected {
    background: #000;
    color: white;
    border-color: #000;
}

.size-letter {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.size-desc {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 3px;
}

.size-hint {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 12px;
}

@media (max-width: 480px) {
    .size-btn {
        width: 65px;
        padding: 8px 0;
    }
    .size-letter {
        font-size: 1rem;
    }
    .size-desc {
        font-size: 0.6rem;
    }
}

/* ==================== PANIER LATÉRAL ==================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.cart-item-size {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-size span {
    font-weight: 600;
    color: #000;
}

.cart-item-price {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-btn:hover {
    background: #ddd;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.remove-item {
    color: #ff4444;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 8px;
    background: none;
    border: none;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cart-empty {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

/* ==================== BOUTON PAYPAL DANS LE PANIER ==================== */
.paypal-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: #ffc439;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.paypal-pay-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.paypal-logo {
    height: 24px;
    width: auto;
}

/* Désactiver le bouton si le panier est vide */
.paypal-pay-btn.disabled,
.cart-empty ~ .cart-footer .paypal-pay-btn {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ==================== PAGE CONTACT ==================== */
.contact-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.contact-hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-hero p {
    color: #ccc;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-top: 10px;
}

.contact-section {
    padding: 60px 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h2,
.contact-form h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 25px;
}

.info-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #000;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #333;
}

.map-section {
    padding: 0 0 60px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ==================== FOOTER ==================== */
footer {
    background: #111;
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #999;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #999;
    font-size: 0.85rem;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.7rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ==================== RESPONSIVE MENU ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 0 20px;
    }
    
    .promo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-image {
        width: 100%;
        height: auto;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
    
    .size-options {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .cart-button {
        font-size: 1rem;
    }
    
    .product-carousel {
        max-width: 100%;
    }
    
    .modal-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ==================== MODIFICATION LOGO AVEC IMAGE ==================== */
.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    width: 60px;  /* Taille de base pour desktop */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive pour le logo */
@media (max-width: 768px) {
    .nav-logo-img {
        width: 45px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo-container {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        width: 35px;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .nav-logo-container {
        gap: 8px;
    }
}

/* ==================== LOGO EN ROND ==================== */
.nav-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive pour le logo rond */
@media (max-width: 768px) {
    .nav-logo-img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
}

/* ==================== PAGE CONTACT AVEC IMAGE DE FOND ==================== */
.contact-hero {
    min-height: 40vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

/* ==================== SUPPRESSION DE LA CARTE ==================== */
.map-section {
    display: none;
}

/* ==================== STYLE POUR INSTAGRAM ==================== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.insta-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Footer Instagram */
.footer-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-insta:hover {
    color: #e4405f;
}

.footer-insta-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
/* ==================== MODAL SANS DÉFILEMENT ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    text-align: center;
    max-width: 800px;
    width: 90%;
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Masquer la scrollbar mais garder la fonctionnalité si nécessaire */
.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Ajustement pour que la modal tienne sur l'écran */
@media (max-height: 700px) {
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-grid {
        margin: 10px 0;
    }
    
    .size-selector {
        margin: 10px 0;
        padding: 15px;
    }
    
    .modal-btn {
        margin-top: 5px;
        padding: 12px 30px;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: bold;
    color: #333;
    z-index: 10;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.modal-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0;
    color: #000;
}

.modal-btn {
    padding: 14px 40px;
    background: #000;
    color: white;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

/* Responsive pour la modal */
@media (max-width: 600px) {
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
    
    .modal-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .size-options {
        gap: 8px;
    }
    
    .size-btn {
        width: 60px;
        padding: 8px 0;
    }
}
/* ==================== FOOTER RÉSEAUX SOCIAUX ==================== */
.social-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-footer-list li {
    margin-bottom: 12px;
}

.footer-insta, .footer-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #999;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-insta:hover {
    color: #e4405f;
}

.footer-tiktok:hover {
    color: #000000;
}

.footer-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Style spécifique pour TikTok au hover */
.footer-tiktok:hover .footer-social-logo {
    transform: scale(1.1);
}

/* ==================== SLOGAN DANS LE HERO ==================== */
.hero-slogan {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour le slogan */
@media (max-width: 768px) {
    .hero-slogan {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slogan {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

/* ==================== HINT ÉPURÉ POUR LE CLIC ==================== */
.click-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animation d'apparition */
.product-carousel:hover .click-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Effet de pulse subtil */
.click-hint {
    animation: subtlePulse 2s ease-in-out infinite;
    animation-play-state: paused;
}

.product-carousel:hover .click-hint {
    animation-play-state: running;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        background: rgba(0, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .click-hint {
        padding: 8px 18px;
        font-size: 0.75rem;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .click-hint {
        padding: 6px 14px;
        font-size: 0.7rem;
        white-space: nowrap;
        bottom: 12px;
    }
}


/* ==================== COPYRIGHT ==================== */
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.75rem;
    line-height: 1.5;
}

.copyright br {
    display: block;
    margin: 5px 0;
}
/* ==================== BOUTONS CARROUSEL MODERNES ==================== */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active {
    transform: scale(0.98);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #999;
    transform: scale(1.2);
}

.dot.active {
    background: #000;
    width: 24px;
    border-radius: 10px;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .carousel-controls {
        gap: 15px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .dot.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        gap: 12px;
        margin-top: 12px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 18px;
    }
}