.featured-products-slider {
    position: relative;
    margin-bottom: 40px;
}

.featured-products-wrapper {
    overflow: hidden;
}

.featured-products {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: -20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.featured-products::-webkit-scrollbar {
    display: none;
}

.featured-product-card {
    display: flex;
    gap: 20px;
    background: var(--bg-light-blue);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    align-items: center;
    width: 500px;
    flex-shrink: 0;
    max-height: 280px;
    overflow: hidden;
}

.featured-product-card__image {
    flex-basis: 200px;
    flex-shrink: 0;
    height: 100%;
}

.featured-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.featured-product-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-product-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    flex-shrink: 0;
}

.featured-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.featured-product-card__description {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
    max-height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.featured-product-card__content .btn {
    align-self: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}

.featured-products-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.featured-products-slider .slider-arrow:hover {
    background-color: #fff;
    border-color: #333;
}

.featured-products-slider .slider-arrow--prev {
    left: -20px;
}

.featured-products-slider .slider-arrow--next {
    right: -20px;
}