.product-style1-card-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2rem;
    width: 100%;
}
.product-style1-card {
    flex: 1 1 300px;
    border-radius: 15px;
    overflow: hidden;
    outline: 1px solid #EE46BC;
    outline-offset: -1px;
    display: flex;
    flex-direction: column;
}
.product-style1-card-content {
    padding: 0.5rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 322px;
}
.product-style1-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 16px;
}
.product-style1-card-category {
    display: flex;
    justify-content: center;
    width: 100%;
}
.product-style1-category-tag {
    background: #EE46BC;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    margin-left: 8px;
    height: 22px;
    width: 84px;
}
.product-style1-category-text {
    font-family: 'Rethink Sans', sans-serif;
    font-size: 0.75rem;
    color: #F2F2F5;
    line-height: 1.2;
    text-align: center;
    width: 30px;
    height: 22px;
}
.product-style1-card-texts {
    text-align: center;
    max-width: 100%;
    padding: 0 1rem;
}
h2.product-style1-card-title {
    font-family: 'Red Rose', serif;
    font-size: 2.5rem;
    color: #1B1822;
    margin: 0;
    line-height: 120%;
    margin-bottom: 16px;
}
.pd-style-title {
    color: #1B1822;
}
p.product-style1-card-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #564C68;
    margin: 0;
    line-height: 120%;
    margin-bottom: 16px;
    min-height: 90px;
}
p.product-style1-card-description {
    text-align: center;
    color: #564C68;
    font-size: 16px;
    font-family: Rethink Sans;
    font-weight: 400;
    line-height: 22.40px;
    margin: 0px;
    min-height: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limite à 6 lignes */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-style1-card-button-container {
    display: flex;
    justify-content: center;
}
.product-style1-card-button {
    color: #F2F2F5;
    border-radius: 6px;
    padding: 10px 18px;
    border: none;
    font-family: 'Red Rose', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.product-style1-card-button:hover {
    background-color: #F2EFFE;
    color: #564C68;
    outline: 1px #E4DEFE solid;
}
/*MOBILE*/
@media (max-width: 768px) {
    h2.product-style1-card-title {
        font-size: 1.5rem;
    }
    p.product-style1-card-subtitle {
        min-height: auto;
        font-size: 1rem;
    }
    p.product-style1-card-description {
        min-height: auto;
        font-size: 0.9rem;
    }
    .product-style1-card-button {
        font-size: 0.875rem;
    }
}
/* Responsive TABLETTE */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-style1-card-button {
        font-size: 0.938rem;
    }
}