/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

/* Bebas Neue pour les titres */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 100%;
}

@media screen and (max-width: 1023px) {
    .bebas-neue-regular {
        font-size: 70px !important;
        line-height: 80% !important;
    }
}

/* Layout principal : espace texte + 3 produits */
.collab-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    max-width: 100%;
    margin: 50px 0 30px 0;
}

/* Espace texte */
.collab-text {
    padding: 0px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.collab-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.collab-title {
  font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1;
    /* margin-bottom: 0px; */
}

.collab-desc {
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    margin-bottom: 15px;
}

.collab-exclusive {
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
    margin-bottom: 12px;
}

.collab-link {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-decoration: underline !important;
    letter-spacing: 0.3px;
    /* text-underline-offset: 5px; */
}

/* Carte produit */
.product-card {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Container d'image */
.image-container {
    position: relative;
    width: 100%;
    padding-top: 150%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top top;
    transition: transform 0.4s ease;
}

.product-card:hover .image-container img {
    transform: scale(1.03);
}

/* Informations produit */
.product-info {
    padding: 15px 12px;
    background: #fff;
}

.product-name {
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0.5px;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-price {
    font-size: 13px;
    font-weight: 400;
    color: #000;
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1023px) {
    .collab-title {
  font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    margin-bottom: 0px;
}
    .collab-text {
      padding: 0px 10px;
        grid-column: 1;
        grid-row: 1;
    }

    .collab-label {
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.collab-desc {
    font-size: 11px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 15px;
}

.collab-exclusive {
    font-size: 11px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 10px;
}

.collab-link {
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0px;
}
}

@media (max-width: 768px) {
    .collab-section {
        grid-template-columns: repeat(2, 1fr);
        margin: 50px 0 10px 0;
    }

    .collab-title {
  font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    margin-bottom: 0px;
}
    .collab-text {
      padding: 0px 10px;
        grid-column: 1;
        grid-row: 1;
    }

    .collab-label {
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.collab-desc {
    font-size: 11px;
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 10px;
}

.collab-exclusive {
    font-size: 11px;
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 10px;
}

.collab-link {
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 0px;
    text-underline-offset: 3px;
}

    .product-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .product-card:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .product-card:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}