.product-gallery{position:relative;width:100%}
.product-gallery__main{position:relative;overflow:hidden;border-radius:8px;background:#f9f7f2;aspect-ratio:1/1}
.product-gallery__slide{display:none;width:100%;height:100%;align-items:center;justify-content:center}
.product-gallery__slide--active{display:flex}
.product-gallery__slide img{max-width:100%;max-height:100%;object-fit:contain}
.product-gallery__prev,.product-gallery__next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.85);border:none;font-size:28px;width:40px;height:40px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#1B3A5C;box-shadow:0 2px 8px rgba(0,0,0,0.12);transition:all 0.2s;z-index:2}
.product-gallery__prev:hover,.product-gallery__next:hover{background:#fff;box-shadow:0 3px 12px rgba(0,0,0,0.18)}
.product-gallery__prev{left:10px}
.product-gallery__next{right:10px}
.product-gallery__thumbs{display:flex;gap:8px;margin-top:12px;justify-content:center;flex-wrap:wrap}
.product-gallery__thumb{width:60px;height:60px;border:2px solid transparent;border-radius:6px;overflow:hidden;cursor:pointer;padding:2px;background:#f9f7f2;transition:border-color 0.2s}
.product-gallery__thumb--active{border-color:#1B3A5C}
.product-gallery__thumb:hover{border-color:#6B2D4E}
.product-gallery__thumb img{width:100%;height:100%;object-fit:contain}