/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.13.1759940902
Updated: 2025-10-08 16:28:22

*/

/* ==========================================================================
   HORIZONTAL SCROLLABLE PRODUCT GALLERY THUMBNAILS
   ========================================================================== */

/* Container styling */
.flex-control-thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Thumbnail items */
.flex-control-thumbs li {
    flex: 0 0 auto !important;
    width: 90px !important;
    height: 90px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    background: #f5f5f5 !important;
}

/* Thumbnail images */
.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Hover effect */
.flex-control-thumbs li:hover {
    border-color: #7c3aed !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3) !important;
}

/* Active thumbnail */
.flex-control-thumbs li.flex-active {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2) !important;
    background: #fff !important;
}

/* Custom scrollbar styling */
.flex-control-thumbs::-webkit-scrollbar {
    height: 8px !important;
}

.flex-control-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 10px !important;
}

.flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #7c3aed !important;
    border-radius: 10px !important;
}

.flex-control-thumbs::-webkit-scrollbar-thumb:hover {
    background: #6d28d9 !important;
}

/* Firefox scrollbar */
.flex-control-thumbs {
    scrollbar-width: thin !important;
    scrollbar-color: #7c3aed #f1f1f1 !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .flex-control-thumbs li {
        width: 75px !important;
        height: 75px !important;
    }
    
    .flex-control-thumbs {
        gap: 10px !important;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .flex-control-thumbs li {
        width: 70px !important;
        height: 70px !important;
    }
    
    .flex-control-thumbs {
        gap: 8px !important;
        padding: 8px 0 !important;
    }
    
    /* Hide scrollbar on mobile */
    .flex-control-thumbs::-webkit-scrollbar {
        display: none !important;
    }
    
    .flex-control-thumbs {
        scrollbar-width: none !important;
    }
}

/* Small mobile (380px and below) */
@media (max-width: 380px) {
    .flex-control-thumbs li {
        width: 60px !important;
        height: 60px !important;
    }
    
    .flex-control-thumbs {
        gap: 6px !important;
    }
}