:root {
  /* Avisa o navegador que o site ja tem tema escuro proprio, para que recursos
     como "tema escuro forcado" do Android/Chrome nao tentem reescrever as cores
     (isso causava fundo branco com texto claro/amarelo ilegivel perto do rodape
     em alguns celulares). Mesma pratica usada por grandes sites. */
  color-scheme: dark;
  --bg: #070b12;
  --bg-soft: #0d1320;
  --surface: #101826;
  --surface-2: #151f31;
  --text: #f4f5f8;
  --muted: #a8b0c3;
  --brand: #f1c232;
  --brand-soft: #f8da72;
  --line: rgba(255, 255, 255, 0.12);
  --ok: #8be39f;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 15%, rgba(241, 194, 50, 0.2), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #06090f 0%, #090f1a 45%, #05070b 100%);
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

main,
.topbar,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.ambient-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.ambient-glow-left {
  background: rgba(241, 194, 50, 0.28);
  left: -140px;
  top: 10%;
}

.ambient-glow-right {
  background: rgba(95, 126, 255, 0.2);
  right: -170px;
  top: 32%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 18, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-ring {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: conic-gradient(from 150deg, #fff 0deg, var(--brand) 120deg, #111 280deg, #fff 360deg);
  border: 2px solid #d8dde9;
  box-shadow: inset 0 0 0 3px #0d1119;
}

.brand-text {
  font-size: 1.2rem;
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--text);
}

.cart-pill {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.cart-pill span {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.45rem;
  background: var(--brand);
  color: #111;
  border-radius: 50%;
  font-size: 0.78rem;
}

.topbar-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.62rem 0.3rem 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.topbar-sponsor:hover {
  border-color: rgba(241, 194, 50, 0.5);
  transform: translateY(-1px);
}

.topbar-sponsor-logo {
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.5rem;
  font-weight: 800;
  color: #111;
  background: linear-gradient(145deg, #f6de8a, #f1c232);
}

.topbar-sponsor-text {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.008em;
  white-space: nowrap;
}

.hero {
  margin-top: 3.6rem;
  background: linear-gradient(145deg, rgba(241, 194, 50, 0.15), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  animation: rise-in 0.8s ease forwards;
}

.hero-realistic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(360px, 48vw, 520px);
  display: grid;
  align-items: center;
}

.hero-realistic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(115deg, rgba(3, 6, 12, 0.68), rgba(3, 6, 12, 0.2) 58%, rgba(3, 6, 12, 0.86) 100%),
    url("para o banner.jpeg");
  background-size: 100% 100%, 88% auto;
  background-position: center, center;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.01);
  animation: hero-pan 9s ease-in-out infinite alternate;
}

.hero-realistic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 14%, rgba(241, 194, 50, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.15), rgba(7, 11, 18, 0.62));
}

.hero-content {
  max-width: min(620px, 100%);
  backdrop-filter: blur(2px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-soft);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 1;
  margin: 0;
}

.hero h1 span {
  color: var(--brand);
}

