/**
 * Product Gallery Styles
 */

.mc_product_gallery_container {
    margin-bottom: 30px;
}

/* Main gallery */
.mc_product_gallery {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.mc_gallery_slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 530px;
}

.mc_gallery_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px !important;
    border: 1px solid var(--Foundation-Grey-grey-50, #EEE);
}

/* Thumbnails */
.mc_product_thumbs {
    width: 100%;
    height: 126px;
    margin-top: 10px;
}

.mc_thumb_slide {
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.mc_thumb_slide.swiper-slide-thumb-active {
    opacity: 1;
}

.mc_thumb_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--Foundation-Grey-grey-50, #EEE);
}

/* Mobile/Desktop specific thumbnails */
.mobile-thumb {
    display: none; /* Hidden by default, shown via JS on mobile */
}

.mobile-thumb-link {
    display: none; /* Hidden by default, shown via JS on mobile */
    width: 100%;
    height: 100%;
}

/* Navigation buttons */
.mc_product_link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #EB8125;
    transition: background-color 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.mc_product_link_btn:hover {
    background-color: #d97420;
}

.mc_gallery_prev {
    left: 10px;
}

.mc_gallery_next {
    right: 10px;
}

/* Pagination */
.mc_carousel_pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.mc_pagination_bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mc_pagination_bullet.swiper-pagination-bullet-active {
    background-color: #EB8125;
}

/* Responsive */
@media (max-width: 768px) {
    .mc_gallery_slide {
        height: 400px;
    }
    
    .mc_product_thumbs {
        height: 100px;
    }
}

/* Mobile specific styles */
@media (max-width: 767px) {
    /* Hide main gallery on mobile */
    .mc_product_gallery {
        display: none !important;
    }
    
    /* Adjust thumbnails to be the main gallery on mobile */
    .mc_product_thumbs {
        height: 265px !important;
        margin-top: 0 !important;
    }
    
    .mc_thumb_slide {
        height: 265px !important;
        opacity: 1 !important;
    }
    
    .mc_thumb_image {
        object-fit: contain !important;
        border-radius: 10px !important;
        border: 1px solid var(--Foundation-Grey-grey-50, #EEE) !important;
    }
    
    /* No navigation buttons on mobile as per client request */
}