/* Boutons tags */
.full-width-image-wrapper {
    width: 100%;
    overflow: hidden;
   background-color: #F2EFFE;
    display: none;
}
.full-width-image {
    width: 100%;
    max-height: 209px;
    display: block;
    object-fit: cover;
    border-radius: 16px !important;
}
.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    background-color:#F2EFFE;
    padding: 24px 0px;
}
.filter-btn,
.tag-btn {
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    border: none;
}
.view-all-btn {
    background-color: transparent;
    color: #1B1822;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.category-product {
    text-align: center;
    padding: 48px 0px;
    font-size: 40px;
}
.view-all-btn:hover,
.view-all-btn.active {
    background-color: #7A5AF8 !important;
    color: white !important;
}
.tag-btn {
    color: #1B1822;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.tag-btn:hover,
.tag-btn.active {
    background-color: var(--tag-color);
    color: white;
}
.section {
    background: #F2EFFE;
}
.section-wrapper {
    /*max-width: 1440px;*/
    width: 100%;
    margin: 0 auto;
    padding: 64px 64px 24px 64px;
}
.section-content {
    display: flex;
    gap: 64px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.text-column, .desc-column {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tag-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
}
.tag-pill {
    /*background: #EE46BC;*/
    border-radius: 100px;
    padding: 4px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.bg-category-product{
    background-color: #F2EFFE;
}
.top-cat{
    margin-top: -9px;
}
.tag-text {
    color: #F2F2F5;
    font-size: 12px;
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 400;
    line-height: 14.4px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    word-wrap: break-word;
}
.section-title {
    color: #1B1822;
    font-size: 40px;
    font-family: 'Red Rose', serif;
    font-weight: 400;
    line-height: 48px;
    margin: 0;
}
.section-desc {
    color: #564C68;
    font-size: 20px;
    font-family: 'Rethink Sans', sans-serif;
    line-height: 28px;
    margin: 0;
}
.bk-color{
    display: flex;
    gap: 8px
}
.card-grid-product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 0px 64px 0px;
    background-color:#F2EFFE;
}
.card-product {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    align-items: center;
    padding: 8px;
    gap: 16px;
}
.card-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.card-tags {
    display: flex;
    gap: 8px;
}
.tag {
    width: 84px;
    height: 22px;
    border-radius: 50px;
    display: inline-block;
}
.tag.pink {
    background: #EE46BC;
}
.tag.green {
    background: #12B76A;
}
.card-title {
    font-size: 40px;
    font-family: 'Red Rose', serif;
    line-height: 120%;
    color: #1B1822;
    margin: 0;
}
.card-subtitle {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #564C68;
    margin: 0;
    line-height:120%;
}
.card-desc {
    font-size: 16px;
    font-family: 'Rethink Sans', sans-serif;
    color: #564C68;
    line-height: 140%;
    margin: 0;
}
.card-button {
    background: #7A5AF8;
    color: #F2F2F5;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Red Rose', serif;
}
.card-button:hover{
    background-color: #F2EFFE;
    color: #7A5AF8;
}
.card-product-image img {
    border-radius: 8px;
    max-height: 300px;
    width: auto;
}
/* Tablette */
@media (max-width: 1024px) {
    .category-product {
        text-align: center;
        padding: 48px 0px;
        font-size: 32px;
    }
    .card-grid-product {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-product {
        flex-direction: column;
        text-align: center;
    }
    .card-product-image img {
        margin-top: 16px;
        width: 100%;
        height: auto;
    }
    .card-product-content {
        align-items: center;
    }
    .section-wrapper {
        padding: 48px 48px 20px 48px;
    }
    .card-title {
        font-size: 32px;
    }
    .section-title {
        font-size: 32px;
        line-height: initial;
    }
    .section-desc {
        font-size: 18px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
        line-height: initial;
    }
    .section-desc {
        font-size: 16px;
    }
    .card-title {
        font-size: 28px;
    }
    .category-product {
        text-align: center;
        padding: 48px 0px;
        font-size: 26px;
    }
    .section-wrapper {
        padding: 0px;
    }
    .card-grid-product {
        grid-template-columns: 1fr;
    }
    .section-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}
@media (max-width: 380px) and (min-width: 300px)  {
    .tag-btn {
        font-size: 12px;
    }
}
@media (max-width: 300px) and (min-width: 280px)  {
    .tag-btn {
        font-size: 10px;
    }
}