.hero p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #d7a313);
  color: #111;
  box-shadow: 0 12px 24px rgba(241, 194, 50, 0.24);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.category-strip {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-strip article {
  background: linear-gradient(175deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.category-link {
  text-decoration: none;
  color: inherit;
}

.category-link article {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-link:hover article {
  transform: translateY(-3px);
  border-color: rgba(241, 194, 50, 0.6);
}
.home-demo {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
  max-width: 1120px;
  margin-inline: auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(241, 194, 50, 0.15), transparent 35%),
    linear-gradient(140deg, rgba(17, 25, 39, 0.94), rgba(8, 12, 19, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.home-demo-copy {
  padding: clamp(1rem, 2vw, 1.45rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}
.home-demo-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}
.home-demo-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 50ch;
  font-size: 0.92rem;
  line-height: 1.4;
}
.home-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.home-demo-video-shell {
  aspect-ratio: 16 / 9;
  max-height: 250px;
  min-height: 0;
  background: rgba(0, 0, 0, 0.18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
}
.home-demo-video-shell video,
.home-demo-video-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.home-demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}
.home-demo-fallback {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
}

.admin-checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  color: var(--text) !important;
  font-size: 0.95rem !important;
}

.admin-checkbox-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand);
}

.category-strip h2 {
  margin: 0;
}

.category-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.products {
  margin-top: 3rem;
}

.products-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.products h2,
.social-proof h2,
.newsletter h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.filter.active {
  color: #111;
  background: var(--brand);
  border-color: var(--brand);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
}

.product-card {
  background: linear-gradient(180deg, rgba(21, 31, 49, 0.98), rgba(13, 20, 32, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  box-shadow: var(--shadow);
  transform: translateY(14px);
  opacity: 0;
  animation: rise-in 0.55s ease forwards;
}

.product-image-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-image-link:hover .product-image {
  transform: scale(1.04);
}

.product-card:nth-child(2) {
  animation-delay: 0.06s;
}
.product-card:nth-child(3) {
  animation-delay: 0.12s;
}
.product-card:nth-child(4) {
  animation-delay: 0.18s;
}
.product-card:nth-child(5) {
  animation-delay: 0.24s;
}
.product-card:nth-child(6) {
  animation-delay: 0.3s;
}

.product-card h3 {
  margin: 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-stock {
  display: grid;
  gap: 0.18rem;
}

.product-stock-badge {
  width: fit-content;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-stock-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.product-stock--available .product-stock-badge {
  background: rgba(62, 176, 120, 0.16);
  border: 1px solid rgba(62, 176, 120, 0.32);
  color: #b8f0cf;
}

.product-stock--warning .product-stock-badge {
  background: rgba(241, 194, 50, 0.16);
  border: 1px solid rgba(241, 194, 50, 0.34);
  color: #ffe08a;
}

.product-stock--critical .product-stock-badge,
.product-stock--empty .product-stock-badge {
  background: rgba(220, 84, 84, 0.16);
  border: 1px solid rgba(220, 84, 84, 0.3);
  color: #ffb7b7;
}

.product-card .tag {
  width: fit-content;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(241, 194, 50, 0.16);
  color: var(--brand-soft);
  border: 1px solid rgba(241, 194, 50, 0.4);
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
}

.product-card strong {
  color: var(--text);
  font-size: 1.18rem;
}

.add-to-cart {
  border: none;
  border-radius: 10px;
  background: #f4f6fa;
  color: #111;
  font-weight: 700;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.add-to-cart:hover {
  background: var(--brand);
}

.product-link {
  text-decoration: none;
  color: var(--text);
}

.product-link:hover {
  color: var(--brand-soft);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-small {
  padding: 0.52rem 0.72rem;
  font-size: 0.88rem;
}

.page-hero {
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(241, 194, 50, 0.15), rgba(255, 255, 255, 0.04));
  padding: clamp(1.1rem, 4vw, 2rem);
}

.page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-hero p {
  color: var(--muted);
}

.breadcrumb {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--brand-soft);
  text-decoration: none;
}

.detail {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-media,
.detail-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 31, 49, 0.98), rgba(13, 20, 32, 0.96));
}

.detail-media {
  aspect-ratio: 1 / 1;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.detail-media::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(241, 194, 50, 0.35), transparent 60%);
}

.detail-media span {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-image {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}

.detail-video {
  width: calc(100% - 2rem);
  max-height: 260px;
  margin: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  background: #000;
}

.product-video-float {
  position: fixed;
  left: 0.9rem;
  bottom: 1rem;
  width: min(250px, calc(100vw - 1.8rem));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.86);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  padding: 0.45rem;
  z-index: 20;
}

.product-video-float.is-hidden {
  display: none;
}

.product-video-close {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 999px;
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
  margin-left: auto;
  display: grid;
  place-items: center;
}

.product-video-mini {
  width: 100%;
  max-height: 145px;
  border-radius: 8px;
  background: #000;
  margin-top: 0.35rem;
}

.detail-thumbs {
  display: flex;
  gap: 0.45rem;
  width: 100%;
  padding: 0.7rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  background: rgba(7, 11, 18, 0.78);
}

.detail-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: rgba(7, 11, 18, 0.6);
  cursor: pointer;
  flex: 0 0 74px;
  height: 74px;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.detail-thumb.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(241, 194, 50, 0.35);
}

.detail-panel {
  padding: 1.2rem;
}

.detail-panel h2 {
  margin-top: 0;
}

.detail-panel p {
  color: var(--muted);
}

.product-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
  margin-bottom: 0.7rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.7rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(241, 194, 50, 0.95), rgba(215, 163, 19, 0.95));
  color: #111;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(241, 194, 50, 0.22);
}

.rating-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-seals {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  color: #dbe3f7;
}

.trust-seals li {
  margin-bottom: 0.35rem;
}

.detail-price {
  font-size: 1.6rem;
  font-weight: 800;
}

