/* Product Gallery Carousel Styles */
.product-gallery {
    width: 100%;
    overflow: hidden;
}

.product-carousel .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive heights */
@media (max-width: 1200px) {
    .product-carousel .gallery-item {
        height: 600px;
    }
}

@media (max-width: 992px) {
    .product-carousel .gallery-item {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .product-carousel .gallery-item {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .product-carousel .gallery-item {
        height: 300px;
    }
}

.product-carousel .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .product-carousel .gallery-item {
        background: transparent;
        box-shadow: none;
    }

    .product-carousel .gallery-item img {
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .product-carousel .gallery-item {
        background: transparent;
        box-shadow: none;
    }

    .product-carousel .gallery-item img {
        object-fit: contain;
    }
}

.product-carousel .gallery-item:hover img {
    transform: scale(1.05);
}

.product-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-carousel .owl-nav button:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.product-carousel .owl-nav .owl-prev {
    left: 20px;
}

.product-carousel .owl-nav .owl-next {
    right: 20px;
}

.product-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.product-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-carousel .owl-dots .owl-dot.active,
.product-carousel .owl-dots .owl-dot:hover {
    background: #007bff;
    transform: scale(1.2);
}

/* Contact Form Styles */
.alert {
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.single-input input:focus,
.single-input textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
}