:root {
  color-scheme: dark;
  --bg: #090604;
  --panel: rgba(19, 14, 11, 0.78);
  --panel-strong: rgba(28, 20, 16, 0.92);
  --card: rgba(31, 22, 17, 0.54);
  --card-soft: rgba(24, 16, 13, 0.42);
  --line: rgba(255, 222, 184, 0.11);
  --line-strong: rgba(248, 197, 144, 0.28);
  --text: #fff3e6;
  --muted: #c6b8a8;
  --subtle: #8f8175;
  --blue: #f2b577;
  --mint: #f7c48e;
  --violet: #d7a985;
  --amber: #f0c36d;
  --danger: #ff967c;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  --glass: rgba(31, 22, 17, 0.52);
  --glass-strong: rgba(45, 31, 23, 0.68);
  --glass-highlight: rgba(255, 245, 230, 0.08);
  --radius: 8px;
  --card-radius: 22px;
  --sheet-radius: 24px;
  --app-width: min(1100px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 18% -10%, rgba(255, 216, 178, 0.07), transparent 34rem),
    radial-gradient(ellipse at 92% 8%, rgba(121, 76, 42, 0.18), transparent 30rem),
    linear-gradient(160deg, rgba(246, 201, 155, 0.055), transparent 30rem),
    linear-gradient(340deg, rgba(87, 51, 30, 0.24), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.sheet-open {
  overflow: hidden;
}

body.sheet-open .page {
  filter: blur(1.5px);
  transform: scale(0.998);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(137, 206, 255, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--blue);
  color: #071018;
  font-weight: 850;
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.page {
  width: var(--app-width);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 0 28px;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.brand-block {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 245, 230, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(246, 201, 155, 0.22), rgba(70, 39, 23, 0.18)),
    #160f0b;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(246, 201, 155, 0.06),
    inset 0 1px 0 rgba(255, 245, 230, 0.1);
  object-fit: cover;
}

.brand-block strong,
.brand-block small {
  display: block;
}

.brand-block strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-block small {
  color: var(--muted);
  font-size: 0.78rem;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  border: 1px solid rgba(255, 233, 201, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(0, 0, 0, 0.16);
  padding: 3px;
}

.language-switcher button {
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 950;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.language-switcher button.is-active {
  background: linear-gradient(135deg, rgba(255, 226, 191, 0.95), rgba(243, 173, 120, 0.92));
  color: #1b1009;
  box-shadow: 0 6px 14px rgba(243, 173, 120, 0.18);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(246, 201, 155, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 218, 178, 0.08), rgba(255, 236, 207, 0.03)),
    rgba(246, 201, 155, 0.06);
  color: #ffe4bf;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 11px;
  white-space: nowrap;
}

.status-pill strong {
  font-size: inherit;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(246, 201, 155, 0.12);
}

.tab-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 6px 0 16px;
}

.tab-row a,
.tab-row button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.tab-row a:hover,
.tab-row button:hover {
  border-color: rgba(246, 201, 155, 0.28);
  color: var(--text);
}

.tab-row a:active,
.tab-row button:active {
  transform: translateY(1px) scale(0.98);
}

.hero-card,
.product-card {
  border: 1px solid rgba(255, 222, 184, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 238, 214, 0.065), rgba(93, 57, 35, 0.08) 42%, rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    0 8px 20px rgba(85, 43, 20, 0.18),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(1.16);
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  overflow: hidden;
  padding: 20px;
  min-height: 198px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.075), transparent 28%),
    linear-gradient(280deg, rgba(255, 205, 156, 0.075), transparent 48%);
  opacity: 0.62;
  pointer-events: none;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 10px;
  font-size: 2.05rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-card p:not(.section-kicker) {
  max-width: 30ch;
  margin-bottom: 14px;
  color: #d8deea;
  font-size: 0.9rem;
}

.hero-visual {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 1;
  width: min(58%, 300px);
  height: 150px;
  overflow: hidden;
  border: 1px solid rgba(255, 233, 201, 0.13);
  border-radius: 22px;
  background: #140e0b;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg) translateY(16px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 6, 4, 0.92), rgba(9, 6, 4, 0.28) 46%, rgba(9, 6, 4, 0.12)),
    linear-gradient(180deg, transparent, rgba(9, 6, 4, 0.46));
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.04);
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
  z-index: 1;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  padding: 11px 16px;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 230, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

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

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  filter: saturate(0.7);
  box-shadow: none;
  transform: none;
}

.button::after,
.tab-row a::after,
.tab-row button::after,
.icon-button::after,
.product-card::after,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  left: var(--tap-x, 50%);
  top: var(--tap-y, 50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 231, 199, 0.46), rgba(255, 231, 199, 0));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
}