.detail-stock {
  margin: 0.45rem 0 0;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  display: grid;
  gap: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.detail-stock-badge {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-stock-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-stock--available {
  border-color: rgba(62, 176, 120, 0.22);
  background: rgba(62, 176, 120, 0.08);
}

.detail-stock--available .detail-stock-badge {
  color: #b8f0cf;
}

.detail-stock--warning {
  border-color: rgba(241, 194, 50, 0.28);
  background: rgba(241, 194, 50, 0.08);
}

.detail-stock--warning .detail-stock-badge {
  color: #ffe08a;
}

.detail-stock--critical,
.detail-stock--empty {
  border-color: rgba(220, 84, 84, 0.24);
  background: rgba(220, 84, 84, 0.08);
}

.detail-stock--critical .detail-stock-badge,
.detail-stock--empty .detail-stock-badge {
  color: #ffb7b7;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.detail-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.25rem 0 0.75rem;
}

.color-option {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.28rem 0.62rem 0.28rem 0.3rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.color-option-swatch {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--swatch, #999);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.color-option-label {
  line-height: 1;
}

.color-option.is-active {
  border-color: var(--brand);
  color: var(--brand-soft);
  box-shadow: 0 0 0 1px rgba(241, 194, 50, 0.35);
}

.product-reviews {
  margin-top: 1.6rem;
}

.product-about {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 31, 49, 0.98), rgba(13, 20, 32, 0.96));
}

.product-about h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0 0 0.7rem;
}

.product-about p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 0.8rem;
  white-space: pre-line;
}

.product-about p:last-child {
  margin-bottom: 0;
}

.product-reviews h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0 0 0.7rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
}

.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.review-card span {
  color: var(--brand-soft);
  font-weight: 700;
}

.review-card .stars {
  display: inline-flex;
  gap: 0.1rem;
  letter-spacing: 0;
}

.stars .star {
  position: relative;
  display: inline-block;
  color: rgba(241, 194, 50, 0.22);
  line-height: 1;
  transition: transform 0.22s ease, filter 0.22s ease, color 0.22s ease;
  transform-origin: center;
}

.stars .star-full {
  color: var(--brand-soft);
}

.stars .star-half {
  color: rgba(241, 194, 50, 0.22);
}

.stars .star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--brand-soft);
  transition: filter 0.22s ease;
}

.stars .star-empty {
  color: rgba(241, 194, 50, 0.22);
}

.review-card:hover .stars .star-full,
.review-card:hover .stars .star-half,
.product-rating:hover .stars .star-full,
.product-rating:hover .stars .star-half {
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 0 7px rgba(241, 194, 50, 0.35));
}

.review-card:hover .stars .star-half::before,
.product-rating:hover .stars .star-half::before {
  filter: drop-shadow(0 0 7px rgba(241, 194, 50, 0.35));
}

.stars .star:nth-child(1) {
  transition-delay: 0ms;
}

.stars .star:nth-child(2) {
  transition-delay: 20ms;
}

.stars .star:nth-child(3) {
  transition-delay: 40ms;
}

.stars .star:nth-child(4) {
  transition-delay: 60ms;
}

.stars .star:nth-child(5) {
  transition-delay: 80ms;
}

.review-card small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.review-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.review-image {
  display: block;
  margin-top: 0.55rem;
  width: min(220px, 100%);
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-images {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-images .review-image {
  margin-top: 0;
  width: 98px;
  height: 98px;
  max-height: none;
}

.review-form {
  margin-bottom: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.review-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.review-score-picker {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.review-form-stars {
  display: inline-flex;
  gap: 0.3rem;
}

.review-form-star {
  border: none;
  background: transparent;
  color: rgba(241, 194, 50, 0.28);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, color 0.18s ease, filter 0.18s ease;
}

.review-form-star:hover {
  transform: translateY(-1px) scale(1.08);
}

.review-form-star.is-active {
  color: var(--brand-soft);
  filter: drop-shadow(0 0 6px rgba(241, 194, 50, 0.3));
}

.review-form input,
.review-form select,
.review-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.62rem 0.72rem;
}

.review-photo-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.review-photo-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.review-photo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid rgba(241, 194, 50, 0.55);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(241, 194, 50, 0.24), rgba(241, 194, 50, 0.1));
  color: var(--brand-soft);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.48rem 0.72rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.review-photo-button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 194, 50, 0.9);
  box-shadow: 0 8px 18px rgba(241, 194, 50, 0.2);
}

.review-photo-input:focus-visible + .review-photo-button {
  outline: 2px solid rgba(241, 194, 50, 0.8);
  outline-offset: 2px;
}

