:root {
    --green: #0F5C4A;
    --gold: #C79A3B;
    --cream: #F8F5EE;
    --dark: #24352F;
    --text: #4C5B56;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 245, 238, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 92, 74, .08);
}

.header-content {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    height: 60px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.nav .active,
.nav a:hover {
    color: var(--green);
}

.cart {
    background: var(--green);
    color: #fff;
    padding: 12px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

/* HERO */

.hero {
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.05;
    margin: 18px 0;
}

.hero h1 span {
    color: var(--green);
}

.hero p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green);
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 40px;
    font-weight: 700;
}

.btn-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-circle {
    background: #fff;
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.hero-circle img {
    width: 100%;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    font-weight: 700;
}

.floating-card-one {
    top: 35px;
    left: -25px;
}

.floating-card-two {
    right: -15px;
    bottom: 45px;
}

/* TITRES */

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px;
}

.section-label {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-top h2,
.brand-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 1.15;
    margin-top: 10px;
}

.section-top h2 span,
.brand-section h2 span {
    color: var(--green);
}

.view-all {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

/* CARTES */

.categories {
    padding: 90px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    background: #fff;
    padding: 34px;
    border-radius: 28px;
    text-decoration: none;
    color: inherit;
    transition: .25s;
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 154, 59, .3);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .08);
}

.category-featured {
    background: linear-gradient(145deg, #0F5C4A, #166E58);
    color: #fff;
}

.category-icon {
    font-size: 42px;
}

.category-number {
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin: 18px 0 6px;
}

.category-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.category-card p {
    color: inherit;
    opacity: .88;
}

.category-link {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
}

/* BRAND */

.brand-section {
    padding: 90px 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.brand-logo-wrapper {
    background: #fff;
    border-radius: 34px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

.brand-logo-wrapper img {
    width: 100%;
}

/* FOOTER */

.footer {
    background: var(--green);
    color: #fff;
    margin-top: 90px;
}

.footer-grid {
    padding: 70px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 14px;
}

.footer h3 {
    margin-bottom: 18px;
    color: #fff;
}

.footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    margin-bottom: 10px;
}

.footer a:hover {
    opacity: 1;
}

.footer-contact-link {
    display: block;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    margin-bottom: 10px;
    word-break: break-word;
}

.footer-contact-link:hover {
    opacity: 1;
}

.footer-contact-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 20px 0;
    text-align: center;
}

/* MOBILE */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .hero-grid,
    .brand-grid,
    .category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-top {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }

    .floating-card {
        display: none;
    }

    .header-content {
        height: 72px;
    }

    .logo {
        height: 54px;
    }

    .cart {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* =========================================================
   FOOTER 
   ========================================================= */

.footer {
    background: var(--green);
    color: #fff;
    margin-top: 90px;
    overflow: hidden;
}

.footer-grid {
    padding: 70px 0 55px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(0, .75fr)
        minmax(0, 1fr)
        minmax(0, 1.2fr);

    gap: 55px;

    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-column {
    min-width: 0;
}

.footer-logo {
    width: 155px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-description {
    max-width: 390px;
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    font-size: 14px;
}

.footer-slogan {
    margin-top: 20px;
    color: #fff;
    font-size: 17px;
    font-style: italic;
}

.footer-slogan span {
    color: var(--gold);
    font-size: 22px;
}

.footer-column h3 {
    margin: 0;
    color: #fff;
    font-size: 19px;
}

.footer-line {
    width: 45px;
    height: 3px;
    background: var(--gold);
    margin: 12px 0 22px;
}

.footer-column > a {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255,255,255,.85);
    text-decoration: none;

    margin-bottom: 14px;

    font-size: 14px;

    transition: .2s ease;
}

.footer-column > a span {
    color: var(--gold);
    font-size: 20px;
}

.footer-column > a:hover {
    color: #fff;
    transform: translateX(3px);
}


/* CONTACT */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.88);
    text-decoration: none;

    margin-bottom: 13px;

    font-size: 14px;

    min-width: 0;
}

.footer-contact-item > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.10);

    color: #fff;

    font-size: 16px;
}


/* =========================================================
   BAS DU FOOTER
   ========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.14);
    padding: 0;
}

.footer-bottom-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    color: rgba(255,255,255,.72);

    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    margin: 0;
}

.footer-bottom-links a:hover {
    color: #fff;
}


/* =========================================================
   WHATSAPP FLOTTANT
   ========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;
    color: #fff;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    z-index: 9999;

    transition: .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
}

.floating-whatsapp svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1050px) {

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 40px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 22px 0;

        flex-direction: column;
        text-align: center;

        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
        width: 54px;
        height: 54px;
    }

}




/* =========================================================
   PAGES LÉGALES
   ========================================================= */

.legal-page {
    min-height: 70vh;
    padding: 70px 0;
    background: #f8f6f0;
}

.legal-container {
    max-width: 900px;
}

.legal-back {
    display: inline-block;
    margin-bottom: 35px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.legal-container h1 {
    margin-bottom: 12px;
}

.legal-intro {
    color: #777;
    margin-bottom: 45px;
}

.legal-section {
    background: #fff;
    padding: 28px 32px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(15,92,74,.08);
}

.legal-section h2 {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 20px;
}

.legal-section p {
    line-height: 1.75;
    color: #555;
    margin: 8px 0;
}

.legal-section a {
    color: var(--green);
    font-weight: 600;
}

@media (max-width: 600px) {
    .legal-page {
        padding: 45px 0;
    }

    .legal-section {
        padding: 22px;
    }
}
