        /* ===== CARROUSEL ===== */
        /* CLAUDE AI */

        .carousel-section {
            width: 100%;
            overflow: hidden;
        }
        .carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
            will-change: transform;
        }
        .carousel-slide {
            min-width: 100%;
            position: relative;
            height: 560px;
            background: #ffffff;
        }
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        .carousel-caption {
            position: absolute;
            bottom: 40px;
            left: 50px;
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(6px);
            padding: 14px 24px;
            border-left: 3px solid #8b6f47;
        }
        .carousel-caption span {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #8b6f47;
            margin-bottom: 4px;
        }
        .carousel-caption strong {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #2a1f14;
        }
        /* Boutons prev/next */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.75);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.1rem;
            color: #2a1f14;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            z-index: 10;
        }
        .carousel-btn:hover { background: rgba(255,255,255,0.97); transform: translateY(-50%) scale(1.08); }
        .carousel-btn.prev { left: 18px; }
        .carousel-btn.next { right: 18px; }
        /* Dots */
        .carousel-dots {
            position: absolute;
            bottom: 16px;
            right: 24px;
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }
        .dot.active {
            background: #fff;
            transform: scale(1.3);
        }
 
        /* ===== TITRE BOUTIQUE ===== */
        .boutique-intro {
            background: #faf7f3;
            text-align: center;
            padding: 52px 20px 44px;
            border-bottom: 1px solid #e8ddd0;
        }
        .boutique-intro-inner {
            max-width: 600px;
            margin: 0 auto;
        }
        .boutique-ornement {
            font-size: 1.1rem;
            color: #8b6f47;
            letter-spacing: 0.3em;
            margin-bottom: 14px;
        }
        .boutique-titre {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 6vw, 3.8rem);
            font-weight: 600;
            color: #2a1f14;
            letter-spacing: 0.04em;
            margin: 0 0 10px;
            line-height: 1.1;
        }
        .boutique-sous-titre {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 300;
            color: #7a6248;
            margin: 0 0 22px;
            letter-spacing: 0.02em;
        }
        .boutique-separateur {
            width: 60px;
            height: 1px;
            background: #8b6f47;
            margin: 0 auto;
        }
        /* Responsive carrousel */
        @media (max-width: 600px) {
            .carousel-slide { height: 200px; }
            .carousel-caption { left: 16px; bottom: 16px; }
        }

