html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 200px;
}

.shop-hero {
    width: calc(100% - 40px);
    max-width: 900px;

    margin: 70px auto 90px;

    text-align: center;
    padding-top: 120px;
}

.shop-hero .subtitle {
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #6eb7c5;
}

.shop-hero h1 {
    margin: 0 0 24px;

    font-size: clamp(46px, 5vw, 78px);
    line-height: 1;
    font-weight: 600;

    letter-spacing: -2px;

    color: #2f2f2f;
}

.shop-hero .description {
    max-width: 720px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;

    color: #666;
}

/* =========================================================
   SHOP
========================================================= */

.shop {
    width: calc(100% - 40px);
    max-width: 1280px;

    margin: 0 auto 120px;
}

/* =========================================================
   UNIVERS
========================================================= */

.univers {
    margin-bottom: 90px;
}

.univers .head {
    margin-bottom: 40px;
}

.univers .mini {
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #6eb7c5;
}

.univers h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;

    color: #2f2f2f;
}

/* =========================================================
   GRID
========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* =========================================================
   PRODUCT
========================================================= */

.product.hidden {
    display: none;
}

.card {
    display: block;

    text-decoration: none;
}

/* IMAGE */

.image {
    aspect-ratio: 1 / 1.2;

    overflow: hidden;

    border-radius: 30px;

    background: #f9f8f4;

    margin-bottom: 22px;
}

.image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.card:hover img {
    transform: scale(1.04);
}

/* CONTENT */

.content h3 {
    margin: 0 0 12px;

    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;

    color: #2f2f2f;
}

.prix {
    margin: 0;

    font-size: 18px;
    font-weight: 500;

    color: #6eb7c5;
}

/* =========================================================
   VOIR PLUS
========================================================= */

.voir-plus {
    margin-top: 40px;
    padding: 0 28px;

    height: 54px;

    border: none;
    border-radius: 999px;

    background: #6eb7c5;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.voir-plus:hover {
    background: #5aa9b8;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(110,183,197,0.25);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 1100px) {

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

}

@media screen and (max-width: 700px) {

    .shop-hero {
        margin: 50px auto 70px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .univers {
        margin-bottom: 70px;
    }

    .content h3 {
        font-size: 24px;
    }

    .voir-plus {
        width: 100%;
    }

}
