/* ===== Product Gallery Styles ===== */
.product-gallery-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

/* Vertical Thumbnails Container */
.vertical-thumbnails {
    width: 100px;
    flex-shrink: 0;
    height: 420px;
    overflow: hidden;
}

.vertical-thumbnails .owl-carousel {
    height: 100%;
}

.vertical-thumbnails .owl-stage-outer {
    height: 100% !important;
}

.vertical-thumbnails .owl-stage {
    display: flex;
    flex-direction: column;
    height: auto !important;
}

.vertical-thumbnails .owl-item {
    width: 100% !important;
    margin-bottom: 10px;
}

.vertical-thumbnails .item-thumb {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 100%;
    height: 80px;
}

.vertical-thumbnails .item-thumb:hover {
    opacity: 1;
    border-color: #ff6b6b;
}

.vertical-thumbnails .item-thumb.active {
    opacity: 1;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
}

.vertical-thumbnails .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Carousel Container */
.main-carousel-container {
    flex: 1;
    min-width: 0;
}

.product-carousel .item {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.product-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-carousel .item:hover img {
    transform: scale(1.02);
}

/* Navigation Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #ff6b6b !important;
    color: white !important;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-dots {
    display: none !important;
}

/* Product Details Styles */
.product-details {
    padding-left: 30px;
}

.product-details h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.hamper-includes {
    padding-left: 10px;
}

.hamper-includes ul li {
    margin-bottom: 5px;
    display: flex;
    font-size: 13px;
    align-items: center;
}

.hamper-includes ul li i {
    color: #28a745;
    margin-right: 10px;
}

.btn-primary {
    background: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: #ff6b6b;
    transform: translateY(-2px);
}

.btn-success {
    background: #25d366;
    border: 2px solid #25d366;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: transparent;
    color: #25d366;
    transform: translateY(-2px);
}

.additional-info small {
    display: flex;
    align-items: center;
    color: #666;
}

.additional-info i {
    color: #ff6b6b;
    margin-right: 5px;
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.zoom-modal-content {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    top: 5%;
}

.zoom-modal-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 99999;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-zoom:hover {
    background: #ff6b6b;
    transform: rotate(90deg);
}

.zoom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99999;
}

.zoom-nav:hover {
    background: #ff6b6b;
}

.zoom-prev {
    left: 20px;
}

.zoom-next {
    right: 20px;
}

/* Modal Design */
.enquiry-modal .modal-content {
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Title */
.enquiry-modal .modal-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

/* Inputs */
.custom-input {
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 12px;
    font-size: 14px;
    transition: 0.3s;
    background: #fafafa;
}

.custom-input:focus {
    border-color: #f26522;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(242, 101, 34, 0.1);
}

/* Button */
.btn-submit {
    background: linear-gradient(135deg, #f26522, #ff8c42);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d9531e, #ff7a2f);
}

/* Remove default focus outline */
.custom-input:focus {
    outline: none;
}



/* Responsive Styles */
@media (max-width: 991px) {
    .product-details {
        padding-left: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .product-gallery-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .vertical-thumbnails {
        width: 100%;
        height: auto;
        order: 2;
    }

    .vertical-thumbnails .owl-stage {
        flex-direction: row;
    }

    .vertical-thumbnails .owl-item {
        width: calc(25% - 7.5px) !important;
        margin-right: 10px;
        margin-bottom: 0;
    }

    .vertical-thumbnails .owl-item:last-child {
        margin-right: 0;
    }

    .vertical-thumbnails .item-thumb {
        height: 70px;
    }

    .product-carousel .item {
        height: 430px;
    }

    .main-carousel-container {
        width: 100%;
    }

    .close-zoom {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .zoom-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .product-carousel .item {
        height: 400px;
    }

    .vertical-thumbnails .item-thumb {
        height: 60px;
    }

    .product-details h4 {
        font-size: 20px;
    }
}
