:root {
  --vgb-ink: #0b1220;
  --vgb-slate: #334155;
  --vgb-ice: #f4f7fb;
  --vgb-accent: #2563eb;
  --vgb-accent-2: #7c3aed;
  --vgb-radius: 1rem;
  --vgb-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vgb-card-product {
    transition: none;
  }

  .vgb-card-product:hover {
    transform: none;
  }
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--vgb-ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--vgb-ice) 38%, #ffffff 100%);
}

h1,
h2,
h3,
.display-font {
  font-family: "Syne", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.vgb-topbar {
  font-size: 0.8125rem;
  background: var(--vgb-ink);
  color: rgba(255, 255, 255, 0.88);
}

.vgb-topbar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.vgb-topbar a:hover {
  color: #fff;
}

.vgb-navbar {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.vgb-brand {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--vgb-ink) !important;
  text-decoration: none;
  line-height: 1.1;
}

.vgb-brand small {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vgb-slate);
}

.vgb-nav-link {
  font-weight: 500;
  color: var(--vgb-slate) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.vgb-nav-link:hover,
.vgb-nav-link:focus-visible {
  color: var(--vgb-ink) !important;
  background: rgba(37, 99, 235, 0.08);
}

.vgb-skip {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1080;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: #fff;
  color: var(--vgb-ink);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--vgb-shadow);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.vgb-skip:focus {
  transform: translateY(0);
  outline: 2px solid var(--vgb-accent);
  outline-offset: 2px;
}

.vgb-btn-cart {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-weight: 600;
}

.vgb-hero {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--vgb-radius) + 4px);
  min-height: clamp(22rem, 58vh, 36rem);
  box-shadow: var(--vgb-shadow);
}

main section {
  scroll-margin-top: 5rem;
}

.vgb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 18, 32, 0.92) 0%, rgba(11, 18, 32, 0.45) 45%, rgba(11, 18, 32, 0.2) 100%);
  pointer-events: none;
}

.vgb-hero-content {
  position: relative;
  z-index: 1;
}

.vgb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.vgb-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.vgb-hero p.lead {
  color: rgba(226, 232, 240, 0.92);
  max-width: 34rem;
}

.vgb-btn-primary {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--vgb-accent), var(--vgb-accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.vgb-btn-primary:hover {
  filter: brightness(1.05);
  color: #fff;
}

.vgb-btn-primary:focus-visible,
.vgb-btn-ghost:focus-visible,
.vgb-btn-cart:focus-visible {
  outline: 2px solid var(--vgb-accent-2);
  outline-offset: 3px;
}

.vgb-btn-ghost {
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.vgb-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.vgb-section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.vgb-card-product {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--vgb-radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.vgb-card-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--vgb-shadow);
}

.vgb-card-product:focus-within {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.vgb-card-product img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.vgb-price {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--vgb-accent);
}

.vgb-feature {
  border-radius: var(--vgb-radius);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
  height: 100%;
}

.vgb-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  color: var(--vgb-accent);
  font-size: 1.35rem;
}

.vgb-delivery {
  border-radius: calc(var(--vgb-radius) + 2px);
  background: linear-gradient(135deg, #ffffff, #eef2ff);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.vgb-footer {
  background: var(--vgb-ink);
  color: rgba(248, 250, 252, 0.82);
}

.vgb-footer a {
  color: rgba(248, 250, 252, 0.82);
  text-decoration: none;
}

.vgb-footer a:hover {
  color: #fff;
}

.vgb-footer .vgb-brand {
  color: #fff !important;
}

.vgb-footer .vgb-brand small {
  color: rgba(248, 250, 252, 0.65) !important;
}

.vgb-offcanvas-cart .list-group-item {
  border-color: rgba(15, 23, 42, 0.08);
}

.vgb-qty-input {
  max-width: 4rem;
}

.vgb-toast-success {
  border-left: 4px solid #22c55e;
}

.vgb-toast-info {
  border-left: 4px solid var(--vgb-accent);
}

.vgb-legal {
  max-width: 46rem;
}

.vgb-legal-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vgb-slate);
}

.vgb-legal h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  color: var(--vgb-ink);
}

.vgb-legal h2:first-of-type {
  margin-top: 1.25rem;
}

.vgb-legal p,
.vgb-legal li {
  color: var(--vgb-slate);
}

.vgb-legal ul {
  padding-left: 1.25rem;
}

@media (max-width: 991.98px) {
  .vgb-hero {
    min-height: 26rem;
  }
}