.review-photo-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 4 10.2 2.8A2 2 0 0 1 11.6 2h.8a2 2 0 0 1 1.4.8L15 4h2a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h2Zm3 4.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm0 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 4 10.2 2.8A2 2 0 0 1 11.6 2h.8a2 2 0 0 1 1.4.8L15 4h2a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h2Zm3 4.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm0 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.review-photo-name {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-layout {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.cart-items,
.cart-summary {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 31, 49, 0.98), rgba(13, 20, 32, 0.96));
  padding: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1.6fr auto auto auto;
  gap: 0.6rem;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 0.75rem 0;
}

.cart-item-main {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item:last-child {
  border-bottom: none;
}

.qty-input {
  width: 4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.36rem;
}

.remove-item {
  border: 1px solid rgba(255, 126, 126, 0.45);
  background: transparent;
  color: #ffb0b0;
  border-radius: 8px;
  padding: 0.34rem 0.5rem;
  cursor: pointer;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.summary-total {
  font-size: 1.2rem;
  font-weight: 800;
}

.coupon-info {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.9rem;
  color: var(--brand-soft);
}

.cart-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.btn-whatsapp {
  background: #2fd56a;
  color: #04240f;
  border: none;
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 0.68rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.empty-state {
  color: var(--muted);
}

.checkout-layout {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 31, 49, 0.98), rgba(13, 20, 32, 0.96));
  padding: 1rem;
}

.checkout-form h2,
.checkout-summary h2 {
  margin-top: 0;
}

.field-row {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.checkout-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.checkout-form input,
.checkout-form select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.65rem 0.7rem;
}

.checkout-note {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 0.6rem 0;
}

.checkout-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.checkout-success h2 {
  margin-top: 0;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.order-history {
  margin-top: 1rem;
}

.history-item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 0.7rem 0;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.history-item:hover {
  background: rgba(241, 194, 50, 0.08);
}

.history-item.is-selected {
  border: 1px solid rgba(241, 194, 50, 0.5);
  background: rgba(241, 194, 50, 0.12);
}

.history-item:focus-visible {
  outline: 2px solid rgba(241, 194, 50, 0.72);
  outline-offset: 2px;
}

.history-item p,
.history-item span {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.order-history-detail {
  margin-top: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
}

.order-history-detail h3 {
  margin: 0 0 0.65rem;
}

.order-history-detail-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.65rem;
}

.order-history-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 0.6rem;
}

.order-history-detail-grid article,
.order-history-products {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.48);
  padding: 0.65rem;
}

.order-history-detail-grid h4,
.order-history-products h4 {
  margin: 0 0 0.4rem;
}

.order-history-detail-grid p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.order-history-products {
  margin-top: 0.65rem;
}

.order-history-products ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.order-history-products li {
  margin: 0.25rem 0;
}

.admin-card {
  margin-top: 1rem;
}

.admin-home-video-settings {
  border: 1px solid rgba(244, 198, 68, 0.75);
  background: linear-gradient(135deg, rgba(244, 198, 68, 0.15), rgba(9, 15, 22, 0.78) 55%);
}

.admin-home-video-settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-home-video-settings h2,
.admin-home-video-settings p {
  margin-top: 0;
}

.admin-home-video-settings-head > div > p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.admin-eyebrow,
.admin-home-video-badge {
  color: #17120a;
  background: #f4c644;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0.28rem 0.45rem;
  text-transform: uppercase;
}

.admin-eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem !important;
}

@media (max-width: 620px) {
  .admin-home-video-settings-head {
    flex-direction: column;
  }
}

.admin-view-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 11, 18, 0.72);
}

.admin-view-nav button {
  min-height: 2.65rem;
  min-width: 9.5rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.admin-view-nav button:hover,
.admin-view-nav button:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.admin-view-nav button.is-active {
  border-color: rgba(255, 203, 74, 0.9);
  background: #f4c644;
  color: #17120a;
  font-weight: 700;
}

@media (max-width: 620px) {
  .admin-view-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-view-nav button {
    width: 100%;
    min-width: 0;
  }
}

.admin-auth {
  margin-top: 1rem;
}

.admin-login-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: end;
}

.admin-login-form label {
  display: grid;
  gap: 0.4rem;
  min-width: min(320px, 100%);
}

.admin-login-form input {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.62rem 0.72rem;
}

#adminAuthMsg {
  display: block;
  margin-top: 0.55rem;
  color: var(--brand-soft);
}

.admin-hint {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.admin-search-row {
  margin-bottom: 0.6rem;
}

.admin-search-row input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.62rem 0.72rem;
}

.admin-product-form {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.admin-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.6rem;
}

.admin-product-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.62rem 0.72rem;
}

