.hero-banner{
    height: 100vh;
    position: relative;
    background: url('https://studiogliths.com/wp-content/uploads/2026/01/banniere-test-gliths-2-1.png') center/cover no-repeat;
}

.hero-banner div{
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
}

.button-collection{
    padding: 16px 28px !important;
    background-color: black;
    border: none;
    text-decoration: none;
    color: white;
    font-size: 16px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    cursor: pointer;
}

.section-collection{
    margin: 0 20px 60px 20px;
}

.section-p{
    text-align: center;
    margin: 60px auto;
    width: 30%;
    max-width: 800px;
}

.bloc-article-home{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
}

.link-produit img{
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.product-meta-home{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    margin-top: -6px;
}

@media (max-width: 1150px) {
    .link-produit img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-p {
        width: 75%;
    }

    .bloc-article-home{
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 10px;
    }

    .link-produit img{
        height: 300px;
    }
}

@media (max-width: 560px){
    .link-produit img {
            height: 225px;
        }
}