/* Product page layout fixes */

/* Move image zoom/preview button below the dropdown menu */
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: auto;
    bottom: 1em;
    right: 1em;
    z-index: 1 !important; /* Keep below navigation menu dropdowns */
}

/* Reduce extra space between product title and description */
.single-product .product .product_title {
    margin-bottom: 5px;
}

.single-product .product .price {
    margin-bottom: 10px;
}

.single-product .product .woocommerce-product-details__short-description {
    margin-top: 5px;
}

/* Tighten spacing in product summary area */
.single-product .summary.entry-summary > * {
    margin-bottom: 10px;
}

/* Product gallery thumbnails - single horizontal row with scroll */
.woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scroll-behavior: smooth;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #ccc #f1f1f1; /* Firefox */
}

/* Gallery navigation wrapper */
.ssb-gallery-nav-wrapper {
    position: relative;
}

/* Gallery navigation arrows */
.ssb-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(139, 93, 171, 0.85) !important; /* Purple */
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    font-weight: bold;
    color: #fff !important;
    line-height: 40px;
    text-align: center;
    padding: 0 !important;
}

.ssb-gallery-nav:hover {
    background: rgba(139, 93, 171, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ssb-gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.ssb-gallery-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.ssb-gallery-nav-prev {
    left: 5px;
}

.ssb-gallery-nav-next {
    right: 5px;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 auto;
    width: 80px;
    margin: 0;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.woocommerce-product-gallery .flex-control-thumbs li img:hover {
    opacity: 0.8;
}

/* Webkit scrollbar styling */
.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
    height: 6px;
}

.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Reduce extra space below gallery */
.woocommerce-product-gallery {
    margin-bottom: 15px;
}

.single-product div.product div.images {
    margin-bottom: 15px;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    /* Larger touch targets for thumbnails on mobile */
    .woocommerce-product-gallery .flex-control-thumbs li {
        width: 70px;
    }

    .woocommerce-product-gallery .flex-control-thumbs {
        gap: 8px;
    }

    /* Adjust zoom button for mobile */
    .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
        bottom: 0.5em;
        right: 0.5em;
    }

    /* Tighter spacing on mobile */
    .single-product .summary.entry-summary > * {
        margin-bottom: 8px;
    }

    /* Smaller nav arrows on mobile */
    .ssb-gallery-nav {
        width: 28px;
        height: 28px;
    }

    .ssb-gallery-nav-prev {
        left: 5px;
    }

    .ssb-gallery-nav-next {
        right: 5px;
    }

    .ssb-gallery-nav svg {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 480px) {
    .woocommerce-product-gallery .flex-control-thumbs li {
        width: 60px;
    }

    /* Hide nav arrows on very small screens - use swipe */
    .ssb-gallery-nav {
        display: none;
    }
}