.button.is-tapping::after,
.tab-row a.is-tapping::after,
.tab-row button.is-tapping::after,
.icon-button.is-tapping::after,
.product-card.is-tapping::after,
.floating-whatsapp.is-tapping::after {
  animation: tap-ripple 460ms ease-out;
}

@keyframes tap-ripple {
  0% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.4);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(14);
  }
}

.button-primary {
  background: linear-gradient(135deg, #ffe2bf, #f3ad78);
  color: #1b1009;
  box-shadow:
    0 12px 28px rgba(243, 173, 120, 0.26),
    0 2px 0 rgba(89, 43, 15, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -10px 18px rgba(161, 83, 38, 0.14);
}

.button-secondary {
  border: 1px solid rgba(255, 233, 201, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 244, 224, 0.06);
  color: var(--text);
}

.button-whatsapp {
  background: linear-gradient(135deg, #ffd9ad, #f8b275);
  color: #1b1009;
}

.button-apply {
  border: 1px solid rgba(145, 226, 151, 0.36);
  background: linear-gradient(135deg, #d9ffd9, #65c46f);
  color: #07170a;
  box-shadow:
    0 12px 24px rgba(74, 181, 86, 0.24),
    0 2px 0 rgba(16, 85, 25, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -10px 18px rgba(20, 103, 31, 0.12);
}

.section {
  padding: 24px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

#products .section-heading {
  max-width: 340px;
  margin-inline: auto;
}

.product-list {
  display: grid;
  gap: 10px;
  max-width: 340px;
  margin-inline: auto;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 9px;
  overflow: hidden;
  border-radius: var(--card-radius);
  padding: 8px;
  color: inherit;
  text-align: left;
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.42),
    0 9px 24px rgba(76, 38, 18, 0.28),
    inset 0 1px 0 rgba(255, 245, 230, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(0) scale(1);
  transform-style: preserve-3d;
  transition:
    transform 180ms cubic-bezier(0.2, 0.9, 0.25, 1),
    box-shadow 180ms ease,
    border-color 180ms ease,
    filter 180ms ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px) rotateX(1.3deg) scale(1.01);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.48),
    0 14px 28px rgba(100, 52, 25, 0.34),
    0 0 0 1px rgba(246, 201, 155, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-card:active {
  transform: translateY(2px) scale(0.976);
  filter: brightness(0.98);
}

.product-card.is-pressing {
  transform: translateY(2px) scale(0.972);
  border-color: rgba(255, 224, 188, 0.5);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    0 0 0 5px rgba(246, 201, 155, 0.08),
    inset 0 1px 0 rgba(255, 245, 230, 0.1);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.075), transparent 31%),
    linear-gradient(285deg, rgba(246, 201, 155, 0.075), transparent 42%);
  opacity: 0.58;
}

.product-art {
  position: relative;
  display: block;
  height: 132px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(137, 206, 255, 0.72), rgba(112, 226, 161, 0.22)),
    #141b27;
}

.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.012);
  transition: transform 220ms ease;
}

.product-card:hover .product-art img {
  transform: scale(1.04);
}

.product-meta,
.product-topline,
.product-bottom {
  display: flex;
}

.product-meta {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 0 5px 6px;
}

.product-topline,
.product-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-category {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-status {
  border: 1px solid rgba(243, 201, 105, 0.28);
  border-radius: 999px;
  background: rgba(243, 201, 105, 0.12);
  color: #ffe0a0;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 8px;
}

.product-meta strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.18;
}

.product-desc {
  color: var(--muted);
  font-size: 0.8rem;
}

.product-head-note {
  width: fit-content;
  border: 1px solid rgba(246, 201, 155, 0.2);
  border-radius: 999px;
  background: rgba(246, 201, 155, 0.09);
  color: #ffe0bd;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 8px;
}

.product-benefits {
  display: grid;
  gap: 5px;
  margin: 3px 0 1px;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e8ded1;
  font-size: 0.75rem;
  line-height: 1.25;
}

.product-benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(246, 201, 155, 0.09);
}

.product-price {
  color: #ffe3bd;
  font-size: 1.08rem;
  font-weight: 950;
  text-shadow:
    0 0 18px rgba(246, 201, 155, 0.34),
    0 2px 0 rgba(0, 0, 0, 0.28);
}

