.btn-primary, .text-bg-primary { background-color: var(--primary)!important; border-color: var(--primary)!important; }
.text-primary { color: var(--primary)!important; }
.product-img { height: 230px; object-fit: cover; }
.placeholder-img { background:#f1f3f5; display:flex; align-items:center; justify-content:center; color:#868e96; min-height:230px; }
.product-card { transition:.2s; border-radius: 16px; overflow: hidden; }
.product-card:hover { transform: translateY(-3px); }
.product-main-photo { max-height: 620px; object-fit: contain; background: #f8f9fa; }
.product-thumb { height: 90px; object-fit: cover; background: #f8f9fa; }
.product-description { line-height: 1.65; }

.store-brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: var(--store-logo-max-height, 58px);
  max-width: var(--store-logo-max-width, 260px);
  object-fit: contain;
}
@media (max-width: 576px) {
  .store-brand-logo {
    max-height: min(var(--store-logo-max-height, 58px), 46px);
    max-width: min(var(--store-logo-max-width, 260px), 210px);
  }
}
