:root {
  color-scheme: light;
  --ink: #071220;
  --navy: #061426;
  --navy-2: #0b2038;
  --muted: #5c6878;
  --line: #dde2ea;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --red: #d8232a;
  --red-dark: #a6161c;
  --yellow: #f3c846;
  --blue: #16a7e5;
  --shadow: 0 18px 50px rgba(23, 25, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 14, 26, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  color: white;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 650;
}

.cart-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-nav span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px) 44px;
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 167, 229, 0.2), transparent 26%),
    radial-gradient(circle at 28% 24%, rgba(243, 200, 70, 0.18), transparent 28%),
    linear-gradient(135deg, #061426 0%, #0a1728 45%, #07101d 100%);
  color: white;
}

.hero::after {
  position: absolute;
  inset: auto -12% -28% 46%;
  height: 44%;
  border-radius: 999px;
  background: rgba(216, 35, 42, 0.22);
  filter: blur(70px);
  content: "";
  animation: glowDrift 9s ease-in-out infinite alternate;
}

.energy-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.energy-field span {
  position: absolute;
  width: 180px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--blue), transparent);
  opacity: 0.55;
  filter: drop-shadow(0 0 10px rgba(22, 167, 229, 0.7));
  animation: boltSweep 4.8s linear infinite;
}

.energy-field span:nth-child(1) {
  top: 19%;
  left: -16%;
}

.energy-field span:nth-child(2) {
  top: 56%;
  left: -30%;
  animation-delay: 1.5s;
}

.energy-field span:nth-child(3) {
  top: 78%;
  left: -22%;
  animation-delay: 3s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
  animation: riseIn 700ms ease both;
}

.hero-logo {
  width: min(360px, 74vw);
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
  animation: logoFloat 4.8s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.7vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.hero-copy .eyebrow {
  max-width: 46ch;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 30px 0 26px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button span {
  position: relative;
  z-index: 1;
}

.button::before {
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transition: transform 420ms ease;
}

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

.button:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 24px rgba(216, 35, 42, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.52);
}

.trust-row span {
  border-left: 4px solid var(--yellow);
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 13px 0 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.social-row span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  animation: riseIn 820ms 90ms ease both;
}

.hero-image {
  width: 100%;
  min-height: 420px;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.hero-showcase:hover .hero-image {
  filter: saturate(1.08) contrast(1.03);
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(7, 18, 32, 0.76);
  color: white;
  font-size: 0.85rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(216, 35, 42, 0.7);
  animation: pulse 1.4s ease infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 74px;
  height: 104px;
  border: 3px solid white;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.floating-card::after {
  position: absolute;
  inset: 12px;
  border-radius: 6px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 50% 28% / 34px 7px no-repeat,
    linear-gradient(90deg, var(--red), var(--blue));
  content: "";
}

.floating-card-one {
  right: -16px;
  bottom: 20%;
  transform: rotate(12deg);
  background: #102a47;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-two {
  top: 18%;
  right: 16%;
  transform: rotate(-10deg);
  background: #f4c447;
  animation: floatCard 4.8s 600ms ease-in-out infinite;
}

.section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.strip {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red), #ef8f1f);
  color: white;
}

.ticker {
  display: flex;
  width: 100%;
  white-space: nowrap;
}

.ticker div {
  display: flex;
  min-width: max-content;
  gap: 22px;
  padding: 16px 0;
  animation: tickerMove 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.ticker span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.section .eyebrow {
  color: var(--red);
}

.live-band .eyebrow,
.routine .eyebrow {
  color: var(--yellow);
}

.product-grid,
.channel-grid,
.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-panel {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(22, 167, 229, 0.08), rgba(243, 200, 70, 0.1)),
    white;
  box-shadow: 0 14px 34px rgba(23, 25, 31, 0.06);
}

.catalog-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 800;
}

.search-box {
  display: grid;
  gap: 7px;
}

.search-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.search-box input:focus {
  border-color: rgba(22, 167, 229, 0.7);
  box-shadow: 0 0 0 4px rgba(22, 167, 229, 0.14);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.filter-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 35, 42, 0.38);
}