.product-arrow {
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 900;
}

.sheet-layer[hidden],
.bottom-sheet[hidden] {
  display: none;
}

.sheet-layer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end center;
  padding: 0;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 4, 2, 0.34);
  backdrop-filter: blur(3px);
}

.bottom-sheet {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 420px);
  max-height: 72vh;
  overflow: auto;
  border: 1px solid rgba(255, 224, 188, 0.13);
  border-radius: var(--sheet-radius) var(--sheet-radius) 0 0;
  background:
    linear-gradient(160deg, rgba(255, 238, 214, 0.06), rgba(103, 68, 43, 0.07) 44%, rgba(255, 255, 255, 0.025)),
    rgba(16, 12, 10, 0.92);
  box-shadow:
    0 -18px 48px rgba(0, 0, 0, 0.44),
    0 24px 72px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 245, 230, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(1.08);
  padding: 13px 14px 16px;
  animation: sheet-in 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.bottom-sheet::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 72px;
  border-radius: calc(var(--sheet-radius) - 2px) calc(var(--sheet-radius) - 2px) 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

@keyframes sheet-in {
  from {
    transform: translateY(36px);
    opacity: 0.4;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sheet-handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 245, 230, 0.16);
}

.icon-button {
  position: relative;
  overflow: hidden;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.icon-button:hover {
  border-color: rgba(246, 201, 155, 0.3);
  background: rgba(255, 244, 224, 0.07);
}

.icon-button:active {
  transform: scale(0.92);
}

.sheet-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.activation-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-right: 34px;
}

.activation-thumb {
  height: 62px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #130d09;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.activation-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activation-warning {
  margin: 12px 0 8px;
  border: 1px solid rgba(246, 201, 155, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 236, 207, 0.07), rgba(255, 236, 207, 0.03)),
    rgba(246, 201, 155, 0.08);
  color: #ffe0bd;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 10px 11px;
}

.trust-note {
  margin: 0;
  color: #f7dec4;
  font-size: 0.8rem;
  font-weight: 850;
}

.activation-details {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.activation-details summary {
  cursor: pointer;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 10px;
}

.activation-details p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0 10px 10px;
}

.understand-check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 10px 11px;
  scroll-margin: 24px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.understand-check input {
  width: 18px;
  height: 18px;
  accent-color: #f3ad78;
}

.understand-check.is-invalid {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.understand-check.is-invalid input {
  outline: 2px solid rgba(255, 119, 96, 0.95);
  outline-offset: 2px;
}

.understand-check.is-invalid span {
  color: #ff9a87;
}

.sheet-description {
  margin: 8px 0 10px;
  color: #d8deea;
  font-size: 0.86rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d8deea;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 5px 8px;
}

.sheet-price-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.sheet-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
}

.sheet-price-row span,
.summary-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.sheet-price-row strong {
  font-size: 1.05rem;
}

.sheet-section {
  margin-top: 11px;
}

.sheet-section h3 {
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.sheet-section p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.clean-list,
.note-list,
.step-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.clean-list,
.note-list {
  list-style: none;
}

.clean-list li,
.note-list li,
.step-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #e9edf5;
  padding: 7px 9px;
  font-size: 0.8rem;
}

.clean-list li::before,
.note-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(112, 226, 161, 0.12);
}

.note-list li::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(243, 201, 105, 0.12);
}

.step-list {
  padding-left: 18px;
}

.step-list li {
  padding-left: 12px;
}

.cta-copy {
  margin: 10px 0 0;
  border: 1px solid rgba(137, 206, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(137, 206, 255, 0.08);
  color: #d9f0ff;
  font-weight: 850;
  padding: 9px;
  font-size: 0.8rem;
}

.sheet-actions {
  position: sticky;
  bottom: -16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px -2px 0;
  padding: 10px 2px 0;
  background: linear-gradient(180deg, rgba(22, 15, 11, 0), rgba(22, 15, 11, 0.96) 28%);
}

.checkout-summary {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  border: 1px solid rgba(255, 233, 201, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 236, 207, 0.07), rgba(84, 49, 30, 0.08) 48%, rgba(255, 255, 255, 0.025)),
    rgba(18, 12, 9, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 230, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.28);
  padding: 9px;
}

.checkout-summary img {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 233, 201, 0.14);
  border-radius: 14px;
  object-fit: cover;
}

