.featured-products-widget {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-products-widget h2{
    font-size: 24px;
}

.featured-products-widget .category-pills {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.featured-products-widget .category-pills .pill {
    border-radius: 27px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    transition: 0.5s;
    text-decoration: none;
    color: black;
}

.featured-products-widget .category-pills .pill:hover {
    background-color: #E5E5E5;
    transition: 0.5s;
}

.featured-products-widget .category-pills .pill.active {
    background-color: black;
    color: white;
}

.featured-products-widget .category-lists-wrapper {
    width: 100%;
    overflow: hidden;
}

.featured-products-widget .category-lists {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: transform 0.5s ease;
}

.featured-products-widget .category-lists .category-list {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

.featured-products-widget .card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: calc((100% - (24px * 2)) / 3);
    flex-shrink: 0;
    background-color: white;
    border: 1px solid black;
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
    aspect-ratio: 16 / 9;
    transition: border-color 0.5s, transform 0.5s, box-shadow 0.5s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-products-widget .card:hover {
    border-color: #EFA71B;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: border-color 0.5s, box-shadow 0.5s;
}

.featured-products-widget .card .left {
    width: 120px;
}

.featured-products-widget .card .left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.featured-products-widget .card .right {
    width: calc(100% - 120px - 24px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-products-widget .card h6 {
    color: black;
    font-size: 14px;
}

.featured-products-widget .card .prices {
    display: flex;
    flex-direction: column;
}

.featured-products-widget .card .right .prices .price-without-discount {
    font-size: 12px;
    color: grey;
    text-decoration: line-through;
}

.featured-products-widget .card .right .prices .price-sale {
    font-size: 22px;
    color: black;
    font-weight: 600;
    transition: 0.5s;
}

.featured-products-widget .card:hover .right .prices .price-sale {
    color: #EFA71B;
    transition: 0.5s;
}