* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  color: #1a1a2e;
  background: #f5f6fa;
  line-height: 1.5;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #16213e;
  color: #fff;
}
header .brand { font-size: 20px; font-weight: 700; letter-spacing: .5px; }
header nav a {
  color: #dcdcdc;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
}
header nav a:hover { color: #fff; }
header nav a.cart { position: relative; }
.badge {
  background: #e94560;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 1px 7px;
  margin-left: 6px;
}
main { max-width: 1000px; margin: 0 auto; padding: 32px; }
h1 { margin-bottom: 8px; }
.muted { color: #6b7280; margin-bottom: 24px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.card .thumb {
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e94560, #533483);
  margin-bottom: 12px;
}
.card h3 { font-size: 16px; margin-bottom: 4px; }
.card .price { font-weight: 700; margin: 8px 0 12px; }
button {
  background: #e94560;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}
button:hover { background: #d13350; }
button.ghost { background: #eef0f6; color: #16213e; }
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.summary {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.total { font-size: 20px; font-weight: 700; }
.empty { color: #6b7280; padding: 40px 0; text-align: center; }

/* Hide the SDK theme's "welcome" bubble everywhere — the real Contact Center
   campaign ("proactivo") is the proactive trigger on /cart, not this. The
   launcher button (.avatar-bg) is never affected. */
.avatar-actions > .content-info { display: none !important; }