.checkout-summary-body {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.checkout-summary strong {
  color: var(--text);
  line-height: 1.16;
}

.summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.summary-badges span,
.price-badge {
  width: fit-content;
  border: 1px solid rgba(246, 201, 155, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 231, 190, 0.18), rgba(246, 201, 155, 0.08)),
    rgba(246, 201, 155, 0.09);
  color: #ffe0bd;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 3px 7px;
}

.checkout-price-wrap {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.price-display {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 213, 168, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 209, 155, 0.085), rgba(83, 48, 28, 0.1)),
    rgba(20, 13, 9, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 230, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(246, 201, 155, 0.07);
  padding: 9px 10px;
}

.price-current {
  background: linear-gradient(135deg, #ffe6bf 0%, #f7b66f 48%, #d98348 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 0 14px rgba(246, 201, 155, 0.22),
    0 2px 0 rgba(0, 0, 0, 0.28);
}

.price-old {
  color: var(--subtle);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 154, 135, 0.88);
}

.promo-form {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.promo-form label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.promo-row input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(255, 233, 201, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 850;
  padding: 10px 13px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.promo-row input::placeholder {
  color: var(--subtle);
}

.promo-row input:focus {
  border-color: rgba(246, 201, 155, 0.48);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(246, 201, 155, 0.12);
}

.promo-row .button {
  min-height: 42px;
  padding-inline: 14px;
}

.promo-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.promo-status[data-state="valid"] {
  color: #c8f0c7;
}

.promo-status[data-state="invalid"] {
  color: #ffb5a6;
}

.qris-loading {
  display: grid;
  place-items: center;
  gap: 8px;
  margin: 12px 0;
  border: 1px solid rgba(255, 233, 201, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 18px 12px;
  text-align: center;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 233, 201, 0.18);
  border-top-color: #ffe2bf;
  border-radius: 50%;
  animation: spin 760ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.qris-card {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  border: 1px dashed rgba(137, 206, 255, 0.36);
  border-radius: var(--radius);
  background: #f8faf4;
  padding: 12px;
  text-align: center;
}

.qris-card img {
  width: min(100%, 206px);
  margin-inline: auto;
  border-radius: var(--radius);
}

.qris-card figcaption {
  color: #4d5a55;
  font-size: 0.76rem;
  font-weight: 850;
}

.checkout-instruction {
  margin-bottom: 0;
  color: #d8deea;
  font-size: 0.86rem;
  font-weight: 850;
}

.promo-popover {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(92vw, 680px);
  min-height: 60px;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.24), transparent 15rem),
    radial-gradient(circle at 88% 10%, rgba(190, 242, 100, 0.14), transparent 13rem),
    linear-gradient(135deg, rgba(91, 33, 182, 0.96), rgba(37, 99, 235, 0.94) 58%, rgba(14, 116, 144, 0.92));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.54),
    0 0 44px rgba(37, 99, 235, 0.32),
    0 0 22px rgba(34, 211, 238, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(18px) saturate(1.18);
  padding: 9px 14px 12px 16px;
  transform: translateX(-50%);
  animation: promo-in 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.promo-popover::before {
  content: "";
  position: absolute;
  inset: 1px 2px auto;
  height: 50%;
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.24), transparent 32%, rgba(125, 211, 252, 0.13) 56%, transparent 78%);
  pointer-events: none;
}

.promo-popover.is-hiding {
  pointer-events: none;
  animation: promo-out 240ms ease forwards;
}

@keyframes promo-in {
  from {
    opacity: 0;
    transform: translate(-50%, -14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes promo-out {
  from {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -12px) scale(0.98);
  }
}

.promo-popover .section-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.28);
  white-space: nowrap;
}

.promo-message {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #eef6ff;
  font-size: 0.92rem;
  font-weight: 900;
  min-width: 0;
}

.promo-code-pill {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #ecfeff, #bef264),
    #d9f99d;
  color: #111827;
  box-shadow:
    0 0 24px rgba(190, 242, 100, 0.34),
    0 6px 16px rgba(15, 23, 42, 0.32),
    0 2px 0 rgba(15, 23, 42, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
  padding: 4px 11px;
  white-space: nowrap;
}

.promo-popover-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-popover-actions .button {
  min-height: 38px;
  padding: 9px 13px;
  white-space: nowrap;
}

.promo-popover-actions .button-primary {
  background: linear-gradient(135deg, #f8fafc, #a7f3d0);
  color: #111827;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.24),
    0 0 22px rgba(34, 211, 238, 0.22),
    0 2px 0 rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -10px 18px rgba(14, 165, 233, 0.12);
}

.promo-timer-bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ecfeff, #67e8f9 42%, #bef264);
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.34);
  transform-origin: left center;
  animation: promo-progress 5000ms linear forwards;
}

