@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
    --primary-dark: #151515;
    --gold: #C5A059;
    --gold-light: #d4b87e;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF9F6;
    --text-main: #333333;
    --text-muted: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 82%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 0; /* Vertical padding moved to container */
    border: 1px solid transparent;
    border-radius: 0;
}

header .container {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    transition: var(--transition);
}

header.scrolled {
    top: 15px;
    width: calc(100% - 30px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
}

header.scrolled .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Adjust layout on desktop when scrolled to match the pill shape nicely */
@media (min-width: 769px) {
    header.scrolled {
        width: calc(100% - 60px);
        border-radius: 100px;
    }
    header.scrolled .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Reset float styling if mobile menu drawer is active */
header:has(.nav-links.active) {
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Make sure elements inside active header remain visible and dark */
header:has(.nav-links.active) .logo {
    color: var(--primary-dark) !important;
}
header:has(.nav-links.active) .mobile-menu-btn span {
    background: var(--primary-dark) !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
}

header.scrolled .logo {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem; /* Enlarged from 0.85rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0.9;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold) !important;
    opacity: 1;
}

header.scrolled .nav-links a {
    color: var(--primary-dark);
}

.btn-contact {
    background: white;
    color: var(--primary-dark) !important;
    padding: 0.8rem 2.4rem; /* Enlarged padding from 0.6rem 2.2rem */
    border-radius: 50px;
    font-size: 0.95rem; /* Enlarged from 0.8rem */
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
}

header.scrolled .btn-contact {
    background: var(--primary-dark);
    color: white !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/img/experience inoubliable.jpeg');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero-content {
    text-align: left !important;
    max-width: 900px;
    padding-bottom: 5rem;
    margin-left: 0;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
}

.hero-content h1 span.italic {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 3rem;
    margin-top: 0.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 450px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    z-index: 10;
}

.hero-stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-stats-container span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.founder-badge {
    position: absolute;
    bottom: 6rem;
    right: 5%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.founder-badge img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.founder-info h4 {
    font-size: 1rem;
    margin: 0;
    color: white;
}

.founder-info p {
    font-size: 0.7rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

/* Services */
.services {
    padding: 2.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    font-style: italic;
    color: var(--gold);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.service-card-info {
    padding: 2.5rem;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.btn-secondary {
    background: var(--primary-dark);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Boutique */
.boutique {
    background: var(--bg-white);
    padding: 2.5rem 0;
}

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.boutique-card {
    background: var(--bg-cream);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 5;
}

@media (max-width: 768px) {
    .price-badge {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }
}

.boutique-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.boutique-info {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.boutique-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.boutique-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    height: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.btn-wa {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Boutique Filter Buttons */
.boutique-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #eee;
    color: var(--text-main);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Form Section */
.quote-section {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.step h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-card {
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.option-card:hover, .option-card.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.btn-nav {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-prev {
    background: #f5f5f5;
}

.btn-next {
    background: var(--primary-dark);
    color: white;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 0;
    font-size: 0.8rem;
}

.footer-bottom-text {
    opacity: 0.5;
    margin-bottom: 2rem;
    display: block;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 1001;
}

.btn-floating {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: white;
    transition: var(--transition);
}

header.scrolled .mobile-menu-btn span {
    background: var(--primary-dark);
}

/* Menu open animation */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background: var(--primary-dark);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .btn-contact {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 3rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--primary-dark) !important;
        font-size: 1.5rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 span.italic {
        font-size: 2.2rem;
    }

    .hero-content {
        padding-bottom: 8rem;
    }

    .hero-stats-container {
        flex-direction: column;
        gap: 1rem;
    }

    .about > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group[style] {
        grid-column: span 1 !important;
    }

    .gallery-page {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(3, 140px) !important;
        gap: 0.8rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .about-content > div {
        flex-direction: column;
        gap: 1.5rem !important;
    }

    .founder-badge {
        bottom: 12rem;
        right: 2rem;
        padding: 0.8rem 1.2rem;
    }

    .founder-badge img {
        width: 40px;
        height: 40px;
    }
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Gallery Section */
.gallery {
    padding: 2.5rem 0;
    background: var(--bg-cream);
}

.gallery-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
}

.gallery-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1.5rem;
    padding: 0 0.5rem;
    scroll-snap-align: start;
}

.gallery-item {
    scroll-snap-align: start;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 2.5rem 0;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.testimonial-slider {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-content .quote {
    font-size: 1.8rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #efefef;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content .author {
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.testimonial-content .date {
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 2px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

.testimonial-actions {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.btn-google-review {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-google-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.stars-wrapper {
    display: flex;
    gap: 6px;
    transition: transform 0.5s ease;
}

.star {
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.btn-google-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.google-small-logo {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-google-review:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.25);
    border-color: #f1dfbc;
}

.btn-google-review:hover .star {
    transform: scale(1.2) translateY(-2px);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.6);
}

.btn-google-review:hover .star:nth-child(1) { transition-delay: 0s; }
.btn-google-review:hover .star:nth-child(2) { transition-delay: 0.05s; }
.btn-google-review:hover .star:nth-child(3) { transition-delay: 0.1s; }
.btn-google-review:hover .star:nth-child(4) { transition-delay: 0.15s; }
.btn-google-review:hover .star:nth-child(5) { transition-delay: 0.2s; }

.btn-google-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.8s;
}

.btn-google-review:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .testimonial-content .quote {
        font-size: 1.4rem;
    }
    
    .testimonial-slider {
        min-height: 500px;
    }
}


/* Quote Section Replica */
.quote-section {
    padding: 1.5rem 0;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.devis-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    margin: 1.5rem auto;
    max-width: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.devis-icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.devis-svg-icon circle {
    stroke: var(--gold);
}

.devis-svg-icon path {
    fill: var(--gold);
    stroke: var(--gold);
}

.devis-steps-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .devis-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    .devis-steps-badge {
        font-size: 0.85rem;
        padding: 0.3rem 1rem;
    }
}

.deposit-mention {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--gold);
}

.step-deposit-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 5rem;
}

.progress-info {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.step-num {
    font-weight: 700;
}

.progress-bar-bg {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.05);
}

.progress-bar-fill {
    height: 2px;
    background: var(--gold);
    transition: width 0.5s ease;
    margin-top: -0.5px;
}

/* Form Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    background: #F9F9F9;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

textarea.form-input {
    border-radius: 20px;
}

.form-input:focus {
    outline: none;
    background: #EFEFEF;
}

/* Option Pills */
.options-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.options-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-pill {
    padding: 0.6rem 1.2rem;
    background: #F9F9F9;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
}

.option-pill:hover, .option-pill.selected {
    background: var(--primary-dark);
    color: white;
}

/* Navigation */
.form-nav-replica {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
}


.btn-step-prev {
    background: transparent;
    opacity: 0.4;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
}

.form-footer-contacts {
    margin-top: 8rem;
    text-align: center;
    opacity: 0.4;
    font-size: 0.8rem;
    letter-spacing: 2px;
}


/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.faq-accordion {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
    opacity: 1;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Form UX Refinements */
.step-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.progress-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

/* Floating Button UI/UX */
.floating-quote-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: var(--primary-dark);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.floating-quote-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    background: var(--gold);
    color: var(--primary-dark);
}

/* Gallery Luxueux Moderne */
.gallery-carousel {
    grid-template-rows: repeat(2, 320px) !important;
    gap: 2rem !important;
    padding: 1rem;
}

.gallery-item {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}


/* --- UX/UI Refinements --- */

/* Section Labels */
.step-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Luxury Gallery Grid (2x3) */
.gallery-grid-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 1rem;
    transition: var(--transition);
}

.carousel-nav-lux {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn-lux {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-btn-lux:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* FAQ Accordion */
.faq {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.faq-question {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Quote Form Refined UX */
.form-steps-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.step {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    visibility: hidden;
    pointer-events: none;
}

.step.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.step.exit-left {
    transform: translateX(-50px);
    opacity: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-nav-refined {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
}

.btn-step-next {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-step-next::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-step-next:hover::after {
    left: 100%;
}

.btn-step-next:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

.btn-step-next:active {
    transform: translateY(-2px);
}

.btn-step-next .arrow {
    transition: transform 0.3s ease;
}

.btn-step-next:hover .arrow {
    transform: translateX(5px);
}

.btn-step-prev {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

/* Premium Buttons */
.btn-premium {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-premium:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.btn-floating-premium {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-floating-premium:hover {
    background: var(--gold);
    transform: scale(1.05);
}


/* FAQ Section */
.faq {
    padding: 1.5rem 0;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Luxury Carousel Refinement - Strict 3x2 */
.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
    padding: 0 1rem;
    scroll-snap-align: start;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #D1D1D1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 25px;
    background: var(--gold);
    border-radius: 20px;
}

/* UX/UI Form Polish */
.form-input {
    background: #F9F9F9;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
}

.form-input:focus {
    background: #FFFFFF;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.option-pill {
    background: #F9F9F9;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.option-pill.selected {
    background: var(--primary-dark);
    color: white;
}

/* Floating Button Refinement */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.btn-floating {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-floating:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.btn-floating::before {
    display: none !important;
}


/* Refined About Section */
.about-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-right: auto;
    opacity: 0.9;
}

/* About Section */
.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .about-img img {
        height: 350px;
    }
}

.about-features {
    display: flex;
    gap: 4rem;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.about-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.btn-premium-arrow {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.btn-premium-arrow .arrow-circle {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-premium-arrow:hover {
    background: black;
    transform: translateY(-3px);
}

.btn-premium-arrow:hover .arrow-circle {
    transform: translateX(5px);
    background: var(--gold);
}

@media (max-width: 768px) {
    .about-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer-social-link {
    color: var(--gold);
    transition: var(--transition);
    display: inline-block;
    opacity: 0.8;
}

.footer-social-link:hover {
    color: white;
    transform: translateY(-3px);
    opacity: 1;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: fadeIn 0.4s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    cursor: default;
    animation: zoomIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Gallery Item Overlay */
.gallery-item {
    cursor: pointer;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-overlay span {
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}


.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Legal Modal Styles */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: fadeIn 0.4s ease;
}

.legal-modal-container {
    background: var(--bg-cream);
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: zoomIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.legal-modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-modal-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-dark);
}

.legal-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.legal-modal-close:hover {
    background: var(--gold);
    color: white;
}

.legal-modal-body {
    padding: 3rem;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-main);
}

.legal-modal-body h3 {
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-modal-body p {
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.legal-modal-body strong {
    color: var(--primary-dark);
}

.footer-legal-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal-link {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 5;
}

.footer-legal-link:hover {
    opacity: 1;
    color: var(--gold);
}

@media (max-width: 768px) {
    .legal-modal-body {
        padding: 2rem;
    }
    .legal-modal-container {
        max-height: 90vh;
    }
    .footer-legal-links {
        gap: 1rem;
    }
}

/* Boutique Carousel Styles */
.boutique-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
}

.boutique-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
}

.boutique-carousel::-webkit-scrollbar {
    display: none;
}

.boutique-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    align-items: start;
    gap: 2rem;
    padding: 1rem;
    scroll-snap-align: start;
}

.boutique-dot {
    width: 8px;
    height: 8px;
    background: #D1D1D1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.boutique-dot.active {
    width: 25px;
    background: var(--gold);
    border-radius: 20px;
}

.boutique-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.boutique-nav-btn:hover {
    background: var(--primary-dark);
    color: white;
}

@media screen and (max-width: 768px) {
    /* Force 2 columns on mobile for the boutique pages */
    section.boutique div.boutique-page {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 12px !important;
        padding: 10px !important;
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    section.boutique div.boutique-card {
        width: 100% !important;
        margin: 0 !important;
    }

    section.boutique .boutique-card img {
        height: 100px !important;
    }

    section.boutique .boutique-info {
        padding: 0.6rem !important;
    }

    section.boutique .boutique-info h3 {
        font-size: 0.9rem !important;
        height: 2rem !important;
    }

    section.boutique .boutique-info p {
        font-size: 0.7rem !important;
        height: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.3rem !important;
    }

    section.boutique .btn-wa {
        padding: 0.4rem !important;
        font-size: 0.55rem !important;
    }
}


