.product-gallery img { height: 420px; width: 100%; object-fit: cover; border-radius: 12px; }
.thumb img { height: 80px; width: 100%; object-fit: cover; cursor: pointer; border-radius: 8px; opacity: 0.6; transition: 0.2s; }
.thumb img.active { opacity: 1; border: 2px solid #000; }
.copy-btn { cursor: pointer; }
.product-mini-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer; height: 100%; display: flex; flex-direction: column;
}
.product-mini-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.img-wrap { width: 100%; height: 150px; overflow: hidden; background: #f7f7f7; display: flex; align-items: center; justify-content: center; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-mini-card .info { padding: 10px; text-align: center; }
.product-mini-card .name { font-size: 0.9rem; font-weight: 600; color: #222; margin-bottom: 4px; line-height: 1.2; height: 35px; overflow: hidden; }
.product-mini-card .price { font-size: 0.9rem; font-weight: 700; color: #000; }