.admin-upload-field {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-file-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.admin-file-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.admin-file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 194, 50, 0.55);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(241, 194, 50, 0.24), rgba(241, 194, 50, 0.1));
  color: var(--brand-soft);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.46rem 0.72rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.admin-file-button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 194, 50, 0.9);
  box-shadow: 0 8px 18px rgba(241, 194, 50, 0.2);
}

.admin-file-input:focus-visible + .admin-file-button {
  outline: 2px solid rgba(241, 194, 50, 0.8);
  outline-offset: 2px;
}

.admin-file-info {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-color-block {
  display: grid;
  gap: 0.55rem;
}

.admin-color-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-video-group {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 18, 0.3);
}

.admin-video-group-home {
  border-color: rgba(241, 194, 50, 0.22);
  background: linear-gradient(180deg, rgba(241, 194, 50, 0.08), rgba(7, 11, 18, 0.3));
}

.admin-video-group-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.admin-video-preview {
  display: grid;
  gap: 0.4rem;
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(7, 11, 18, 0.42);
}

.admin-video-preview-player {
  width: 100%;
  max-height: 220px;
  border-radius: 12px;
  background: #000;
}

.admin-video-preview-caption,
.admin-video-preview-empty {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-video-preview-empty {
  margin: 0;
}

.admin-color-assign-row {
  display: grid;
  gap: 0.4rem;
}

.admin-color-assign-row > span {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-color-assign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-color-assign-actions input {
  flex: 1;
  min-width: 190px;
}

.admin-color-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-color-chip {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.3rem 0.62rem 0.3rem 0.35rem;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  cursor: pointer;
}

.admin-color-chip:hover {
  border-color: rgba(241, 194, 50, 0.5);
}

.admin-color-chip.is-active {
  border-color: var(--brand);
  color: var(--brand-soft);
  box-shadow: 0 0 0 1px rgba(241, 194, 50, 0.35);
}

.admin-color-chip-swatch {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--swatch, #999);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.admin-color-custom-row {
  display: grid;
  gap: 0.4rem;
}

.admin-color-custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-color-custom-actions input {
  flex: 1;
  min-width: 190px;
}

.admin-selected-colors {
  display: grid;
  gap: 0.45rem;
}

.admin-selected-color-item {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 18, 0.32);
}

.admin-selected-color-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.8rem;
  align-items: center;
}

.admin-selected-color-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--text);
}

