/* Custom CSS for FashionHub */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Slider */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}

/* Product Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.card-img-top {
    height: 300px;
    object-fit: cover;
}

/* Why Choose Us Section */
.bg-light {
    background-color: #f8f9fa!important;
}

/* Testimonials */
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #adb5bd!important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .card-img-top {
        height: 200px;
    }
}

 .product-gallery-thumbnail {
            cursor: pointer;
            border: 1px solid #dee2e6;
            transition: border-color 0.3s;
        }
        .product-gallery-thumbnail:hover, .product-gallery-thumbnail.active {
            border-color: #0d6efd;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(13, 110, 253, 0.1);
            color: #0d6efd;
        }
        .product-color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .product-color-option:hover, .product-color-option.active {
            border-color: #0d6efd;
            transform: scale(1.1);
        }
        .quantity-input {
            width: 60px;
            text-align: center;
        }