/* Version: v06012026v188 - CONTACT RESEND INTÉGRÉ */

/* ============================================
   IRAMIA - Un souffle de douceur
   Identité visuelle: Rose, Bordeaux, Orange
   Typographies: Cormorant Garamond, Montserrat, Sorts Mill Goudy
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600;700&family=Sorts+Mill+Goudy:ital@0;1&display=swap');

/* === VARIABLES DE COULEURS - IDENTITÉ IRAMIA === */
:root {
    --rose-doux: #f4a8cc;
    --rose-vif: #e66ca2;
    --bordeaux: #8b0832;
    --marron: #8b6a4f;
    --orange: #ee6724;
    --beige-clair: #f8f5f2;
    --blanc: #ffffff;
}

/* === BASE & RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sorts Mill Goudy', Georgia, serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, .logo h1, .hero-title, .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--marron);
}

button, .btn, input[type="submit"] {
    font-family: 'Montserrat', Arial, sans-serif;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    background: var(--rose-vif);
    color: white;
    padding: 0.7rem 0;
    overflow: hidden;
    position: relative;
}

.announcement-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.announcement-content span {
    padding: 0 3rem;
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === TRUST BAR === */
.trust-bar {
    background: #f8f5f2;
    padding: 1rem 0;
    border-bottom: 1px solid #e5ded7;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trust-item i {
    font-size: 1.8rem;
    color: #8b644f;
}

.trust-text strong {
    display: block;
    color: #8b644f;
    font-size: 0.95rem;
}

.trust-text span {
    font-size: 0.85rem;
    color: #666;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #f38a4f 0%, #e6b980 100%);
    z-index: 99999;
    transition: width 0.2s;
}

/* === HEADER & NAVIGATION === */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 2rem;
    color: var(--marron);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--marron);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--rose-vif);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons .icon {
    color: var(--marron);
    font-size: 1.3rem;
    position: relative;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.nav-icons .icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f38a4f;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8b644f;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-close-btn {
    display: none;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(139, 8, 50, 0.15) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero-discover {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--marron);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-hero-discover:hover {
    background: var(--marron);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(139, 106, 79, 0.5);
    border-color: var(--marron);
}

.btn-hero-discover:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        bottom: 15%;
    }
    
    .btn-hero-discover {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content {
        bottom: 12%;
    }
    
    .btn-hero-discover {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--marron);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(139, 106, 79, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 106, 79, 0.6);
    background: #6b4d3a;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* === SECTIONS === */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8b644f;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section {
    padding: 5rem 0;
    background: #f4f4f4;
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #8b644f;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 400;
    color: #8b644f;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-description {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

/* === BUTTONS === */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--marron);
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(139, 106, 79, 0.35);
}

.btn-primary:hover {
    background: #6b4d3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 106, 79, 0.5);
}

.btn-secondary {
    background: var(--marron);
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 28px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(139, 106, 79, 0.35);
}

.btn-secondary:hover {
    background: #6b4d3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 106, 79, 0.5);
}

.btn-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.btn-link:hover {
    color: #f38a4f;
    border-color: #f38a4f;
}

/* Responsive boutons */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 9px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
}

/* === CATEGORIES SECTION === */
.categories {
    padding: 100px 20px;
    background: #f9f9f9;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card img, .category-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, rgba(139, 100, 79, 0.85) 0%, rgba(139, 100, 79, 0.6) 100%);
}

.category-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

/* === PRODUCTS SECTION === */
.products {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fef6f9 30%, #fce4ec 100%);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--rose-vif);
    background: white;
    color: var(--marron);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--marron) 0%, #6b4d3a 100%);
    color: white;
    border-color: var(--marron);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 106, 79, 0.4);
}

/* === PRODUCT GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

/* Tablette et téléphone paysage: 2 colonnes */
@media (max-width: 1024px) and (min-width: 601px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Téléphone portrait: 1 colonne */
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(230, 108, 162, 0.15);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(244, 168, 204, 0.2);
}

@media (max-width: 600px) {
    .product-card {
        min-height: 450px;
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(230, 108, 162, 0.3);
    border-color: var(--rose-doux);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .product-image {
        height: 280px;
    }
    
    .product-image-container {
        height: 280px;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Badges produits */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f38a4f;
    color: white;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 138, 79, 0.4);
    z-index: 10;
    animation: badgePulse 2.5s ease-in-out infinite;
    border-radius: 0 0 0 15px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(243, 138, 79, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(243, 138, 79, 0.6);
    }
}

.stock-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.stock-badge.visible {
    opacity: 1;
    visibility: visible;
}

/* Image Carousel Buttons */
.img-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(139, 100, 79, 0.8);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
}