@keyframes promo-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 52;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid rgba(125, 220, 135, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, #d6ffd9, #5fc36b);
  color: #06170a;
  box-shadow:
    0 18px 34px rgba(20, 111, 40, 0.22),
    0 8px 26px rgba(0, 0, 0, 0.34);
  font-size: 0.86rem;
  font-weight: 950;
  padding: 10px 15px 10px 12px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.floating-whatsapp:active {
  transform: translateY(1px) scale(0.98);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 24px;
}

body.sheet-open .floating-whatsapp,
body.sheet-open .promo-popover {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 370px) {
  .page {
    width: min(100% - 24px, 1100px);
  }

  .tab-row {
    gap: 5px;
  }

  .tab-row a,
  .tab-row button {
    font-size: 0.72rem;
    padding-inline: 4px;
  }

  .hero-visual {
    opacity: 0.34;
  }

  .status-pill {
    display: none;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .promo-popover {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 9px;
    width: min(420px, calc(100% - 18px));
    min-height: 58px;
    border-radius: 22px;
    padding: 9px 12px 12px;
  }

  .promo-popover .section-kicker {
    grid-column: 1;
    font-size: 0.68rem;
  }

  .promo-message {
    grid-column: 1;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .promo-popover-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .promo-popover-actions .button {
    min-height: 36px;
    padding-inline: 11px;
  }
}

@media (min-width: 720px) {
  .page {
    padding: 24px 0 46px;
  }

  .tab-row {
    grid-template-columns: repeat(3, minmax(104px, 128px));
    justify-content: start;
    margin-bottom: 22px;
  }

  .hero-card {
    min-height: 250px;
    padding: 30px;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.58rem;
  }

  .hero-card p:not(.section-kicker) {
    max-width: 42ch;
  }

  .hero-visual {
    right: 46px;
    bottom: 34px;
    width: 360px;
    height: 188px;
    transform: rotate(-4deg) translateY(24px);
  }

  #products .section-heading,
  .product-list {
    max-width: 390px;
    margin-inline: auto;
  }

  .product-art {
    height: 150px;
  }

  .sheet-layer {
    place-items: center;
    padding: 24px;
  }

  .bottom-sheet {
    width: min(440px, 92vw);
    max-height: 76vh;
    border-radius: var(--sheet-radius);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.48);
    margin: 0;
  }

  .checkout-sheet {
    width: min(420px, 92vw);
  }

  .sheet-actions {
    grid-template-columns: 1fr 0.72fr;
  }

  .checkout-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* top-promo-visible-v2: darker glass calibration after visible localhost verification */
body[data-ui-version="top-promo-visible-v2"] .hero-card,
body[data-ui-version="top-promo-visible-v2"] .product-card,
body[data-ui-version="top-promo-visible-v2"] .bottom-sheet {
  border-color: rgba(255, 218, 178, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 235, 208, 0.07), rgba(91, 55, 35, 0.08) 44%, rgba(255, 255, 255, 0.025)),
    rgba(16, 12, 10, 0.84);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.58),
    0 0 30px rgba(246, 201, 155, 0.07),
    inset 0 1px 0 rgba(255, 245, 230, 0.09),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

body[data-ui-version="top-promo-visible-v2"] .product-card {
  outline: 1px solid rgba(246, 201, 155, 0.08);
}

body[data-ui-version="top-promo-visible-v2"] .product-card:hover,
body[data-ui-version="top-promo-visible-v2"] .product-card.is-pressing {
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.62),
    0 0 0 5px rgba(246, 201, 155, 0.08),
    0 0 30px rgba(246, 201, 155, 0.12),
    inset 0 1px 0 rgba(255, 245, 230, 0.12);
}

body[data-ui-version="top-promo-visible-v2"] .price-display {
  border-color: rgba(255, 219, 177, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 209, 155, 0.1), rgba(83, 48, 28, 0.1)),
    rgba(18, 12, 9, 0.82);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(246, 201, 155, 0.09),
    inset 0 1px 0 rgba(255, 245, 230, 0.09);
  padding: 12px 13px;
}

body[data-ui-version="top-promo-visible-v2"] .price-current {
  font-size: 1.68rem;
  filter: drop-shadow(0 0 9px rgba(246, 201, 155, 0.2));
}

body[data-ui-version="top-promo-visible-v2"] .price-old {
  color: #c4a892;
  font-size: 0.94rem;
}
