.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}
/* TABLETTE (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .product-title-related a {
        font-size: 32px;
    }
    .product-subtitle-related {
        font-size: 20px !important;
    }
}
/* MOBILE (max-width: 768px) */
@media screen and (max-width: 768px) {
    .product-title-related a {
        font-size: 26px;
    }
    .product-subtitle-related {
        font-size: 18px !important;
    }
}
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.product-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.product-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
    justify-content: space-between;
}
.product-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.category-pill {
    padding: 4px 16px;
    border-radius: 100px;
    width: 84px;
    height: 22px;
}
.product-title-related {
    font-family: 'Red Rose', serif;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 0px;
}
.product-title-related a {
    color : #1B1822;
}
.product-subtitle-related,
.product-desc-related {
    color: #564C68;
    text-align:center;
}
.product-subtitle-related {
    font-size: 24px;
    line-height: 120%;
    margin-block-end :16px;
    font-family: 'Poppins', sans-serif;
}
.product-desc-related {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 16px;
    line-height: 140%;
    margin-block-end: 16px;
}
.product-button {
    margin-top: auto;
}
.product-button:hover .discover-btn {
    color : #1A1A1A;
}
.discover-btn {
    display: inline-flex;
    padding: 6px 18px;
    background: #EE46BC;
    color: #F2F2F5;
    border-radius: 6px;
    font-family: 'Red Rose', serif;
    font-size: 16px;
    text-decoration: none;
    justify-content: center;
}