@media (min-width: 769px) {
    .img-carousel-btn {
        opacity: 0;
    }
    .product-image:hover .img-carousel-btn,
    .product-image-container:hover .img-carousel-btn {
        opacity: 1;
    }
}

.img-prev {
    left: 10px;
}

.img-next {
    right: 10px;
}

.img-carousel-btn:hover {
    background: rgba(139, 100, 79, 1);
    transform: translateY(-50%) scale(1.1);
}

.img-carousel-btn svg {
    width: 18px;
    height: 18px;
}

/* Color dots and indicators */
.color-dot-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin: 0.5em 0 0.3em 0;
    width: 100%;
}

.image-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    z-index: 10;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--dot-color, #8b644f) !important;
    border: 2px solid var(--dot-color, #8b644f) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: #8b644f;
    border-color: white;
    transform: scale(1.2);
}

.current-color-name {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    min-height: 32px;
    margin: 8px 0;
    flex-wrap: wrap;
}

.current-color-name .color-square {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.current-color-name .color-square:hover {
    transform: scale(1.15);
    border-color: #8b644f;
}

.current-color-name .color-square.active {
    border-color: #8b644f;
    border-width: 3px;
    transform: scale(1.2);
}

.product-name-under-dot {
    font-size: 1.05em;
    color: #8b644f;
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 0.2em;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.01em;
    width: 100%;
    word-break: break-word;
}

/* Hide dots for box and bouquets */
.product-card[data-category="box"] .image-dots,
.product-card[data-category="box"] .current-color-name,
.product-card[data-category="bouquets"] .image-dots,
.product-card[data-category="bouquets"] .current-color-name {
    display: none !important;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    color: var(--marron);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.product-price {
    font-size: 1.5rem;
    color: var(--rose-vif);
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

/* === PRODUCT MODAL (VERSION MODERNE) === */
.product-modal {
    font-family: 'Cormorant Garamond', 'Montserrat', Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.product-modal.active {
    display: flex !important;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 100, 79, 0.9);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.close-modal:hover {
    background: #f38a4f;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(243, 138, 79, 0.4);
}

/* Modal Images Section */
.modal-images-mobile {
    width: 100%;
    padding: 40px 30px;
    background: #f8f5f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.modal-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.modal-main-image:hover {
    transform: scale(1.02);
}

.modal-thumbnails-mobile {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-thumb {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.modal-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.modal-thumb.active {
    opacity: 1;
    border-color: #8b644f;
    box-shadow: 0 2px 8px rgba(139, 100, 79, 0.4);
}

/* Modal Info Section */
.modal-info-mobile {
    padding: 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-info-mobile h2 {
    font-size: 2rem;
    color: #8b644f;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

.modal-info-mobile .modal-price {
    font-size: 1.8rem;
    color: #f38a4f;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.modal-info-mobile .modal-description {
    background: linear-gradient(135deg, #fce4ec 0%, #f8f5f2 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--rose-vif);
    margin: 25px 0;
    display: block !important;
    visibility: visible !important;
}

.modal-info-mobile .modal-description h3 {
    font-size: 1.2rem;
    color: var(--bordeaux);
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.modal-info-mobile .modal-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Sorts Mill Goudy', Georgia, serif;
}

/* Color Selector */
.color-selector-mobile {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e5ded7;
    margin: 25px 0;
}

.color-selector-mobile h3 {
    font-size: 1.3rem;
    color: #8b644f;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    text-align: left;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(55px, 55px));
    gap: 15px;
    justify-content: start;
}

.color-option {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

.color-option:hover {
    transform: scale(1.12);
    box-shadow: 0 5px 15px rgba(139, 100, 79, 0.4);
}

.color-option.selected {
    border-color: #8b644f;
    border-width: 4px;
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(139, 100, 79, 0.5);
}

.color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Add to Cart Button */
.btn-add-to-cart-modal {
    width: 100%;
    padding: 12px 24px;
    background: var(--marron);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(139, 106, 79, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-add-to-cart-modal:hover {
    background: #6b4d3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 106, 79, 0.6);
}

.btn-add-to-cart-modal:active {
    transform: translateY(0);
    box-shadow: 0 3px 15px rgba(139, 100, 79, 0.3);
}

/* === NOTIFICATION IRAMIA === */
.iramia-notification {
    position: fixed;
    top: 80px;
    right: 24px;
    background: linear-gradient(90deg, #f38a4f 0%, #e6b980 100%);
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08em;
    font-weight: 600;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(243, 138, 79, 0.3);
    padding: 1.1em 2.2em 1.1em 1.3em;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.7em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-30px) scale(0.98);
    transition: opacity 0.22s, transform 0.22s;
}

.iramia-notification.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.iramia-notification .notif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iramia-notification .notif-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08em;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* === MODALES BOX ESSENTIELLES & COMPOSER === */

/* Modal content avec scroll */
.product-modal.mobile-modal .modal-content {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--marron) #f8f5f2;
}

.product-modal.mobile-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

.product-modal.mobile-modal .modal-content::-webkit-scrollbar-track {
    background: #f8f5f2;
    border-radius: 4px;
}

.product-modal.mobile-modal .modal-content::-webkit-scrollbar-thumb {
    background: var(--marron);
    border-radius: 4px;
}

.product-modal.mobile-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: #6b4d3a;
}

.box-grid-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
}

@media (max-width: 768px) {
    .box-grid-mobile {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
}

.box-item-mobile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 106, 79, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.box-item-mobile:hover:not(.out-of-stock) {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 106, 79, 0.25);
}

.box-item-mobile.out-of-stock {
    opacity: 0.6;
    cursor: not-allowed;
}

.box-item-mobile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.box-info {
    padding: 1.2rem;
    text-align: center;
}

.box-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--marron);
    margin-bottom: 0.8rem;
}

.btn-view {
    background: var(--marron);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view:hover {
    background: #6b4d3a;
    transform: scale(1.05);
}

/* Responsive pour btn-view */
@media (max-width: 768px) {
    .btn-view {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-view {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* Box Detail */
.box-detail-mobile {
    padding: 2rem 1.5rem;
}

@media (max-width: 768px) {
    .box-detail-mobile {
        padding: 1.5rem 1rem;
    }
}

.box-detail-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 2rem;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.box-detail-image:hover {
    transform: scale(1.02);
}

.box-detail-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--marron);
    margin-bottom: 1rem;
    text-align: center;
}

.box-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.box-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.box-highlights span {
    background: #fce4ec;
    color: var(--marron);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.btn-back {
    background: white;
    border: 1.5px solid var(--marron);
    color: var(--marron);
    padding: 7px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(139, 106, 79, 0.1);
}

.btn-back:hover {
    background: var(--marron);
    color: white;
    transform: translateX(-3px);
    box-shadow: 0 3px 12px rgba(139, 106, 79, 0.2);
}

/* Responsive btn-back */
@media (max-width: 768px) {
    .btn-back {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-back {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}

/* Composer Modal */
.composer-header {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8f5f2 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.composer-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--marron);
    margin-bottom: 0.5rem;
}

.composer-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.selection-counter {
    background: var(--rose-vif);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: inline-block;
    font-size: 1.1rem;
}

.composer-categories-mobile {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--rose-vif) #f8f5f2;
}

.composer-categories-mobile::-webkit-scrollbar {
    width: 8px;
}

.composer-categories-mobile::-webkit-scrollbar-track {
    background: #f8f5f2;
    border-radius: 4px;
}

.composer-categories-mobile::-webkit-scrollbar-thumb {
    background: var(--rose-vif);
    border-radius: 4px;
}

.composer-categories-mobile::-webkit-scrollbar-thumb:hover {
    background: #d55989;
}

.category-section {
    margin-bottom: 2rem;
}

.category-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--marron);
    margin-bottom: 1rem;
    text-align: center;
}

.color-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.color-chip {
    background: white;
    border: 2px solid #e5ded7;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.color-chip:hover:not(.disabled) {
    border-color: var(--rose-vif);
    background: #fce4ec;
    transform: translateY(-2px);
}

.color-chip.selected {
    background: var(--rose-vif);
    color: white;
    border-color: var(--rose-vif);
}

.color-chip.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.color-chip small {
    display: block;
    font-size: 0.75rem;
    margin-top: 3px;
}

.composer-summary {
    background: #f8f5f2;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.composer-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--marron);
    margin-bottom: 1.5rem;
    text-align: center;
}

#summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.summary-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-item > div {
    flex: 1;
}

.summary-item strong {
    display: block;
    color: var(--marron);
    margin-bottom: 3px;
}

.summary-item small {
    color: #666;
    font-size: 0.85rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marron);
    padding: 1rem 0;
    border-top: 2px solid #e5ded7;
    margin-top: 1rem;
}

/* === ZOOM VIEWER FULLSCREEN === */
.zoom-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.zoom-viewer.active {
    opacity: 1;
    visibility: visible;
}

.zoom-viewer img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.zoom-viewer.active img {
    transform: scale(1);
}

.zoom-viewer .zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--marron);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.zoom-viewer .zoom-close:hover {
    background: var(--marron);
    color: white;
    transform: rotate(90deg);
}

.zoom-hint {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--marron);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    pointer-events: none;
}

@media (max-width: 768px) {
    .zoom-viewer img {
        max-width: 100%;
        max-height: 100vh;
    }
    
    .zoom-viewer .zoom-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .zoom-hint {
        top: 15px;
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* === MODAL RESPONSIVE === */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
    .product-modal .modal-content {
        max-width: 850px;
        width: 95%;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .product-modal {
        padding: 10px;
    }
    
    .product-modal .modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        border-radius: 12px;
        width: 100%;
        overflow-y: auto;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .modal-images-mobile {
        padding: 30px 20px;
        min-height: 0;
    }
    
    .modal-main-image {
        max-width: 100%;
        max-height: 350px;
    }
    
    .modal-info-mobile {
        padding: 30px 20px;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .modal-info-mobile h2 {
        font-size: 1.6rem;
    }
    
    .modal-info-mobile .modal-price {
        font-size: 1.4rem;
    }
    
    .modal-info-mobile .modal-description {
        padding: 15px;
        margin: 20px 0;
        display: block !important;
        visibility: visible !important;
        background: linear-gradient(135deg, #fce4ec 0%, #f8f5f2 100%);
    }
    
    .color-selector-mobile {
        padding: 15px;
        margin: 20px 0;
    }
    
    .color-selector-mobile h3 {
        font-size: 1.15rem;
    }
    
    .color-options {
        gap: 12px;
        grid-template-columns: repeat(auto-fill, minmax(50px, 50px));
    }
    
    .color-option {
        width: 50px;
        height: 50px;
    }
    
    .modal-thumb {
        width: 60px;
        height: 60px;
    }
    
    .btn-add-to-cart-modal {
        padding: 10px 18px;
        font-size: 0.85rem;
        margin-top: 15px;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .product-modal {
        padding: 5px;
    }
    
    .product-modal .modal-content {
        border-radius: 8px;
    }
    
    .modal-images-mobile {
        padding: 20px 15px;
    }
    
    .modal-info-mobile {
        padding: 20px 15px;
    }
    
    .modal-info-mobile h2 {
        font-size: 1.4rem;
    }
    
    .modal-info-mobile .modal-price {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 400px;
        padding: 40px 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-side-image {
        display: none;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
}


/* Tablette: Masquer images latérales hero, adapter spacing */
@media (max-width: 768px) {
    .hero-side-image {
        display: none;
    }
    
    .hero {
        min-height: 500px;
        padding: 60px 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories {
        padding: 60px 15px;
    }
    
    .products {
        padding: 60px 15px;
    }
    
    .about-section {
        padding: 3rem 15px;
    }
    
    .promo-banner {
        padding: 50px 15px;
    }
    
    .promo-content h2 {
        font-size: 2rem;
    }
    
    .promo-content p {
        font-size: 1.05rem;
    }
    
    .newsletter {
        padding: 40px 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === FOOTER === */
.footer {
    background: #f8f5f2;
    padding: 3rem 0 1rem;
    border-top: 3px solid #8b644f;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

.footer-section h3 {
    color: #8b644f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f38a4f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5ded7;
    color: #666;
    font-size: 0.9rem;
}

/* === PROMO BANNER === */
.promo-banner {
    background: var(--rose-vif);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Sorts Mill Goudy', Georgia, serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* === NEWSLETTER === */
.newsletter {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bordeaux);
    font-family: 'Cormorant Garamond', serif;
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--marron);
    font-family: 'Sorts Mill Goudy', Georgia, serif;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

/* === CONTACT SECTION === */
.contact {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #8b644f;
    font-size: 1.5rem;
}

.contact-item a {
    color: #8b644f;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: #f38a4f;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8b644f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #f38a4f;
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .contact-form {
        width: 100%;
        padding: 0;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 15px;
        font-size: 0.95rem;
        width: 100%;
    }
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--marron);
    box-shadow: 0 0 0 3px rgba(139, 106, 79, 0.1);
}

/* Messages de réponse formulaire */
.contact-response {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease;
}

.contact-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === LEGAL MODAL === */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
    display: block;
    opacity: 1;
}

.legal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal.active {
    display: block;
    opacity: 1;
}

.legal-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.1rem;
    background: none;
    border: none;
    color: #8b644f;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1020;
}

.legal-modal-close:hover {
    color: #f38a4f;
}

.legal-modal-section {
    display: none;
}

.legal-modal-section.active {
    display: block !important;
}

.legal-modal-icon {
    text-align: center;
    font-size: 2.7rem;
    color: #8b644f;
    margin-bottom: 0.7rem;
}

.legal-modal h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
    color: #8b644f;
    letter-spacing: 1px;
}

.legal-modal-content {
    line-height: 1.8;
    color: #555;
}

.legal-modal-content p {
    margin-bottom: 1.2rem;
}

.legal-modal-content h3 {
    color: #8b644f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-modal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-modal-content a {
    color: #f38a4f;
    text-decoration: underline;
}

/* FAQ Section inside Legal Modal */
.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5ded7;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b644f;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.faq-question:hover {
    color: #f38a4f;
}

.faq-qicon {
    font-size: 1.3rem;
}

.faq-answer {
    display: none;
    padding: 0 0 1rem 2rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* === CART PANIER PREMIUM === */

/* Overlay sombre */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal panier */
.cart-modal {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

/* Header panier */
.cart-header {
    padding: 1rem;
    background: linear-gradient(135deg, var(--rose-vif) 0%, var(--bordeaux) 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(139, 106, 79, 0.2);
}

.cart-header h2 {
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: white;
    color: var(--marron);
    transform: rotate(90deg);
}

/* Items du panier */
.cart-items {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.8rem;
    background: #fafafa;
    scrollbar-width: auto;
    scrollbar-color: var(--bordeaux) #e5e5e5;
}

.cart-items::-webkit-scrollbar {
    width: 10px;
}

.cart-items::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 5px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--bordeaux);
    border-radius: 5px;
    border: 2px solid #e5e5e5;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--marron);
}

/* Panier vide */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #999;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--marron);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 1.2rem;
    color: var(--marron);
    margin-bottom: 0.5rem;
}

.empty-cart small {
    color: #999;
    font-size: 0.95rem;
}

/* Item panier */
.cart-item {
    display: grid;
    grid-template-columns: 50px 1fr auto auto;
    gap: 0.6rem;
    align-items: center;
    padding: 0.6rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 0.6rem;
    transition: all 0.2s ease;
}

.cart-item:hover {
    transform: translateX(-2px);
    box-shadow: 0 2px 8px rgba(139, 106, 79, 0.1);
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--marron);
    margin-bottom: 0.15rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.cart-item-color {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.color-dot {
    width: 7px;
    height: 7px;
    background: var(--rose-vif);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--bordeaux);
    font-weight: 700;
}

/* Contrôles quantité */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8f5f2;
    border-radius: 15px;
    padding: 2px;
}

.qty-btn {
    background: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marron);
    font-size: 0.7rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.qty-btn:hover {
    background: var(--marron);
    color: white;
    transform: scale(1.05);
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--marron);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

/* Bouton supprimer */
.remove-btn {
    background: #fee;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #c33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.remove-btn:hover {
    background: #c33;
    color: white;
    transform: scale(1.1);
}

/* Footer panier */
.cart-footer {
    padding: 1rem;
    background: white;
    border-top: 2px solid #f0f0f0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--marron);
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px dashed #e5ded7;
    font-family: 'Cormorant Garamond', serif;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--marron) 0%, #6b4d3a 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(139, 106, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 106, 79, 0.4);
}

.btn-checkout:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cart-modal {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 1.5rem;
    }
    
    .cart-header h2 {
        font-size: 1.5rem;
    }
    
    .cart-items {
        padding: 1rem;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-controls {
        grid-column: 2;
        justify-self: start;
    }
    
    .remove-btn {
        grid-column: 2;
        justify-self: end;
        grid-row: 2;
    }
    
    .cart-footer {
        padding: 1.2rem 1.5rem;
    }
}

/* === CART UTILITIES === */

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* === VERSION BANNER === */
.version-banner {
    background: #f8f5f2;
    color: #8b644f;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 0.85rem;
    padding: 5px 0;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === FIN DU FICHIER v159 === */
