:root {
  --bg: #0b0b0f;
  --card: #12121a;
  --card-strong: #171722;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --accent: #6ee7b7;
  --accent-2: #60a5fa;
  --border: #1f2937;
  --danger: #f87171;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, #111827, #0b0b0f 45%),
    radial-gradient(circle at 80% 0%, #0b253a, #0b0b0f 40%);
  color: var(--text);
  padding: 0 24px 48px;
}

.cart-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.9), rgba(34, 211, 238, 0.9));
  color: #0b0b0f;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.cart-fab__icon {
  line-height: 1;
}

.cart-fab__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #0b0b0f;
  color: var(--text);
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid rgba(52, 211, 153, 0.9);
}

.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 20;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.whatsapp-fab__icon {
  display: block;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0px 0 0px;
}

.hero__brand {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
}

.hero__logo {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

.hero__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 8px;
}

.hero__content .lede {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 16px;
}

.hero__card {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero__card h2 {
  margin: 8px 0 12px;
}

.hero__card ul {
  padding: 0 0 0 18px;
  margin: 0 0 12px;
  color: var(--muted);
}

.hero__payment {
  background: rgba(96, 165, 250, 0.1);
  color: #bfdbfe;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 12px;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 8px;
}

.lede {
  color: var(--muted);
}

.filter {
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

select, input {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 183, 0.5);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.35), rgba(110, 231, 183, 0.35));
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card h3 {
  margin: 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price strong {
  font-size: 20px;
}

.price small {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(110, 231, 183, 0.12);
  color: #a7f3d0;
  border: 1px solid rgba(110, 231, 183, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.badge.soft {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-color: var(--border);
  font-weight: 600;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(90deg, #34d399, #22d3ee);
  color: #0b0b0f;
  border: none;
}

.btn.ghost {
  border-color: var(--border);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.qty-input {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-input input {
  width: 70px;
}

.cart {
  background: rgba(17, 24, 39, 0.6);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.buyer-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.buyer-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
}

.cart-empty {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
}

.cart-rows.hidden {
  display: none;
}

.cart-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 32px;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.cart-row.heading {
  color: var(--muted);
  font-weight: 600;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}

.summary-total h3 {
  margin: 6px 0;
}

.note {
  color: var(--muted);
}

.error {
  color: var(--danger);
  margin: 8px 0 0;
}

.wholesale {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.wholesale__card {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.16), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 20px;
  border-radius: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.contact .icon {
  font-size: 20px;
}

.label {
  margin: 0;
  font-weight: 700;
}

.hidden {
  display: none;
}

.footer {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.footer__instagram:hover,
.footer__instagram:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.footer__instagram:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.footer__instagram-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .hero {
    padding-top: 28px;
  }

  .hero__body {
    grid-template-columns: 1fr;
  }

  .wholesale {
    grid-template-columns: 1fr;
  }
}