.filter-chip.is-active {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.product,
.channel,
.steps-grid article,
.faq-list details,
.routine article,
.live-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.product {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(23, 25, 31, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product[data-category="live"] .product-visual {
  background:
    radial-gradient(circle at 68% 28%, rgba(216, 35, 42, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(22, 167, 229, 0.16), rgba(243, 200, 70, 0.2)),
    var(--soft);
}

.product[data-category="kits"] .product-visual {
  background:
    radial-gradient(circle at 34% 28%, rgba(243, 200, 70, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(216, 35, 42, 0.12), rgba(22, 167, 229, 0.14)),
    var(--soft);
}

.product[data-category="acessorios"] .product-visual {
  background:
    radial-gradient(circle at 70% 68%, rgba(22, 167, 229, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(7, 18, 32, 0.08), rgba(243, 200, 70, 0.16)),
    var(--soft);
}

.product::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(22, 167, 229, 0.16), transparent 38%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.product:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 167, 229, 0.42);
  box-shadow: 0 22px 46px rgba(23, 25, 31, 0.14);
}

.product:hover::before {
  opacity: 1;
}

.product-visual {
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(39, 100, 199, 0.14), rgba(243, 200, 70, 0.22)),
    var(--soft);
}

.product-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.product-logo-placeholder {
  display: grid;
  gap: 12px;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.product-logo-placeholder img {
  width: min(160px, 68%);
  filter: drop-shadow(0 14px 22px rgba(7, 18, 32, 0.18));
}

.product-logo-placeholder span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product:hover .product-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.card-stack {
  position: relative;
  width: 94px;
  height: 132px;
}

.card-stack::before,
.card-stack::after,
.card-stack span {
  position: absolute;
  inset: 0;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 28px rgba(23, 25, 31, 0.16);
  content: "";
}

.card-stack::before {
  transform: rotate(-9deg) translate(-12px, 8px);
  background: var(--yellow);
}

.card-stack::after {
  transform: rotate(7deg) translate(12px, 5px);
  background: #dce8ff;
}

.product:hover .card-stack {
  animation: cardWiggle 560ms ease;
}

.card-stack span {
  display: block;
  transform: translateY(-4px);
  background:
    linear-gradient(var(--red), var(--red)) 50% 22% / 48px 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 50% 42% / 62px 8px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 50% 62% / 42px 8px no-repeat,
    white;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(243, 200, 70, 0.18);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-body,
.channel,
.routine article,
.live-card {
  padding: 20px;
}

.product-body p,
.live-band p,
.routine p,
.channel small {
  color: var(--muted);
  line-height: 1.55;
}

.price {
  display: block;
  margin: 18px 0;
  font-size: 1.25rem;
  font-weight: 900;
}

.mini-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 13px;
  background: var(--ink);
  color: white;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.mini-link:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mini-cart {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--yellow);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.mini-cart:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}

.live-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(20px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(243, 200, 70, 0.24), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(22, 167, 229, 0.18), transparent 28%),
    var(--soft);
}

.buy-flow {
  background: var(--ink);
  color: white;
}

.buy-flow .section-heading p:not(.eyebrow),
.buy-flow .steps-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.buy-flow .eyebrow {
  color: var(--yellow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(22, 167, 229, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.steps-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.steps-grid h3 {
  color: white;
}

.live-card {
  position: relative;
  box-shadow: var(--shadow);
  animation: liveLift 3.8s ease-in-out infinite;
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(216, 35, 42, 0.7);
  animation: pulse 1.4s ease infinite;
}

ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.channel {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.channel::after {
  position: absolute;
  top: -38px;
  right: -38px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(243, 200, 70, 0.16);
  content: "";
  transition: transform 220ms ease;
}

.channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.channel:hover::after {
  transform: scale(1.8);
}

.tiktok-channel {
  border-color: rgba(22, 167, 229, 0.38);
  background:
    linear-gradient(135deg, rgba(22, 167, 229, 0.1), transparent 48%),
    white;
}

.channel span {
  color: var(--red);
  font-weight: 900;
}

.channel strong {
  display: block;
  font-size: 1.35rem;
}

.routine {
  background: var(--ink);
  color: white;
}

.routine .eyebrow,
.routine p {
  color: #d9dee8;
}

.routine article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.routine article:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 200, 70, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0d0f14;
  color: white;
}

footer span {
  color: #c9d0dc;
}

.sticky-shop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(7, 18, 32, 0.92);
  color: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.sticky-shop span {
  font-size: 0.9rem;
  font-weight: 800;
}

.sticky-shop a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--soft);
  text-align: center;
}

.empty-state p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 167, 229, 0.2), transparent 26%),
    linear-gradient(135deg, #061426 0%, #0a1728 45%, #07101d 100%);
  color: white;
}

.product-detail-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.product-detail-media img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-detail-placeholder {
  display: grid;
  gap: 14px;
  min-height: 420px;
  place-items: center;
  padding: 36px;
  text-align: center;
}

.product-detail-placeholder img {
  width: min(320px, 74%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.product-detail-placeholder span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-copy {
  max-width: 720px;
}

.product-detail-copy h1 {
  max-width: 13ch;
  margin-bottom: 18px;
}

.product-detail-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.product-detail-copy strong {
  display: block;
  margin: 22px 0 0;
  color: var(--yellow);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 950;
}

.product-detail-loading {
  grid-column: 1 / -1;
  color: white;
  font-weight: 900;
}

.cart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(18px, 4vw, 42px);
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 8%, rgba(22, 167, 229, 0.16), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
}

.cart-panel,
.cart-checkout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.cart-panel {
  padding: clamp(20px, 4vw, 34px);
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--soft);
}

.cart-item img,
.cart-thumb-placeholder {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.cart-thumb-placeholder {
  display: grid;
  place-items: center;
  background: #071220;
}

.cart-thumb-placeholder img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.cart-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cart-item p {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
}

.quantity-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.quantity-controls button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.quantity-controls span {
  min-width: 28px;
  text-align: center;
  font-weight: 900;
}

.cart-checkout {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 24px;
}

.cart-checkout img {
  display: block;
  width: min(180px, 76%);
  margin: 0 auto 18px;
}

.cart-checkout h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cart-checkout p {
  color: var(--muted);
}

.discount-box {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(216, 35, 42, 0.22);
  border-radius: 8px;
  margin: 16px 0;
  padding: 14px;
  background: #fff8dc;
}

.discount-box span,
.discount-box small {
  color: var(--muted);
  font-weight: 750;
}

.discount-box strong {
  color: var(--red);
  font-size: 1.15rem;
}

.checkout-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.clear-cart {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes boltSweep {
  from {
    transform: translateX(0) rotate(-12deg);
  }

  to {
    transform: translateX(145vw) rotate(-12deg);
  }
}

@keyframes glowDrift {
  from {
    transform: translateX(0) scale(1);
  }

  to {
    transform: translateX(-12%) scale(1.18);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 35, 42, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(216, 35, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(216, 35, 42, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes cardWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }

  35% {
    transform: rotate(-4deg) translateY(-4px);
  }

  70% {
    transform: rotate(3deg);
  }
}

@keyframes liveLift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

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

@media (max-width: 980px) {
  .hero,
  .live-band,
  .product-detail-shell,
  .cart-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }

  h1 {
    max-width: 10ch;
  }

  .product-grid,
  .channel-grid,
  .steps-grid,
  .routine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-panel {
    grid-template-columns: 1fr;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .cart-checkout {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .hero-image {
    min-height: 310px;
    transform: none;
  }

  .product-grid,
  .channel-grid,
  .steps-grid,
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .sticky-shop {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: space-between;
  }

  .cart-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .cart-item img,
  .cart-thumb-placeholder {
    width: 86px;
  }
}
