/* Amberhour Mobile Gallery - Final v2.6 */
/* Simple, working carousel + desktop grid */

.amberhour-gallery-wrapper {
    width: 100%;
    position: relative;
    z-index: 10;
}

.amberhour-gallery-wrapper .woocommerce-product-gallery__wrapper {
    display: block;
    position: relative;
}

.woocommerce-product-gallery__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 5;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
    cursor: default;
}

/* ============================================ */
/* THUMBNAILS BASE STYLES */
/* ============================================ */

.amberhour-thumbnails-grid {
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 20;
}

.amberhour-thumbnail-item {
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    background: white;
}

.amberhour-thumbnail-item:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

.amberhour-thumbnail-item:active {
    transform: scale(0.95);
}

.amberhour-thumbnail-item img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none !important;
    cursor: pointer;
}

/* Active thumbnail - Gold border */
.amberhour-thumbnail-item.active {
    border-color: #b8935f !important;
    box-shadow: 0 0 0 2px #b8935f !important;
}

/* ============================================ */
/* DESKTOP LAYOUT (≥769px) - Normal Grid */
/* ============================================ */

@media (min-width: 769px) {
    .amberhour-thumbnails-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .amberhour-thumbnail-item {
        min-height: 80px;
    }
}

/* ============================================ */
/* MOBILE LAYOUT (≤768px) - Horizontal Carousel */
/* ============================================ */

@media (max-width: 768px) {
    .amberhour-thumbnails-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        padding: 0;
    }
    
    /* Hide scrollbar */
    .amberhour-thumbnails-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .amberhour-thumbnail-item {
        /* 3 full images visible + 1/4 of 4th */
        flex: 0 0 calc(25% - 6px);
        min-height: 60px;
        scroll-snap-align: start;
    }
}

/* Hide swiper arrows */
.woocommerce-product-gallery .swiper-button-prev,
.woocommerce-product-gallery .swiper-button-next,
.woocommerce-product-gallery .swiper-pagination {
    display: none !important;
}
