/* ==================== 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 ==================== */
.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-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);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.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;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/Groupe.jpg') 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-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);
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid white;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 50px;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

.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;
    background: white;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-carousel {
    position: relative;
    max-width: 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;
}

.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);
}

.product-carousel:hover .click-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px 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 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #000;
    color: white;
    border-color: #000;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #000;
    width: 24px;
    border-radius: 10px;
}

/* ==================== MODAL PRODUIT ==================== */
.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;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: bold;
    color: #333;
}

.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;
}

.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);
}

.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-guide-wrapper {
    text-align: center;
    margin-top: 15px;
}

.size-guide-trigger {
    background: none;
    border: none;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 12px;
    transition: color 0.3s ease;
    font-family: inherit;
}

.size-guide-trigger:hover {
    color: #000;
}

/* ==================== MODAL GUIDE DES TAILLES ==================== */
.size-guide-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.size-guide-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.size-guide-modal {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.size-guide-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.size-guide-close:hover {
    color: #000;
}

.size-guide-modal h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-align: center;
}

.guide-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.size-guide-table {
    width: 100%;
    margin-bottom: 20px;
}

.guide-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1fr 1.2fr;
    border-bottom: 1px solid #eee;
    padding: 12px 8px;
}

.guide-header {
    background: #f5f5f5;
    font-weight: bold;
    border-radius: 12px;
    margin-bottom: 5px;
    border-bottom: none;
}

.guide-size {
    font-weight: 600;
    color: #000;
}

.guide-tips {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

.guide-tips p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.guide-close-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.guide-close-btn:hover {
    background: #333;
}

/* ==================== PANIER ==================== */
.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-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;
}

.paypal-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: #000;
    color: white;
    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;
}

.paypal-pay-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ==================== BOUTON RETOUR ==================== */
.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #000;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffc439 0%, #ffb300 100%);
    color: #000;
}

.back-button:active {
    transform: translateY(0);
}

/* ==================== PAGE CONTACT ==================== */
.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;
}

.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;
}

.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 {
    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 {
    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;
}

/* ==================== PAGE À PROPOS ==================== */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Groupe.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

.about-story {
    padding: 80px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-story .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #000;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-values {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.about-values h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-engagement {
    padding: 80px 0;
    background: #fff;
}

.engagement-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.engagement-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
}

.engagement-list {
    list-style: none;
    text-align: left;
    background: #f8f8f8;
    padding: 30px 40px;
    border-radius: 20px;
    margin: 30px 0;
}

.engagement-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #333;
}

.engagement-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #000;
    font-weight: 500;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

/* ==================== 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;
}

.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: #ffffff;
}

.footer-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.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;
}

/* ==================== PAGE MENTIONS LÉGALES ==================== */
.legal-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-date {
    color: #666;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}

.legal-section p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.legal-section a {
    color: #000;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.legal-section a:hover {
    opacity: 0.7;
}

.legal-highlight {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.legal-highlight p {
    margin-bottom: 8px;
}

.legal-highlight strong {
    color: #000;
}

.legal-back {
    margin-top: 50px;
    text-align: center;
}

/* ==================== PAGE COMING SOON ==================== */
body:has(.coming-soon-container) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coming-soon-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    margin: 0 auto;
    padding: 20px;
}

.coming-soon-container .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.coming-soon-container .logo-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 196, 57, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-container .logo-img:hover {
    transform: scale(1.05);
    border-color: #ffc439;
}

.coming-soon-container .logo-text {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #fff 0%, #ffc439 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.coming-soon-container .icon-container {
    margin-bottom: 25px;
}

.coming-soon-container .icon {
    font-size: 85px;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.coming-soon-container h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.coming-soon-container .slogan {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 1px;
}

.coming-soon-container .message-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 35px 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.coming-soon-container .message-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.coming-soon-container .message-box p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffc439;
}

.coming-soon-container .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.coming-soon-container .social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-container .social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 196, 57, 0.9);
    color: #1a1a2e;
    border-color: #ffc439;
}

.coming-soon-container .social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.coming-soon-container .progress-bar-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    height: 10px;
    margin: 35px 0 25px;
    overflow: hidden;
}

.coming-soon-container .progress-bar {
    background: linear-gradient(90deg, #ffc439, #ffb300, #ff8c00);
    width: 75%;
    height: 100%;
    border-radius: 50px;
    animation: progress 2s ease-out;
    position: relative;
    overflow: hidden;
}

.coming-soon-container .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes progress {
    from { width: 0; }
    to { width: 75%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.coming-soon-container .info-text {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 35px;
    flex-wrap: wrap;
}

.coming-soon-container .info-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    min-width: 140px;
}

.coming-soon-container .info-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffc439;
    display: block;
    letter-spacing: 1px;
}

.coming-soon-container .info-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.coming-soon-container .back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #1a1a2e;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin: 20px 0 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.coming-soon-container .back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #ffc439;
    color: #1a1a2e;
}

.coming-soon-container .footer {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive Coming Soon */
@media (max-width: 600px) {
    .coming-soon-container .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .coming-soon-container .logo-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .coming-soon-container h1 {
        font-size: 2rem;
    }
    
    .coming-soon-container .slogan {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .coming-soon-container .icon {
        font-size: 60px;
    }
    
    .coming-soon-container .message-box {
        padding: 25px 20px;
    }
    
    .coming-soon-container .message-box p {
        font-size: 0.95rem;
    }
    
    .coming-soon-container .message-box p:first-child {
        font-size: 1rem;
    }
    
    .coming-soon-container .info-number {
        font-size: 1.4rem;
    }
    
    .coming-soon-container .info-item {
        padding: 10px 18px;
        min-width: 110px;
    }
    
    .coming-soon-container .social-link {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .coming-soon-container .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .coming-soon-container .back-button {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 450px) {
    .coming-soon-container .social-links {
        gap: 15px;
    }
    
    .coming-soon-container .social-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .coming-soon-container .info-text {
        gap: 15px;
    }
}

/* ==================== RESPONSIVE GLOBAL ==================== */
@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;
    }
    
    .nav-menu.active {
        left: 0;
        transform: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cart {
        margin-left: 0;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 0 20px;
    }
    
    .promo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .click-hint {
        padding: 8px 18px;
        font-size: 0.75rem;
        bottom: 15px;
    }
    
    .guide-row {
        grid-template-columns: 0.7fr 1.1fr 0.9fr 1.1fr;
        font-size: 0.75rem;
        padding: 10px 5px;
    }
    
    .about-story .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        text-align: center;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        font-size: 0.9rem;
    }
    
    .legal-highlight {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .size-btn {
        width: 65px;
        padding: 8px 0;
    }
    
    .size-letter {
        font-size: 1rem;
    }
    
    .size-desc {
        font-size: 0.6rem;
    }
    
    .modal-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
    
    .back-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}