:root {
  --brand: #1b7c88;        /* teal CyC */
  --brand-dark: #145e67;
  --brand-light: #1fa5a9;
  --brand-accent: #8e2f7a; /* magenta CyC */
}

.bg-brand {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%) !important;
}

body {
  background: #f7f9fc;
  color: #1f2937;
}

.navbar-brand { letter-spacing: .3px; }

.shop-logo {
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
  object-fit: contain;
}

.shop-logo-footer {
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  padding: 4px 6px;
  object-fit: contain;
}

.shop-logo-hero {
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.auth-logo {
  max-height: 72px;
  object-fit: contain;
}

.color-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  vertical-align: middle;
  margin-right: 6px;
}

.card {
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.product-card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.object-fit-contain { object-fit: contain; width: 100%; height: 100%; }

.badge.bg-warning { color: #1f2937; }

table { --bs-table-hover-bg: rgba(14,165,233,.06); }

footer a { text-decoration: none; }
footer a:hover { text-decoration: underline; }

.payment-logo {
  opacity: .85;
  transition: opacity .15s ease;
  padding: 2px 4px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
}
.payment-logo:hover { opacity: 1; }

.bizum-badge {
  background: #00b6c1 !important;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -.3px;
  padding: 2px 8px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Admin list highlight */
.list-group-item.active {
  background: var(--brand);
  border-color: var(--brand);
}

.alert code {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  padding: .1em .4em;
  border-radius: 4px;
}