.admin-selected-color-head small {
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-selected-color-stock-field {
  display: grid;
  gap: 0.25rem;
}

.admin-selected-color-stock-field span {
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-selected-color-stock {
  max-width: 180px;
}

.admin-color-preview {
  min-height: 40px;
}

.admin-color-preview-track {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.admin-color-preview-trigger {
  border: none;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.admin-color-preview-thumb {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.admin-color-preview-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-color-preview-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-gallery-preview {
  display: grid;
  gap: 0.55rem;
  margin: 0.3rem 0 0.8rem;
  grid-column: 1 / -1;
}

.admin-gallery-preview-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
  color: var(--muted);
}

.admin-gallery-preview-head strong {
  color: var(--text);
}

.admin-gallery-controls {
  margin: 0;
}

.admin-gallery-preview-item.is-selected {
  border-color: rgba(241, 194, 50, 0.85);
  box-shadow: 0 0 0 1px rgba(241, 194, 50, 0.2);
}

.admin-gallery-preview-item.is-dragging {
  opacity: 0.72;
}

.admin-gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.45rem;
}

.admin-gallery-preview-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem;
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  cursor: pointer;
}

.admin-gallery-preview-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.admin-gallery-preview-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-gallery-preview-item .admin-sort-handle {
  margin-top: -0.15rem;
}

.admin-image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.admin-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.admin-image-modal-content {
  position: relative;
  width: min(860px, calc(100% - 2rem));
  margin: 4vh auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 0.8rem;
}

.admin-sort-modal-content {
  width: min(940px, calc(100% - 2rem));
}

.admin-image-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.admin-sort-actions {
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-sort-hint {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-sort-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.admin-sort-selected,
.admin-sort-apply {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.admin-sort-selected-thumb {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-sort-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-sort-color-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-sort-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.7rem;
  max-height: min(62vh, 620px);
  overflow: auto;
  padding-right: 0.2rem;
}

.admin-sort-item {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  padding: 0.65rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: grab;
}

.admin-sort-item:active,
.admin-sort-item.is-dragging {
  cursor: grabbing;
  border-color: rgba(241, 194, 50, 0.8);
  box-shadow: 0 0 0 1px rgba(241, 194, 50, 0.2), 0 14px 24px rgba(0, 0, 0, 0.24);
}

.admin-sort-item.is-selected {
  border-color: rgba(241, 194, 50, 0.8);
  box-shadow: 0 0 0 1px rgba(241, 194, 50, 0.18);
}

.admin-sort-handle {
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.admin-sort-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.admin-sort-index {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(241, 194, 50, 0.18);
  color: var(--brand-soft);
  font-weight: 700;
  font-size: 0.85rem;
}

.admin-image-modal-close {
  margin-left: auto;
  display: block;
}

.admin-image-modal-img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.admin-image-modal-caption {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

#productFormMsg {
  color: var(--brand-soft);
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.admin-filters select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.62rem 0.72rem;
}

.admin-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 0.75rem 0;
}

.admin-item p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.admin-order-item {
  cursor: pointer;
  border-radius: 12px;
  padding-inline: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-order-item:hover {
  background: rgba(241, 194, 50, 0.08);
}

.admin-order-item.is-selected {
  border: 1px solid rgba(241, 194, 50, 0.55);
  background: rgba(241, 194, 50, 0.11);
}

.admin-actions {
  display: grid;
  gap: 0.45rem;
  min-width: 150px;
}

.admin-actions select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.42rem 0.54rem;
}

.admin-pagination {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.admin-pagination span {
  color: var(--muted);
}

.order-detail-panel {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(7, 11, 18, 0.6);
  padding: 0.95rem;
}

.order-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.order-detail-head h3 {
  margin: 0;
}

.order-detail-head-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.order-detail-hint {
  margin: 0.4rem 0 0.8rem;
  color: var(--muted);
}

.order-label-controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.order-label-controls label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.order-label-controls select,
.order-label-controls textarea {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.56rem 0.66rem;
  font-family: inherit;
}

.order-label-controls textarea {
  resize: vertical;
  min-height: 72px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.65rem;
}

.order-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.7rem;
}

.order-detail-card h4 {
  margin: 0 0 0.5rem;
}

.order-detail-list {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.order-detail-list div {
  display: grid;
  gap: 0.15rem;
}

.order-detail-list dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.order-detail-list dd {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text);
  word-break: break-word;
}

.order-label-preview {
  margin-top: 0.75rem;
}

.order-label-sheet {
  width: min(100%, 420px);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: #fff;
  color: #0f1116;
  padding: 0.7rem;
}

.order-label-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.order-label-brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.order-label-id {
  display: grid;
  justify-items: end;
  font-size: 0.72rem;
}

.order-label-id strong {
  font-size: 0.82rem;
}

.order-label-block {
  margin-bottom: 0.5rem;
}

.order-label-block small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.64rem;
  color: #555;
  font-weight: 700;
}

.order-label-block p {
  margin: 0.1rem 0;
  color: #111;
  font-size: 0.86rem;
  line-height: 1.35;
}

.order-label-main {
  font-size: 1rem;
  font-weight: 700;
}

.order-label-note {
  margin: 0.3rem 0 0;
  color: #4e535e;
  font-size: 0.66rem;
}

.payment-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
}

.payment-status-badge.is-approved {
  background: rgba(62, 197, 110, 0.2);
  border-color: rgba(95, 233, 145, 0.5);
  color: #92f2ba;
}

.payment-status-badge.is-pending {
  background: rgba(255, 196, 64, 0.18);
  border-color: rgba(255, 209, 107, 0.5);
  color: #ffd988;
}

.payment-status-badge.is-rejected,
.payment-status-badge.is-cancelled {
  background: rgba(255, 95, 95, 0.2);
  border-color: rgba(255, 138, 138, 0.45);
  color: #ffb3b3;
}

.payment-status-badge.is-none {
  background: rgba(180, 190, 210, 0.15);
  border-color: rgba(180, 190, 210, 0.3);
  color: #ccd3e2;
}

.admin-payment-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
}

.admin-payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.admin-payment-modal-content {
  position: relative;
  width: min(780px, calc(100% - 2rem));
  margin: 6vh auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 0.9rem;
}

.admin-payment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.admin-payment-modal-header h3 {
  margin: 0;
}

.payment-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.65rem;
}

.payment-modal-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.7rem;
}

.payment-modal-card h4 {
  margin: 0 0 0.45rem;
}

.payment-modal-card p {
  margin: 0.32rem 0;
  color: var(--muted);
}

