
/* Product gallery detail */
.pg{display:flex;flex-direction:column;gap:10px}
.pg-main{width:100%;aspect-ratio:4/3;background:#f8fafc;border:1px solid var(--border);border-radius:12px;overflow:hidden}
.pg-thumbs{display:grid;grid-template-columns:repeat(6,1fr);gap:8px}
.pg-thumb{display:block;border:1px solid var(--border);background:#fff;border-radius:8px;overflow:hidden;padding:0;cursor:pointer}
.pg-thumb img{width:100%;height:100%;object-fit:cover;aspect-ratio:1/1;display:block}
.pg-thumb.active{outline:2px solid var(--accent);background:#eff6ff}
@media(max-width:900px){.pg-thumbs{grid-template-columns:repeat(5,1fr)}}
