.seller-product-detail .active-thumb {
  border: 2px solid #ff0042;
  box-shadow: 0 0 0 2px #ff0042;
}

.seller-product-detail .style-qrcode{
  width:160px;
  height:160px;
  border-radius:8px;
  border:1px solid #ddd;
  background:#fff;
  padding:4px;
}
.seller-product-detail .qr-empty {
  color: #9ca3af;
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}
.seller-product-detail .qr-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.seller-product-detail .identity-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.seller-product-detail .identity-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: #111827;
}

.seller-product-detail .identity-code {
  font-size: 13px;
  color: #111827;
  font-weight: 500;
  margin-bottom: 12px;
}

/* === PRODUCT IMAGE SECTION === */
.seller-product-detail .product-image-box {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  transition: box-shadow 0.2s ease;
}

/* .seller-product-detail .product-image-box:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
} */

.seller-product-detail .main-product-image {
  max-width: 240px;
  border: none;
  border-radius: 10px;
  object-fit: contain;
}

/* === THUMBNAILS === */
.seller-product-detail .product-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.seller-product-detail .product-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-thumb:hover {
  transform: scale(1.05);
  border-color: #a1a1aa;
}

.active-thumb {
  border: 2px solid #16a34a;
  box-shadow: 0 0 0 2px #bbf7d0;
}

.table-body .width-150 th {
  width: 150px;
}
