:root {
  --bg: #f3f5fa;
  --text: #141827;
  --muted: #667085;
  --brand-blue: #303995;
  --brand-red: #df1831;
  --brand-red-dark: #b71327;
  --brand-dark: #111529;
  --card: #ffffff;
  --line: rgba(17, 21, 41, 0.1);
  --ok: #0f7d43;
  --danger: #ad182a;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 12px 32px rgba(23, 29, 55, 0.08);
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background:
    radial-gradient(circle at 92% -10%, rgba(227, 23, 49, 0.17), transparent 45%),
    radial-gradient(circle at -4% 100%, rgba(47, 56, 150, 0.15), transparent 42%),
    linear-gradient(180deg, #f7f9ff 0%, #f1f4fd 44%, #ffffff 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 56, 150, 0.1), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(227, 23, 49, 0.1), transparent 28%),
    linear-gradient(180deg, #f8f9fe 0%, var(--bg) 45%, #ffffff 100%);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  min-height: 100dvh;
  overflow-x: clip;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding: 1rem 0 3rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.6rem 0.75rem;
  z-index: 999;
}

.skip-link:focus {
  left: 0.8rem;
  top: 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(12, 15, 27, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.58rem;
  min-height: 56px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  padding: 4px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 12, 28, 0.24);
}

.brand-wordmark {
  display: grid;
  gap: 0.08rem;
  line-height: 1;
}

.brand-wordmark strong {
  color: #f7f8fc;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-wordmark small {
  color: rgba(241, 245, 255, 0.78);
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-toggle {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.42rem 0.66rem;
  font: inherit;
}

.main-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 0.28rem;
}

.main-nav.is-open {
  display: grid;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  text-decoration: none;
  color: #f7f8fc;
  font-weight: 600;
  padding: 0.48rem 0.62rem;
  border-radius: 10px;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.main-nav a i {
  font-size: 0.9rem;
  opacity: 0.95;
}

.main-nav a span {
  line-height: 1;
}

.phone-cta {
  display: none;
}

.flash {
  width: min(1160px, calc(100% - 2rem));
  margin: 0.8rem auto;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
}

.flash-success {
  color: var(--ok);
  background: #eaf9f0;
  border: 1px solid rgba(15, 125, 67, 0.22);
}

.flash-error {
  color: var(--danger);
  background: #ffedf0;
  border: 1px solid rgba(173, 24, 42, 0.2);
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-grid-final {
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(164deg, rgba(47, 56, 150, 0.98) 0%, rgba(20, 23, 56, 0.95) 70%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(227, 23, 49, 0.24);
  top: -120px;
  right: -70px;
}

.hero-copy h1 {
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: clamp(2.1rem, 7vw, 4rem);
  line-height: 0.95;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: 0.02em;
}

.kicker {
  display: inline-block;
  margin: 0;
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.kicker-hot {
  color: #ffeef0;
  background: rgba(227, 23, 49, 0.35);
}

.lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.8rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.2rem 0.58rem;
}

.hero-lead-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.8rem;
}

.hero-lead-form label {
  color: #f4f7ff;
}

.hero-lead-form input {
  background: rgba(255, 255, 255, 0.95);
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media-final {
  display: grid;
}

.hero-badges {
  display: grid;
  gap: 0.56rem;
  padding: 0.8rem;
  background: linear-gradient(180deg, #fff, #f8f9ff);
}

.hero-badges p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.66rem;
  display: grid;
  gap: 0.2rem;
}

.hero-badges strong {
  color: var(--brand-dark);
}

.hero-badges span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 42px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(227, 23, 49, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-red);
  border-color: rgba(227, 23, 49, 0.35);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-copy .btn-ghost {
  color: #fff;
}

.pulse-cta {
  animation: pulseRing 2.2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(227, 23, 49, 0.32);
  }
  50% {
    box-shadow: 0 16px 30px rgba(227, 23, 49, 0.47);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  animation: revealUp 0.7s ease forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.conversion-strip,
.how-it-works,
.points-objective,
.testimonials,
.insta-box,
.showcase,
.filter-panel,
.product-detail,
.cart-summary,
.checkout-summary,
.auth-card,
.policy,
.success-box,
.contact-grid article {
  margin-top: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.conversion-strip {
  display: grid;
  gap: 0.75rem;
}

.conversion-strip article {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0.7rem;
  background: linear-gradient(180deg, #fff, #fafbff);
}

.conversion-strip h2,
.points-objective h2,
.testimonials h2,
.how-it-works h2,
.showcase h2 {
  margin: 0 0 0.5rem;
  color: var(--brand-dark);
}

.conversion-strip h2 {
  font-size: 1.05rem;
  margin-bottom: 0.22rem;
}

.conversion-strip p,
.points-objective p {
  margin: 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  gap: 0.7rem;
}

.step {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #f8f9ff, #fff);
  padding: 0.7rem;
}

.step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
}

.step h3 {
  margin: 0.45rem 0 0.2rem;
}

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

.testimonials blockquote {
  margin: 0.65rem 0 0;
  border-left: 4px solid var(--brand-red);
  background: #fff3f5;
  border-radius: 10px;
  padding: 0.7rem 0.84rem;
  color: #2d3345;
}

.page-head {
  margin-top: 1rem;
}

.page-head h1 {
  margin: 0;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  color: var(--brand-dark);
}

.page-head p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.lead-form,
.checkout-form,
.filter-form,
.auth-card form,
.admin-form {
  display: grid;
  gap: 0.52rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

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

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 0.62rem 0.72rem;
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  color: inherit;
}

.small-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.72rem;
  display: grid;
  gap: 0.42rem;
}

.product-card a {
  color: inherit;
  text-decoration: none;
}

.product-card h2,
.product-card h3 {
  margin: 0;
  font-size: 1rem;
}

.product-card .btn {
  width: 100%;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: #f5f6fa;
}

.price {
  margin: 0;
  color: var(--brand-red);
  font-weight: 800;
}

.price-old {
  color: #6a7288;
  font-weight: 600;
  text-decoration: line-through;
  font-size: 0.92rem;
}

.promo-line {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  font-size: 0.84rem;
}

.promo-line span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.52rem;
  background: rgba(227, 23, 49, 0.1);
  color: #a31126;
  border: 1px solid rgba(227, 23, 49, 0.24);
  font-weight: 700;
}

.promo-line strong {
  color: var(--brand-red);
}

.promo-card {
  border-color: rgba(227, 23, 49, 0.28);
  background: linear-gradient(168deg, #fff 0%, #fff6f8 100%);
}

.section-headline {
  margin-bottom: 0.7rem;
}

.section-headline h2 {
  margin: 0;
}

.section-headline p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.meta-line,
.stock {
  margin: 0;
  color: var(--muted);
}

.tag-warning {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 0.18rem 0.54rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #7b2800;
  background: #fff0db;
  border: 1px solid #f6d8b0;
}

.product-detail {
  display: grid;
  gap: 1rem;
}

.product-gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.cart-layout,
.checkout-grid,
.auth-grid,
.account-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.cart-items {
  display: grid;
  gap: 0.7rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.54rem;
}

.cart-line img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.qty-wrap input {
  width: 64px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 0.5rem;
}

.site-footer {
  margin-top: 1.8rem;
  background: var(--brand-dark);
  color: #eef0f9;
  border-top: 3px solid var(--brand-red);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 0 1rem;
}

.site-footer h2 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.site-footer p {
  margin: 0.22rem 0;
}

.copyright {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.7rem 1rem 1.3rem;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: #087c3f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 0.92rem;
  box-shadow: 0 10px 22px rgba(10, 57, 28, 0.28);
}

.app-bottom-nav {
  display: none;
}

iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
}

.mt-16 {
  margin-top: 1rem;
}

#points-blocks-wrap {
  border: 1px dashed rgba(47, 56, 150, 0.35);
  border-radius: 12px;
  padding: 0.58rem;
  background: #f6f8ff;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 56, 150, 0.38);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-wordmark strong {
    font-size: 1.08rem;
  }

  .brand-wordmark small {
    font-size: 0.75rem;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: auto;
  }

  .phone-cta {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: var(--brand-red);
    border-radius: 999px;
    padding: 0.42rem 0.92rem;
    font-weight: 700;
  }

  .hero-grid-final {
    grid-template-columns: 1.06fr 0.94fr;
    min-height: 540px;
  }

  .conversion-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cart-layout {
    grid-template-columns: 1.28fr 0.72fr;
  }

  .checkout-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .auth-grid,
  .account-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium polish */
:root {
  --glass: rgba(255, 255, 255, 0.14);
  --hero-shadow: 0 28px 60px rgba(12, 16, 35, 0.25);
}

body {
  background:
    radial-gradient(circle at 92% -10%, rgba(227, 23, 49, 0.17), transparent 45%),
    radial-gradient(circle at -4% 100%, rgba(47, 56, 150, 0.15), transparent 42%),
    linear-gradient(180deg, #f7f9ff 0%, #f1f4fd 44%, #ffffff 100%);
}

.promo-ribbon {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(90deg, rgba(227, 23, 49, 0.22), rgba(47, 56, 150, 0.22));
}

.promo-ribbon-inner {
  min-height: 34px;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  color: #f8fbff;
  font-size: 0.86rem;
}

.promo-ribbon-inner p {
  margin: 0;
}

.promo-ribbon-inner a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  background:
    linear-gradient(120deg, rgba(9, 12, 26, 0.92), rgba(14, 18, 42, 0.9)),
    rgba(11, 15, 30, 0.92);
}

.main-nav a {
  transition: background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.hero-section-premium {
  position: relative;
}

.hero-copy {
  box-shadow: var(--hero-shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -16% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 64%);
  pointer-events: none;
}

.hero-offer {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 0.6rem 0.72rem;
  margin-bottom: 0.9rem;
  background: var(--glass);
}

.hero-offer p {
  margin: 0;
  color: #edf1ff;
}

.live-proof {
  margin: 0.8rem 0 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(9, 12, 26, 0.25);
  padding: 0.32rem 0.68rem;
  width: fit-content;
  color: #f3f6ff;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-media {
  box-shadow: var(--hero-shadow);
}

.hero-badges p {
  background: linear-gradient(150deg, #ffffff, #f5f7ff);
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(227, 23, 49, 0.36);
}

.conversion-strip article,
.step,
.persuasion-card {
  position: relative;
  overflow: hidden;
}

.conversion-strip article::before,
.step::before,
.persuasion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(227, 23, 49, 0.05), transparent 45%, rgba(47, 56, 150, 0.05));
  pointer-events: none;
}

.persuasion-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.persuasion-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
}

.persuasion-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  color: var(--brand-dark);
}

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

.final-cta {
  margin-top: 1rem;
  border: 1px solid rgba(47, 56, 150, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #141b47, #2b327d);
  color: #fff;
  padding: 1rem;
  box-shadow: var(--hero-shadow);
}

.final-cta h2 {
  margin: 0 0 0.3rem;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta .hero-ctas {
  margin-top: 0.8rem;
}

.checkout-summary {
  position: sticky;
  top: 102px;
  align-self: start;
}

.checkout-urgency {
  border: 1px solid rgba(227, 23, 49, 0.22);
  background: #fff4f6;
  border-radius: 12px;
  padding: 0.62rem 0.7rem;
  margin-bottom: 0.72rem;
}

.checkout-urgency p {
  margin: 0;
  color: #2d3445;
}

.checkout-urgency strong {
  color: #9f1124;
}

.checkout-bump {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border: 1px solid rgba(47, 56, 150, 0.22);
  border-radius: 12px;
  background: #f6f8ff;
  padding: 0.66rem 0.72rem;
}

.checkout-bump small {
  color: var(--muted);
  display: block;
  margin-top: 0.2rem;
  font-size: 0.86rem;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.checkout-addons {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.addons-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  min-height: 168px;
  perspective: 1000px;
}

.addons-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(47, 56, 150, 0.34);
  background: #fff;
  color: var(--brand-blue);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.addon-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.24rem;
  padding: 0.48rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.addon-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.addon-card h3 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.2;
}

.addon-card p {
  margin: 0;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.85rem;
}

.addon-card .addon-price-old {
  color: #6c7389;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.74rem;
}

.addon-card.is-center {
  border-color: rgba(227, 23, 49, 0.45);
  box-shadow: 0 10px 18px rgba(227, 23, 49, 0.14);
  transform: translateY(-2px) scale(1.02);
}

.addon-card.is-side {
  opacity: 0.72;
  border-style: dashed;
}

.addons-track.spin-out-left .addon-card {
  animation: addonSpinOutLeft 160ms ease both;
}

.addons-track.spin-out-right .addon-card {
  animation: addonSpinOutRight 160ms ease both;
}

.addons-track.spin-in-left .addon-card {
  animation: addonSpinInLeft 220ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.addons-track.spin-in-right .addon-card {
  animation: addonSpinInRight 220ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes addonSpinOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
  to {
    opacity: 0.45;
    transform: translateX(-14px) rotateY(-20deg) scale(0.95);
  }
}

@keyframes addonSpinOutRight {
  from {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
  to {
    opacity: 0.45;
    transform: translateX(14px) rotateY(20deg) scale(0.95);
  }
}

@keyframes addonSpinInLeft {
  from {
    opacity: 0.4;
    transform: translateX(14px) rotateY(22deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}

@keyframes addonSpinInRight {
  from {
    opacity: 0.4;
    transform: translateX(-14px) rotateY(-22deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1);
  }
}

.coupon-ok {
  color: #0f7d43;
}

.coupon-error {
  color: #ad182a;
}

.checkout-progress {
  margin-top: 0.72rem;
  border-top: 1px solid var(--line);
  padding-top: 0.72rem;
}

.summary-addon-line {
  color: var(--muted);
  font-size: 0.9rem;
}

.progress-track {
  margin-top: 0.4rem;
  height: 8px;
  border-radius: 999px;
  background: #e6eaf8;
  overflow: hidden;
}

#delivery-progress-bar {
  width: 0%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #2f3896, #e31731);
  transition: width 0.25s ease;
}

.testimonials blockquote {
  font-size: 1rem;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(120deg, #0f142a, #121831);
}

.floating-whatsapp {
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.cart-toast-stack {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 140;
  display: grid;
  gap: 0.5rem;
  width: min(360px, calc(100% - 1rem));
}

.cart-toast {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(47, 56, 150, 0.24);
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
  box-shadow: 0 16px 30px rgba(11, 16, 36, 0.2);
  padding: 0.7rem 2.2rem 0.9rem 0.82rem;
  opacity: 0;
  transform: translateX(24px);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.cart-toast.is-leaving {
  opacity: 0;
  transform: translateX(22px);
}

.cart-toast p {
  margin: 0;
  color: #1c2234;
  font-weight: 600;
}

.cart-toast-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #1f2433;
  cursor: pointer;
  padding: 0;
}

.cart-toast-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #e31731, #2f3896);
  transform-origin: left center;
  animation: toastProgress 3.6s linear forwards;
}

@keyframes toastProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.exit-modal[hidden] {
  display: none;
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 24, 0.68);
}

.exit-modal-card {
  position: relative;
  width: min(560px, calc(100% - 1.6rem));
  margin: 11vh auto 0;
  border-radius: 20px;
  border: 1px solid rgba(47, 56, 150, 0.2);
  background: #fff;
  box-shadow: var(--hero-shadow);
  padding: 1rem;
}

.exit-modal-card h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.4rem, 4vw, 1.95rem);
}

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

.exit-modal-card .btn-ghost {
  color: var(--brand-blue);
  border-color: rgba(47, 56, 150, 0.32);
}

.exit-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.post-purchase-form {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.post-purchase-form textarea {
  min-height: 84px;
}

@media (min-width: 760px) {
  .promo-ribbon-inner {
    font-size: 0.9rem;
  }

  .persuasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
