/* SOLA 網購商城 — 沿用品牌色 #2E86C1 */
.shop-hero {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sola-primary-light, rgba(46,134,193,.12)), #fff);
  border: 1px solid rgba(46, 134, 193, 0.18);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.shop-product-card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.shop-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 134, 193, 0.15);
}
.shop-product-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  background: #f3f7fb;
}
.shop-price-original {
  text-decoration: line-through;
  color: #8a96a3;
  font-size: .9rem;
}
.shop-price-sale {
  color: var(--sola-primary, #2E86C1);
  font-weight: 700;
  font-size: 1.15rem;
}
.shop-badge-sale {
  background: var(--sola-primary, #2E86C1);
  color: #fff;
  font-size: .75rem;
  padding: .2rem .5rem;
  border-radius: 999px;
}
.cart-nav-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.cart-nav-badge .badge {
  background: var(--sola-primary, #2E86C1);
  font-size: .7rem;
}
.shop-summary-box {
  background: #f8fbfe;
  border: 1px solid rgba(46, 134, 193, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
}
.shop-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #6c757d;
}
