/* Featured Products Carousel Styles */
.vd-featured-products {
    position: relative;
    overflow: hidden;
}

.featured-product-item {
    padding: 0 15px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.wishlist-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

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

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #d6a86e;
    margin-bottom: 0;
}

.slider-buttons {
    margin-top: 30px;
}

.slide-arrow {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide-arrow:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .product-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .featured-product-item {
        padding: 0 10px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .product-image {
        height: 220px;
    }
}
