/* Réplica limpa — sem trackers. Tipografia e cores alinhadas ao bundle original (Tailwind/shadcn). */

:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #737373;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --gold: hsl(45 95% 55%);
  --gold-text: hsl(45 95% 60%);
  --cta-from: hsl(354 85% 48%);
  --cta-to: hsl(354 85% 38%);
  --cta-shadow: 0 20px 50px -12px hsl(354 85% 40% / 0.7);
  --overlay-hero: linear-gradient(
    135deg,
    hsl(354 85% 30% / 0.75) 0%,
    hsl(0 0% 0% / 0.55) 45%,
    hsl(140 65% 18% / 0.7) 100%
  );
  --overlay-bottom: linear-gradient(to bottom, transparent 0%, hsl(0 0% 0% / 0.55) 55%, hsl(0 0% 0% / 0.95) 100%);
  --radius: 12px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

/* Views */
.view {
  display: none;
  min-height: 100dvh;
}

.view--active {
  display: flex;
}

.hero.view--active {
  flex-direction: column;
}

/* ——— Landing ——— */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #1a0508;
  background-image: url("images/Background.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.hero__header,
.hero__main,
.hero__footer {
  position: relative;
  z-index: 2;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 0;
}

@media (min-width: 640px) {
  .hero__header {
    padding: 2rem 1.5rem 0;
  }
}

.hero__logo-img {
  display: block;
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

@media (min-width: 640px) {
  .hero__logo-img {
    height: 2.25rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .hero__badge {
    font-size: 11px;
  }
}

.hero__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}

.hero__spacer {
  flex: 1;
  min-height: 0.5rem;
}

.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem 2.5rem;
}

@media (min-width: 640px) {
  .hero__main {
    padding: 0 1.5rem 3rem;
  }
}

.hero__edition {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__gold-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero__edition-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-text);
}

@media (min-width: 640px) {
  .hero__edition-label {
    font-size: 11px;
  }
}

.hero__title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 22rem;
}

@media (min-width: 640px) {
  .hero__title {
    max-width: 36rem;
  }
}

.hero__divider {
  margin-top: 1rem;
  width: 5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero__lead {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .hero__lead {
    font-size: 1rem;
  }
}

.btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  font-weight: 700;
}

.btn--cta {
  margin-top: 1.75rem;
  width: 100%;
  max-width: 22rem;
  height: 3.5rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  box-shadow: var(--cta-shadow);
  transition: opacity 0.2s ease;
}

.btn--cta:hover {
  opacity: 0.95;
}

.hero__meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
  .hero__meta {
    font-size: 11px;
  }
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero__footer {
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  text-align: center;
}

/* ——— Quiz ——— */
.quiz {
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

.quiz__header {
  flex-shrink: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.quiz__header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.65rem 1rem 0.5rem;
}

.quiz__header-spacer {
  width: 2.5rem;
  flex-shrink: 0;
}

.quiz__header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 1.65rem;
  width: auto;
  display: block;
}

@media (min-width: 640px) {
  .quiz__header-logo {
    height: 1.85rem;
  }
}

.quiz__counter {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  min-width: 2.5rem;
  text-align: right;
}

.quiz__progress-wrap {
  padding: 0 1rem 0.85rem;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.quiz__progress {
  height: 4px;
  border-radius: 999px;
  background: #e8e8e8;
  overflow: hidden;
}

.quiz__progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: #000;
  transition: width 0.35s ease-out;
}

.quiz__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  max-width: 36rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem 1.5rem;
}

@media (min-width: 640px) {
  .quiz__body {
    padding: 1rem 1.5rem 2rem;
  }
}

