:root {
  --brand-teal: #0BAAA6;
  --brand-dark: #2C2F33;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.navbar-brand img {
  height: 40px;
}

.btn-primary {
  background-color: var(--brand-teal);
  border-color: var(--brand-teal);
}

.btn-outline-primary {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}

.btn-outline-primary:hover {
  background-color: var(--brand-teal);
  color: #fff;
}

.hero {
  background: #fff url('assets/hero_bg.svg') center/cover no-repeat;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-img-top {
  object-fit: cover;
  height: 220px;
}

.footer {
  background: #0f1113;
  color: #c9d1d9;
}

.footer a {
  color: #9fd3ff;
  text-decoration: none;
}

.trust-band {
  background: #fbfeff;
  border: 1px solid #e6f3f3;
}

.minicart {
  position: fixed;
  top: 0;
  right: -460px;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 30px rgba(0,0,0,.08);
  transition: right .3s;
  z-index: 1050;
}

.minicart.open {
  right: 0;
}

.minicart-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.minicart-close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #eee;
  padding: .75rem;
  display: none;
}

.cookie-banner .btn {
  margin-left: .5rem;
}

.sticky-atc {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #eee;
  padding: .75rem;
}

