* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #111111;
    --white: #ffffff;
    --beige: #f8f4ef;
    --soft: #fbf8f5;
    --taupe: #9b8f86;
    --text: #1b1b1b;
    --gray: #666666;
    --border: #e8e1da;
    --gold: #d4af37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    color: var(--text);
}

/* HEADER */

.site-header {
    min-height: 92px;
    padding: 0.7rem 6%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--black);
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.site-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.82rem;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 5px;
}

.navbar a:hover,
.navbar a.active {
    border-bottom: 1px solid var(--black);
}

/* HERO */

.hero {
    position: relative;
    height: 88vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-overlay h1 {
    color: white;
    font-size: 4rem;
    max-width: 900px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 760px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* TITRES DE PAGES */

.page-title {
    padding: 5rem 8%;
    text-align: center;
    background: var(--black);
}

.page-title h1 {
    color: white;
    font-size: 3.6rem;
    margin-bottom: 0.7rem;
}

.page-title p {
    color: #d6d6d6;
}

.subtitle {
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.hero-overlay .subtitle {
    color: #e8dfd5;
}

/* BUTTONS */

.btn,
.contact-form button,
.rdv-form button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--black);
    color: white;
    text-decoration: none;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: 0.3s ease;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn:hover,
.contact-form button:hover,
.rdv-form button:hover {
    background: white;
    color: var(--black);
}

.btn-light {
    background: white;
    color: var(--black);
    border-color: white;
}

.btn-light:hover {
    background: transparent;
    color: white;
}

/* ACCUEIL */

.intro {
    padding: 5rem 10%;
    text-align: center;
    background: var(--beige);
}

.intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.intro p {
    max-width: 800px;
    margin: auto;
    color: var(--gray);
}

.categories {
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: white;
}

.category-card {
    background: var(--soft);
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid var(--border);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.category-card img {
    height: 470px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.category-card div {
    padding: 2rem;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.text-link {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* COLLECTION */

.products-grid {
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: white;
}

.product-card {
    background: white;
    text-align: center;
    padding-bottom: 1.5rem;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.product-card img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.product-card h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.price {
    color: var(--black);
    font-weight: 600;
    margin-top: 0.4rem;
}

.small-text {
    color: var(--gray);
    font-size: 0.85rem;
}

/* APERÇU PRODUIT */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    background: white;
    max-width: 560px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.modal-content h2 {
    color: var(--black);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

#previewPrice {
    font-weight: 600;
    margin: 0.5rem 0;
}

#previewDesc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* RDV */

.rdv-section {
    padding: 3rem 8% 5rem;
    background: white;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: 2.4rem;
    color: var(--black);
}

.section-heading p {
    color: var(--gray);
}

.calendly-inline-widget {
    max-width: 1000px;
    margin: 0 auto;
    border: none;
    background: white;
    overflow: hidden;
}

/* CONTACT */

.contact-section {
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    background: white;
}

.contact-info {
    background: var(--black);
    color: white;
    padding: 3rem;
    border-radius: 18px;
}

.contact-info h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: white;
    margin-bottom: 1.2rem;
}

.contact-info strong {
    color: var(--beige);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h2 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-form label {
    font-weight: 500;
    color: var(--black);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #cccccc;
    background: white;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

#formMessage {
    color: green;
    font-weight: 600;
}

/* SOCIAL */

.contact-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.45rem;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.05);
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.tiktok {
    background: linear-gradient(135deg, #25F4EE 0%, #000 45%, #FE2C55 100%);
}

.snapchat {
    background: #fffc00;
    color: black;
}

.whatsapp {
    background: #25D366;
}

/* FAQ */

.faq {
    padding: 4rem 8% 5rem;
    background: var(--soft);
}

.faq h2 {
    color: var(--black);
}

.faq-item {
    max-width: 850px;
    margin: 1rem auto;
    border: 1px solid var(--border);
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    border: none;
    background: white;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    cursor: pointer;
    color: var(--black);
}

.faq-answer {
    display: none;
    padding: 0 1.2rem 1.2rem;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    display: block;
}

/* TÉMOIGNAGES */

.testimonials-grid {
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.quote {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    line-height: 0.8;
    color: #333333;
    margin-bottom: 0.5rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.testimonial-card h3 {
    color: var(--black);
    font-size: 1.4rem;
}

/* INSTAGRAM FIXE */

.instagram-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.9rem;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(221, 42, 123, 0.35);
    transition: 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.08);
}

/* FOOTER */

footer {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .navbar {
        gap: 1.2rem;
    }

    .navbar a {
        font-size: 0.75rem;
    }

    .logo-box {
        font-size: 1.4rem;
    }

    .site-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 950px) {
    .site-header {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .navbar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2.7rem;
    }

    .categories,
    .products-grid,
    .contact-section,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .product-card img,
    .category-card img {
        height: 420px;
    }

    .contact-info {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .logo-box {
        font-size: 1.25rem;
    }

    .site-logo {
        width: 48px;
        height: 48px;
    }

    .navbar a {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .hero {
        height: 78vh;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .page-title {
        padding: 3rem 5% 2.5rem;
    }

    .page-title h1 {
        font-size: 2.3rem;
    }

    .products-grid,
    .categories,
    .contact-section,
    .rdv-section,
    .faq,
    .testimonials-grid {
        padding-left: 5%;
        padding-right: 5%;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 720px !important;
    }

    .instagram-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.4rem;
    border: 1px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
    background: white;
    color: black;
}