.payment-modal-actions {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.admin-review-shortcut {
  position: fixed;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 20;
  text-decoration: none;
  border: 1px solid rgba(241, 194, 50, 0.72);
  background: linear-gradient(135deg, rgba(241, 194, 50, 0.96), rgba(215, 163, 19, 0.96));
  color: #111;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  box-shadow: 0 10px 22px rgba(241, 194, 50, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-review-shortcut:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(241, 194, 50, 0.32);
}

.btn-mini {
  padding: 0.4rem 0.55rem;
  font-size: 0.8rem;
}

.review-status {
  color: var(--brand-soft);
}

.review-edit-box {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.45rem;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.02);
}

.review-edit-box label {
  display: grid;
  gap: 0.34rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-edit-box input,
.review-edit-box select,
.review-edit-box textarea {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.5rem 0.6rem;
}

.review-edit-actions {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 0.55rem;
  align-items: end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-review-image {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  margin-top: 0.5rem;
  width: min(180px, 100%);
  max-height: 180px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.admin-review-images {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-review-images .admin-review-image {
    grid-template-columns: 1fr;
  margin-top: 0;
  width: 82px;
  height: 82px;
  max-height: none;
}

.review-generator {
  margin-bottom: 0.9rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.review-generator h3 {
  margin: 0 0 0.55rem;
}

.review-generator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.55rem;
}

.review-generator-grid label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-generator-grid input,
.review-generator-grid select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.52rem 0.62rem;
}

.review-generator-actions {
  margin-top: 0.65rem;
}

#reviewGenMsg {
  display: block;
  margin-top: 0.45rem;
  color: var(--brand-soft);
}

.search-controls {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 0.6rem;
}

.review-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0.35rem 0 0.9rem;
}
.review-bulk-actions small {
  color: var(--muted);
  font-size: 0.84rem;
}
.search-controls input,
.search-controls select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--text);
  padding: 0.65rem 0.75rem;
}

