section.bri-products-slider-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 20px;
}

.bri-products-slider {
    width: 100%;
    overflow: hidden;
}

.bri-products-slider-wrapper {
    display: flex;
    transition-property: transform;
}

.bri-products-slider-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.bri-product-slide {
    position: relative;
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bri-product-slide:hover {
    /* transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.bri-product-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.bri-product-tag {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    padding: 8px 16px;
    border-radius: 20px;

    font-family: CircularXX, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: white;
    align-self: flex-start;

    margin: 16px 0 0 24px;
}

.bri-product-content {
    position: relative;
    z-index: 2;
    padding: 0 18px 28px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.66%, rgba(0, 0, 0, 0.6) 83.97%);
    margin-top: auto;
}

.bri-product-title {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 24px;
    line-height: 112%;
    color: #ffffff;
    margin-bottom: 18px;
}

.bri-product-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bri-product-title a:hover {
    color: #ffd700;
}

.bri-product-link {
    font-family: CircularXX, sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 9px;
    line-height: 10.72px;
    letter-spacing: 0.97px;
    padding: 9px 18px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: block;
    width: fit-content;

}

/* Mobile Styles */
@media (max-width: 767px) {
    section.bri-products-slider-container {
        padding: 0 0 40px 15px;
    }
    
    .bri-product-slide {
        width: 100%;
        height: 438px;
        flex-shrink: 0;
    }
    
    .bri-products-slider .swiper-slide:last-child {
        padding-right: 15px;
    }
}


/* Swiper specific overrides */
.bri-products-slider .swiper-wrapper {
    align-items: stretch;
}

.bri-products-slider .swiper-slide {
    height: auto;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}

/* Ensure proper spacing between slides */
.bri-products-slider .swiper-slide:not(:last-child) {
    margin-right: 16px;
}