.quiz__step {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.quiz__question {
  margin: 0.375rem 0 0;
  font-size: clamp(1.125rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.quiz__visual {
  margin-top: 0.75rem;
  flex: 1;
  min-height: 160px;
  max-height: 32vh;
  border-radius: 14px;
  background: #f3f4f6;
  overflow: hidden;
}

@media (min-width: 640px) {
  .quiz__visual {
    max-height: none;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
}

.quiz__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz__answers {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .quiz__answers {
    margin-top: 1rem;
    gap: 0.65rem;
  }
}

.quiz__option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: var(--fg);
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

@media (min-width: 640px) {
  .quiz__option {
    font-size: 1rem;
    padding: 1rem 1.1rem;
  }
}

.quiz__option:hover {
  border-color: #d1d5db;
}

.quiz__option:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

.quiz__option.is-selected {
  border-width: 2px;
  border-color: #374151;
  padding: calc(0.85rem - 1px) calc(1rem - 1px);
}

@media (min-width: 640px) {
  .quiz__option.is-selected {
    padding: calc(1rem - 1px) calc(1.1rem - 1px);
  }
}

.quiz__option-num {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #eef2f6;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

@media (min-width: 640px) {
  .quiz__option-num {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.875rem;
  }
}

/* ——— Loading ——— */
.loading {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.loading__inner {
  width: 100%;
  max-width: 22rem;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading__logo {
  display: block;
  height: 2.25rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.loading__bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #f3f4f6;
  overflow: hidden;
}

.loading__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: #000;
  transition: width 0.4s cubic-bezier(0.33, 0, 0.15, 1);
  will-change: width;
}

.loading__text {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}

/* ——— Parabéns ——— */
.congrats {
  position: relative;
  flex-direction: column;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
}

.congrats__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("images/gallery/slide-01.png");
  background-size: cover;
  background-position: center top;
  transform: scale(1.03);
}

.congrats__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 40, 20, 0.88) 45%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(ellipse 90% 70% at 50% 120%, rgba(0, 151, 57, 0.35), transparent 55%);
}

.congrats__watermark {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: clamp(3.5rem, 16vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.congrats__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -120px 100px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 2;
}

.congrats__confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.congrats__header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0;
}

@media (min-width: 640px) {
  .congrats__header {
    padding: 1.75rem 2rem 0;
    max-width: 32rem;
    margin: 0 auto;
    width: 100%;
  }
}

.congrats__logo {
  display: block;
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.congrats__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.congrats__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s ease-in-out infinite;
}

.congrats__main {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  max-width: 26rem;
  margin: 0 auto;
  width: 100%;
}

.congrats__edition {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.congrats__gold-line {
  width: 1.75rem;
  height: 1px;
  background: hsl(48 95% 58%);
}

.congrats__edition-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: hsl(48 90% 62%);
}

.congrats__title {
  margin: 0;
  font-size: clamp(2.35rem, 10vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.congrats__title-line {
  display: block;
}

.congrats__title-accent {
  display: block;
  color: hsl(48 95% 58%);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.congrats__lead {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 22rem;
}

.congrats__highlight {
  color: hsl(48 95% 58%);
  font-weight: 800;
}

.congrats__status {
  margin: 1rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.congrats__gift {
  font-size: 1rem;
  line-height: 1;
}

.congrats__cta {
  margin-top: 1.75rem;
  width: 100%;
  max-width: 22rem;
  min-height: 3.35rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.congrats__cta:hover {
  filter: brightness(1.06);
}

.congrats__cta:active {
  transform: scale(0.98);
}

.congrats__footer {
  position: relative;
  z-index: 4;
  padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
  text-align: center;
}

.congrats__refazer {
  background: none;
  border: none;
  font: inherit;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.congrats__refazer:hover {
  color: #fff;
}

/* Catálogo: ver store.css */

.btn--ghost {
  margin-top: 0.75rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  height: 2.75rem;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn--ghost:hover {
  border-color: rgba(0, 0, 0, 0.45);
}

/* ——— Cabeçalho loja (catálogo / PDP) ——— */
.store-head {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.store-head__icon {
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-head__logo {
  height: 1.45rem;
  width: auto;
  display: block;
}

.store-head__title {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-head__ghost {
  width: 2.75rem;
  flex-shrink: 0;
}

.store-head__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.store-head__cart-label {
  display: none;
}

@media (min-width: 480px) {
  .store-head__cart-label {
    display: inline;
  }
}

.store-head__cart-n {
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 4px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PDP: ver store.css */

/* ——— Checkout ——— */
.checkout {
  flex-direction: column;
  background: #fafafa;
  min-height: 100dvh;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.checkout__wrap {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 1rem 2rem;
}

.checkout__step-label {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout__bar {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.checkout__bar-fill {
  height: 100%;
  width: 20%;
  background: #000;
  border-radius: inherit;
  transition: width 0.35s ease;
}

.checkout__form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.checkout__h {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

.checkout__hint {
  margin: 0.35rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.checkout__lbl {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.checkout__input {
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  color: var(--fg);
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
}

.checkout__input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.15);
  outline-offset: 2px;
}

.checkout__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout__order-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.checkout__order-cap {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.checkout__order-line {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.checkout__choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-choice {
  cursor: pointer;
  display: block;
}

.checkout-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-choice__box {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.checkout-choice input:checked + .checkout-choice__box {
  border-color: #000;
  border-width: 2px;
  padding: calc(0.85rem - 1px) calc(1rem - 1px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.checkout-choice__name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.checkout-choice__meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.checkout__mbway {
  margin-top: 1rem;
}

.checkout__fine {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #b91c1c;
}

.checkout__summary-block {
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 1rem;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  white-space: pre-wrap;
}

.checkout__secure {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.checkout__err {
  margin: 0 0 0.75rem;
  padding: 0.65rem;
  border-radius: 8px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 0.8125rem;
  font-weight: 600;
}

.checkout__err--ok {
  background: #ecfdf5;
  color: #065f46;
}

.checkout__next {
  width: 100%;
  margin-top: 1rem;
  height: 3rem;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout__next:hover {
  opacity: 0.92;
}

.checkout-pane[hidden] {
  display: none !important;
}

/* ——— Botões utilitários + Modal ——— */
.btn--outline-dark {
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog__footer .btn--outline-dark {
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--fg);
}

.btn--primary {
  background: var(--fg);
  color: #fff;
}

.btn--block {
  width: 100%;
  margin-top: 1rem;
  height: 3rem;
  border-radius: 999px;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-quiet {
  background: none;
  border: none;
  font: inherit;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.link-quiet--dark {
  margin-top: 1rem;
  color: var(--muted);
}

.modal {
  width: calc(100% - 2rem);
  max-width: 28rem;
  border: none;
  border-radius: 16px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal__panel {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.modal__head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

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

.modal__body {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #262626;
}

.modal__hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

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

.size-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.cart-empty {
  text-align: center;
  padding: 1rem 0;
}

.cart-empty p {
  margin: 0;
  font-weight: 700;
}

.cart-empty__sub {
  margin-top: 0.35rem !important;
  font-weight: 400 !important;
  font-size: 0.875rem;
  color: var(--muted);
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.cart-list__main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cart-list__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
