/* ============================================================
   MOBILE — max-width 900px
   ============================================================ */

@media (max-width: 900px) {
    .cgallery-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
       .cgallery-carousel .cgallery-item {
    
    width: 260px ;
    
}
.cgallery-carousel .cgallery-thumbs {
   
    height: 100px;      

}
}

/* ============================================================
   MOBILE — max-width 600px
   ============================================================ */

@media (max-width: 768px) {

    .cgallery-grid {
        grid-template-columns: repeat(2, minmax(190px, 1fr));
        gap: 5px;
        padding: 0 1px;
    }

    .cgallery-wrapper {
        padding: 0 2px;
    }

    .cgallery-item {
        padding: 1px;
    }
    .cgallery-carousel .cgallery-item {
    
    width: 260px ;
    
}
.cgallery-product-thumbs {
   gap: 1px 1px !important;
    margin: 20px 0 !important;
}

.cgallery-product-thumb-link {
   
    width: 50px !important;
    height: 50px !important;
   
}

.cgallery-product-thumb {
    width: 50px !important;
    height: 50px !important;
  
    border-radius: 4px;
   
}

.cgallery-product-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.cgallery-product-thumb-link.active .cgallery-product-thumb {
    outline: 3px solid #000;
    outline-offset: 1px;
    border-radius: 2px;
    transform: scale(0.9);
}


 
    .cgallery-arrow {
        display: none !important;
    }


    /* --- DYNAMICZNY KONTENER MINIATUREK W KARUZELI --- */

.cgallery-carousel .cgallery-thumbs {
    order: 2;
    
    max-width: 500px;
    height: 100px;               /* stała wysokość */
    display: flex !important;
    flex-wrap: wrap !important;              /* pozwala na 2 rzędy */
    justify-content: center !important;
    align-content: center !important;        /* pionowe centrowanie miniaturek */
    gap: 1px;
    padding: 0;
    margin-top: 0 !important;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;             /* nic nie wystaje */
}
/* --- MINIATURKI AUTO-SCALING --- */
.cgallery-carousel .cgallery-thumbs a {
    width: 36px;
    height: 36px;
    flex: 1 0 auto;               /* pozwala rosnąć i maleć */
    max-width: 50px;              /* nigdy większe niż kontener */
    max-height: 50px;
    aspect-ratio: 1 / 1;          /* zawsze kwadrat */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}




.cgallery-thumbs a {
   
       width: 30px !important;
    height: 30px !important;
}
.cgallery-thumb {
         width: 30px !important;
    height: 30px !important;
}


.cgallery-carousel .cgallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* --- STRZAŁKI KARUZELI --- */
.cgallery-carousel {
    position: relative;
}




}