/* Recommended Products Carousel Styles */
.recommended-products-container {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
}

.recommended-products-container .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.recommended-products-container .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin: 0;
    position: relative;
}

.recommended-products-container .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1rem;
    z-index: 10;
}

.nav-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-btn:active {
    transform: translateY(-1px);
}

.recommended-carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
    margin: 0 -20px;
    padding: 0 20px 30px;
}

.recommended-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.recommended-carousel {
    display: flex;
    gap: 30px;
}

.recommended-carousel .product-card {
    flex: 0 0 300px;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .recommended-carousel .product-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .recommended-products-container {
        padding: 50px 0;
    }
    
    .recommended-products-container .section-header {
        margin-bottom: 25px;
    }
    
    .recommended-products-container .section-title {
        font-size: 1.6rem;
    }
    
    .recommended-carousel {
        gap: 20px;
    }
    
    .recommended-carousel .product-card {
        flex: 0 0 220px;
    }
    
    .carousel-nav {
        display: none; /* Hide buttons on mobile, touch scroll is preferred */
    }
}
