/* ==== Product gallery modal (multi-image preview) ==== */
.gallery-count-badge{
    position:absolute;
    right:8px;
    bottom:8px;
    background:rgba(0,0,0,.65);
    color:#fff;
    font-size:11px;
    padding:3px 8px;
    border-radius:20px;
    z-index:2;
}
.single-product-img{position:relative;}
.pro-title{
    font-size:14px;
    margin:8px 0 4px;
    font-weight:600;
    color:#333;
}

.pg-overlay{
    display:none;
    position:fixed;
    z-index:99999;
    top:0;left:0;right:0;bottom:0;
    background:rgba(0,0,0,.85);
    padding:20px;
    overflow-y:auto;
}
.pg-overlay.pg-open{display:flex;align-items:center;justify-content:center;}
.pg-box{
    background:#fff;
    max-width:700px;
    width:100%;
    border-radius:6px;
    padding:20px;
    position:relative;
    max-height:92vh;
    display:flex;
    flex-direction:column;
}
.pg-close{
    position:absolute;
    top:8px;right:12px;
    background:none;
    border:none;
    font-size:28px;
    line-height:1;
    cursor:pointer;
    color:#333;
    z-index:2;
}
.pg-title{
    margin:0 30px 10px 0;
    font-size:16px;
    font-weight:600;
}
.pg-main{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    border-radius:4px;
    min-height:250px;
}
.pg-main-img{
    max-width:100%;
    max-height:60vh;
    display:block;
    margin:0 auto;
    object-fit:contain;
}
.pg-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.5);
    color:#fff;
    border:none;
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
    font-size:14px;
    z-index:3;
}
.pg-prev{left:10px;}
.pg-next{right:10px;}
.pg-nav:hover{background:rgba(0,0,0,.8);}
.pg-thumbs{
    display:flex;
    gap:8px;
    margin-top:12px;
    overflow-x:auto;
    padding-bottom:4px;
}
.pg-thumbs img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:4px;
    cursor:pointer;
    border:2px solid transparent;
    opacity:.7;
    flex-shrink:0;
}
.pg-thumbs img.pg-active{
    border-color:#f2801b;
    opacity:1;
}
@media (max-width:600px){
    .pg-box{padding:14px;}
    .pg-main-img{max-height:45vh;}
}