.search-meta {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.benefits {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefits article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.benefits h3 {
  margin-top: 0;
}

.benefits p {
  color: var(--muted);
}

.social-proof {
  margin-top: 3rem;
}

.instagram-feed {
  margin-top: 3rem;
}

.instagram-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.instagram-controls {
  display: inline-flex;
  gap: 0.5rem;
}

.instagram-meta {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.instagram-window {
  overflow: hidden;
}

.instagram-track {
  display: flex;
  gap: 0.8rem;
  transition: transform 0.32s ease;
  will-change: transform;
}

.instagram-card {
  flex: 0 0 calc((100% - 2.4rem) / 4);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.instagram-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.instagram-card-body {
  padding: 0.72rem;
}

.instagram-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

.instagram-card-link {
  margin-top: 0.55rem;
  display: inline-flex;
  color: var(--brand-soft);
  font-size: 0.84rem;
  text-decoration: none;
}

.testimonials {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  color: #d4dbec;
}

blockquote cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--brand-soft);
  font-style: normal;
}

.newsletter {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(241, 194, 50, 0.18), rgba(255, 255, 255, 0.04));
  padding: clamp(1.1rem, 4vw, 2rem);
}

.newsletter p {
  color: var(--muted);
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.newsletter input {
  flex: 1 1 220px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(7, 11, 18, 0.7);
  color: var(--text);
  padding: 0.75rem 0.85rem;
}

.newsletter button {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: #f4f6fa;
  color: #10131b;
  font-weight: 700;
  cursor: pointer;
}

.newsletter small {
  display: block;
  margin-top: 0.7rem;
  color: var(--ok);
  min-height: 1em;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2rem 0 2.5rem;
  color: var(--muted);
}

.footer-sponsor {
  display: flex;
  align-items: center;
}

.footer-sponsor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-sponsor-link:hover {
  border-color: rgba(241, 194, 50, 0.45);
  background: rgba(241, 194, 50, 0.08);
  transform: translateY(-1px);
}

.footer-sponsor-logo {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #121620;
  background: linear-gradient(145deg, #f6de8a, #f1c232);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.footer-sponsor-text {
  display: grid;
  line-height: 1.1;
}

.footer-sponsor-text small {
  font-size: 0.68rem;
  color: var(--muted);
}

.footer-sponsor-text strong {
  font-size: 0.82rem;
  color: var(--brand-soft);
}

.footer a {
  color: var(--brand-soft);
  text-decoration: none;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.legal-content {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.95rem;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.legal-card p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.legal-card a {
  color: var(--brand-soft);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
}

.cookie-banner-content {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(16, 24, 38, 0.98), rgba(9, 14, 24, 0.98));
  box-shadow: var(--shadow);
  padding: 0.95rem;
}

.cookie-banner-content h2 {
  margin: 0;
  font-size: 1rem;
}

.cookie-banner-content p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.cookie-banner-actions,
.cookie-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.72rem;
}

.cookie-panel {
  margin-top: 0.72rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 0.72rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.42rem 0.7rem 0.42rem 0.42rem;
  background: linear-gradient(135deg, #25d366, #1faf54);
  color: #04240f;
  border: 1px solid rgba(11, 96, 45, 0.45);
  box-shadow: 0 14px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(37, 211, 102, 0.38);
}

.whatsapp-float-icon {
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a9f4a;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-float-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.whatsapp-float-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.scroll-nav-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.scroll-nav-btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 25, 39, 0.92);
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.scroll-nav-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-nav-btn:hover,
.scroll-nav-btn:focus-visible {
  background: #f4c644;
  color: #17120a;
}

@media (max-width: 920px) {
  .scroll-nav-float {
    display: flex;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none;
}

@keyframes rise-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hero-pan {
  0% {
    background-position: center, center 44%;
  }

  100% {
    background-position: center, center 40%;
  }
}

@keyframes hero-pan-mobile {
  0% {
    background-position: center, center 26%;
  }

  100% {
    background-position: center, center 34%;
  }
}

@media (max-width: 920px) {
  .menu {
    display: none;
  }

  .topbar-sponsor {
    padding: 0.28rem 0.45rem 0.28rem 0.3rem;
    gap: 0.3rem;
  }

  .topbar-sponsor-text {
    font-size: 0.62rem;
  }

  .home-demo {
    grid-template-columns: 1fr;
  }

  .home-demo-video-shell,
  .home-demo-video-shell video,
  .home-demo-video-shell img,
  .home-demo-video {
    max-height: 180px;
  }

  .home-demo-video-shell {
    padding: 0.35rem;
  }

  .category-strip,
  .benefits,
  .product-grid,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

  .detail,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .search-controls {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-card {
    flex-basis: calc((100% - 0.8rem) / 2);
  }

  .admin-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-generator-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-history-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payment-modal-grid {
    grid-template-columns: 1fr;
  }

  .order-label-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .topbar {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .topbar-sponsor {
    padding: 0.26rem;
  }

  .topbar-sponsor-text {
    display: none;
  }

  .brand-text {
    font-size: 1rem;
  }

  .cart-pill {
    font-size: 0.83rem;
  }

  .category-strip,
  .benefits,
  .product-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .search-controls {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    flex-basis: 100%;
  }

  .admin-selected-color-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-image-modal-header {
    align-items: flex-start;
  }

  .admin-sort-controls {
    grid-template-columns: 1fr;
  }

  .admin-sort-list {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    max-height: 54vh;
  }

  .review-generator-grid {
    grid-template-columns: 1fr;
  }

  .order-history-detail-grid {
    grid-template-columns: 1fr;
  }

  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .order-label-sheet {
    width: 100%;
  }

  .admin-review-shortcut {
    right: 0.7rem;
    bottom: 0.75rem;
    padding: 0.62rem 0.88rem;
    font-size: 0.84rem;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.75rem;
    padding: 0.4rem 0.64rem 0.4rem 0.4rem;
  }

  .product-video-float {
    left: 0.55rem;
    bottom: 0.6rem;
    width: min(190px, calc(100vw - 1.1rem));
    padding: 0.4rem;
  }

  .product-video-mini {
    max-height: 108px;
  }

  .whatsapp-float-icon {
    width: 1.62rem;
    height: 1.62rem;
  }

  .whatsapp-float-text {
    font-size: 0.78rem;
  }

  .footer-links {
    gap: 0.6rem;
    font-size: 0.9rem;
  }

  .footer-sponsor {
    width: 100%;
    justify-content: center;
  }

  .footer-sponsor-link {
    width: min(320px, 100%);
    justify-content: center;
  }

  /* Da espaco extra no rodape para os links nao ficarem escondidos atras dos
     botoes flutuantes (WhatsApp e as setas de navegacao) no final da pagina. */
  .footer {
    padding-bottom: 6.5rem;
  }

  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .cookie-banner-content {
    padding: 0.8rem;
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .admin-product-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 2rem;
  }

  .hero-realistic {
    min-height: 380px;
  }

  .hero-realistic::before {
    background-image:
      linear-gradient(175deg, rgba(3, 6, 12, 0.42) 0%, rgba(3, 6, 12, 0.32) 58%, rgba(3, 6, 12, 0.78) 100%),
      url("para o banner.jpeg");
    background-size: 100% 100%, 145% auto;
    background-position: center, center 30%;
    animation: hero-pan-mobile 9s ease-in-out infinite alternate;
  }

  .hero-content {
    max-width: 100%;
  }
}
