﻿:root {
  --bg: #030410;
  --surface: #0c1023;
  --surface-2: #12183a;
  --text: #f5f7ff;
  --muted: #adb8d7;
  --line: rgba(145, 162, 246, 0.16);
  --brand: #9d5cff;
  --brand-dark: #4c26ff;
  --accent: #34e2ff;
  --accent-2: #ff5ed0;
  --danger: #ff5f94;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

@keyframes premiumFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@keyframes premiumGlow {
  0% { box-shadow: 0 0 0 rgba(124, 43, 255, 0); }
  50% { box-shadow: 0 0 26px rgba(124, 43, 255, 0.16); }
  100% { box-shadow: 0 0 0 rgba(124, 43, 255, 0); }
}

@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSweep {
  0% { transform: translate3d(-18%, 0, 0); opacity: 0; }
  18% { opacity: 1; }
  52% { opacity: 0.9; }
  100% { transform: translate3d(22%, 0, 0); opacity: 0; }
}

@keyframes heroPulseLine {
  0%, 100% { opacity: 0.38; transform: scaleX(0.96); }
  50% { opacity: 0.8; transform: scaleX(1); }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroShimmer {
  0% { transform: translateX(-135%) skewX(-18deg); opacity: 0; }
  18% { opacity: 0.42; }
  100% { transform: translateX(155%) skewX(-18deg); opacity: 0; }
}

@keyframes heroCardSheen {
  0% { transform: translateX(-140%) rotate(14deg); opacity: 0; }
  16% { opacity: 0.3; }
  100% { transform: translateX(180%) rotate(14deg); opacity: 0; }
}

@keyframes heroRotateForward {
  0% {
    opacity: 0;
    transform: translate3d(34px, 0, 0) scale(0.965);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translate3d(-3px, 0, 0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroRotateBackward {
  0% {
    opacity: 0;
    transform: translate3d(-34px, 0, 0) scale(0.965);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translate3d(3px, 0, 0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

* { box-sizing: border-box; }
html, body {
  min-height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at top left, rgba(157, 92, 255, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(52, 226, 255, 0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 94, 208, 0.08), transparent 30%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-2);
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(76, 201, 240, 0.35);
  outline-offset: 1px;
}
textarea { min-height: 96px; resize: vertical; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 10, 20, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(84, 99, 233, 0.22);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(157, 92, 255, 0.18), rgba(52, 226, 255, 0.12));
  border: 1px solid rgba(52, 226, 255, 0.24);
  box-shadow: 0 18px 40px rgba(76, 195, 255, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.brand:hover {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(96, 224, 255, 0.42);
  box-shadow: 0 22px 48px rgba(40, 158, 255, 0.22);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.topbar .brand-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none;
  opacity: 1;
}
nav { display: flex; gap: 18px; color: var(--muted); font-weight: 600; }
nav a:hover { color: #fff; }
nav a:hover { color: #fff; }
.top-actions { display: flex; gap: 10px; align-items: center; }

.currency-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 34px;
  padding: 0 4px 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(111, 184, 255, 0.22);
  background:
    radial-gradient(circle at 16% 12%, rgba(80, 216, 255, 0.18), transparent 34%),
    rgba(10, 14, 32, 0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.catalog-showcase::before {
  content: none !important;
  display: none !important;
}

/* Hero carousel cover emphasis */
.hero-shot-product-card {
  grid-template-rows: 156px minmax(0, 1fr) !important;
}

.hero-shot-product-art {
  min-height: 156px !important;
}

.hero-shot-product-art img {
  object-fit: cover !important;
  padding: 0 !important;
}

@media (max-width: 1180px) {
  .hero-shot-product-card {
    grid-template-rows: 142px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 142px !important;
  }
}

@media (max-width: 760px) {
  .topbar {
    overflow: visible !important;
  }

  .topbar .mobile-nav-toggle {
    position: relative !important;
    z-index: 2147482992 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .topbar #siteNav {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .topbar.mobile-nav-open #siteNav,
  body.mobile-nav-open .topbar #siteNav {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-shot-product-card {
    grid-template-rows: 116px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 116px !important;
  }
}

/* Keep the floating navigation attached to the viewport scroll.
   `hidden` creates a scroll container and breaks sticky positioning. */
html,
body {
  overflow-x: clip !important;
}

header.topbar {
  position: sticky !important;
  top: 14px !important;
  z-index: 2147483000 !important;
  align-self: start !important;
}

@media (max-width: 760px) {
  header.topbar {
    top: 8px !important;
  }
}

/* Resolution-safe catalog savings badge and footer social icons */
.catalog-showcase #productGrid.grid .card.product .annual-saving-note {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 4px 7px !important;
  line-height: 1.1 !important;
}

.catalog-showcase #productGrid.grid .card.product .annual-saving-note::before {
  position: static !important;
  flex: 0 0 6px !important;
  width: 6px !important;
  height: 6px !important;
  margin: 0 !important;
  transform: none !important;
}

.social-links a[aria-label="Instagram"] > img {
  transform: scale(1.62) !important;
  transform-origin: center !important;
}

.social-links a[aria-label="WhatsApp"] > img {
  transform: scale(1.22) !important;
  transform-origin: center !important;
}

/* Cart layer authority: drawer and backdrop cover sticky navigation. */
#overlay.overlay,
#overlay.overlay.open {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483500 !important;
}

#cartDrawer.drawer,
#cartDrawer.drawer.open {
  position: fixed !important;
  z-index: 2147483647 !important;
}

body.cart-open > .floating-tips,
body.cart-open > .assistant-shell,
body.cart-open > .floating-whatsapp {
  z-index: 2147483400 !important;
}

/* Final cart checkout layout: balanced spacing and alignment. */
#cartDrawer.drawer {
  width: min(460px, 100vw) !important;
}

#cartDrawer #paymentSelector {
  margin-top: auto !important;
  border-top: 1px solid rgba(118, 132, 255, 0.14) !important;
  background: rgba(7, 9, 22, 0.72) !important;
}

#cartDrawer .payment-section {
  margin: 0 !important;
  padding: 16px 18px 14px !important;
  border-top: 0 !important;
  overflow: visible !important;
  max-height: none !important;
}

#cartDrawer .payment-section > p:first-child {
  margin: 0 0 10px !important;
  font-size: 0.92rem !important;
  line-height: 1.2 !important;
}

#cartDrawer .payment-options {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

#cartDrawer .payment-card {
  min-width: 0 !important;
  min-height: 62px !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  border-radius: 13px !important;
}

#cartDrawer .payment-icon {
  width: 42px !important;
  height: 34px !important;
}

#cartDrawer .payment-details {
  min-width: 0 !important;
  gap: 3px !important;
  align-content: center !important;
}

#cartDrawer .payment-title {
  font-size: 0.86rem !important;
  line-height: 1.15 !important;
  white-space: normal !important;
}

#cartDrawer .payment-subtitle {
  font-size: 0.72rem !important;
}

#cartDrawer .cart-guidance,
#cartDrawer .payment-note {
  margin: 8px 0 0 !important;
  font-size: 0.74rem !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

#cartDrawer .cart-duration-tip {
  display: inline-flex !important;
  align-items: center !important;
  margin: 8px 0 0 !important;
  padding: 5px 9px !important;
  font-size: 0.7rem !important;
  line-height: 1.2 !important;
}

#cartDrawer .cart-terms-consent {
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  margin-top: 10px !important;
  padding: 9px 10px !important;
  font-size: 0.74rem !important;
  line-height: 1.3 !important;
}

#cartDrawer .cart-terms-consent input {
  margin: 0 !important;
}

#cartDrawer .drawer-foot {
  padding: 12px 18px 16px !important;
  gap: 10px !important;
}

#cartDrawer .totals {
  padding: 13px 15px !important;
  gap: 7px !important;
  border-radius: 14px !important;
}

#cartDrawer #checkoutButton {
  min-height: 46px !important;
}

@media (max-width: 520px) {
  #cartDrawer.drawer {
    width: min(94vw, 390px) !important;
  }

  #cartDrawer .payment-section {
    padding: 12px !important;
  }

  #cartDrawer .payment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  #cartDrawer .payment-card {
    min-height: 56px !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 7px !important;
    padding: 8px !important;
  }

  #cartDrawer .payment-icon {
    width: 34px !important;
    height: 30px !important;
  }

  #cartDrawer .drawer-foot {
    padding: 10px 12px max(12px, env(safe-area-inset-bottom)) !important;
  }
}

/* Catalog layout authority: one coherent system for controls and product cards. */
.catalog-showcase.panel {
  width: min(1760px, calc(100% - 40px)) !important;
  max-width: 1760px !important;
  margin-inline: auto !important;
  padding: 28px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.catalog-showcase .catalog-showcase-head {
  margin: 0 0 20px !important;
}

.catalog-showcase .catalog-showcase-head h2 {
  max-width: 680px !important;
  margin: 10px 0 0 !important;
  font-size: clamp(2rem, 2.5vw, 3rem) !important;
  line-height: 1.04 !important;
}

.catalog-showcase .catalog-controlbar {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 1fr) minmax(560px, 1.65fr) 168px !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}

.catalog-showcase .catalog-search-shell,
.catalog-showcase .category-shortcuts,
.catalog-showcase .toolbar-filters {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.catalog-showcase .catalog-search-shell {
  position: relative !important;
  height: 42px !important;
}

.catalog-showcase .catalog-search-shell input,
.catalog-showcase .toolbar-filters select {
  width: 100% !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
}

.catalog-showcase .catalog-search-shell input {
  padding: 0 14px 0 42px !important;
}

.catalog-showcase .catalog-search-label {
  left: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  line-height: 1 !important;
}

.catalog-showcase .category-shortcuts {
  overflow: hidden !important;
}

.catalog-showcase .shortcut-list {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 7px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding: 1px !important;
}

.catalog-showcase .shortcut-list::-webkit-scrollbar {
  display: none !important;
}

.catalog-showcase .category-shortcut {
  flex: 0 0 auto !important;
  min-height: 40px !important;
  padding: 0 13px !important;
  gap: 7px !important;
  border-radius: 12px !important;
  white-space: nowrap !important;
  font-size: 0.78rem !important;
}

.catalog-showcase .shortcut-icon {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.catalog-showcase .shortcut-icon svg,
.catalog-showcase .shortcut-icon img {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

.catalog-showcase .toolbar-filters {
  display: block !important;
}

.catalog-showcase .catalog-hidden-category-select {
  display: none !important;
}

.catalog-showcase #sortSelect {
  max-width: none !important;
  padding-inline: 14px 34px !important;
  font-size: 0.82rem !important;
}

.catalog-showcase #productGrid.grid {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  grid-auto-columns: unset !important;
  grid-template-rows: none !important;
  gap: 14px !important;
  padding: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.catalog-showcase #productGrid.grid .card.product {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 382px !important;
  height: 382px !important;
  display: grid !important;
  grid-template-rows: 126px minmax(0, 1fr) !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.catalog-showcase #productGrid.grid .card.product > img {
  width: calc(100% - 18px) !important;
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;
  aspect-ratio: 16 / 9 !important;
  margin: 9px auto 5px !important;
  padding: 0 !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 10px !important;
  background: #070a18 !important;
}

.catalog-showcase #productGrid.grid .card.product > .card-body {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  display: grid !important;
  grid-template-rows: auto minmax(38px, auto) 1fr !important;
  align-content: stretch !important;
  gap: 7px !important;
  padding: 9px 12px 12px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.catalog-showcase #productGrid.grid .card.product .product-badges {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 18px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 4px !important;
  overflow: hidden !important;
}

.catalog-showcase #productGrid.grid .card.product .badge {
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 3px 6px !important;
  font-size: 0.57rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.catalog-showcase #productGrid.grid .card.product .product-duration {
  top: 8px !important;
  right: 8px !important;
  min-height: 25px !important;
  padding: 0 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  font-size: 0.64rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.catalog-showcase #productGrid.grid .card.product .product-duration::before,
.catalog-showcase #productGrid.grid .card.product .product-duration::after {
  content: none !important;
  display: none !important;
}

.catalog-showcase #productGrid.grid .card.product h3 {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.15 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.catalog-showcase #productGrid.grid .card.product .purchase-panel {
  width: 100% !important;
  min-width: 0 !important;
  align-self: end !important;
  display: grid !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  gap: 4px !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker::before {
  content: "DURACION" !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #8fcfff !important;
  font-size: 0.58rem !important;
  line-height: 1 !important;
  letter-spacing: 0.07em !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker::after {
  content: "\203A" !important;
  right: 12px !important;
  bottom: 9px !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #b9dfff !important;
  font-size: 1rem !important;
  transform: rotate(90deg) !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker select {
  width: 100% !important;
  min-width: 0 !important;
  height: 35px !important;
  min-height: 35px !important;
  padding: 0 30px 0 10px !important;
  border-radius: 10px !important;
  font-size: 0.78rem !important;
}

.catalog-showcase #productGrid.grid .card.product .annual-saving-note {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 4px 7px 4px 19px !important;
  font-size: 0.59rem !important;
  line-height: 1 !important;
  text-align: left !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  box-sizing: border-box !important;
}

.catalog-showcase #productGrid.grid .card.product .annual-saving-note::before {
  left: 8px !important;
  width: 5px !important;
  height: 5px !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 78px !important;
  align-items: center !important;
  gap: 7px !important;
  margin: 0 !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row .price {
  width: fit-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 6px 8px !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row .primary {
  width: 78px !important;
  max-width: 78px !important;
  min-width: 0 !important;
  min-height: 34px !important;
  justify-self: end !important;
  padding: 0 7px !important;
  border-radius: 10px !important;
  font-size: 0.75rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.catalog-showcase .catalog-pagination-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin: 18px 0 0 !important;
}

.catalog-showcase .catalog-pagination {
  width: auto !important;
  min-width: 290px !important;
  display: grid !important;
  grid-template-columns: 92px auto 92px !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 auto !important;
  padding: 6px !important;
  border-radius: 14px !important;
}

.catalog-showcase .catalog-page-btn,
.catalog-showcase .catalog-page-status {
  min-height: 36px !important;
  margin: 0 !important;
  border-radius: 10px !important;
}

@media (max-width: 1499px) {
  .catalog-showcase .catalog-controlbar {
    grid-template-columns: minmax(230px, 0.85fr) minmax(460px, 1.5fr) 154px !important;
  }

  .catalog-showcase #productGrid.grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1179px) {
  .catalog-showcase .catalog-controlbar {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr) !important;
  }

  .catalog-showcase .toolbar-filters {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 154px !important;
    justify-self: end !important;
  }

  .catalog-showcase #productGrid.grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .catalog-showcase.panel {
    width: calc(100% - 24px) !important;
    padding: 16px 12px 18px !important;
    border-radius: 16px !important;
  }

  .catalog-showcase .catalog-showcase-head {
    margin-bottom: 16px !important;
  }

  .catalog-showcase .catalog-showcase-head h2 {
    max-width: 100% !important;
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    line-height: 1.06 !important;
  }

  .catalog-showcase .catalog-controlbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .catalog-showcase .catalog-search-shell,
  .catalog-showcase .category-shortcuts,
  .catalog-showcase .toolbar-filters {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
  }

  .catalog-showcase .shortcut-list {
    justify-content: flex-start !important;
    scroll-snap-type: x proximity !important;
  }

  .catalog-showcase .category-shortcut {
    min-height: 38px !important;
    scroll-snap-align: start !important;
  }

  .catalog-showcase #productGrid.grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-rows: none !important;
    gap: 10px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .catalog-showcase #productGrid.grid .card.product {
    width: 100% !important;
    min-width: 0 !important;
    height: 344px !important;
    min-height: 344px !important;
    grid-template-rows: 98px minmax(0, 1fr) !important;
    scroll-snap-align: none !important;
  }

  .catalog-showcase #productGrid.grid .card.product > img {
    width: calc(100% - 12px) !important;
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
    margin: 6px auto 4px !important;
    border-radius: 8px !important;
  }

  .catalog-showcase #productGrid.grid .card.product > .card-body {
    grid-template-rows: auto minmax(34px, auto) 1fr !important;
    gap: 6px !important;
    padding: 7px 8px 9px !important;
  }

  .catalog-showcase #productGrid.grid .card.product h3 {
    min-height: 34px !important;
    max-height: 34px !important;
    font-size: 0.8rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .product-duration {
    top: 5px !important;
    right: 5px !important;
    min-height: 22px !important;
    padding-inline: 7px !important;
    font-size: 0.57rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .badge {
    font-size: 0.5rem !important;
    padding: 2px 4px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .duration-picker select {
    height: 32px !important;
    min-height: 32px !important;
    font-size: 0.7rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .annual-saving-note {
    min-height: 23px !important;
    padding-right: 4px !important;
    font-size: 0.5rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row {
    grid-template-columns: minmax(0, 1fr) 68px !important;
    gap: 5px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .price {
    padding: 5px 6px !important;
    font-size: 0.69rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .primary {
    width: 68px !important;
    max-width: 68px !important;
    min-height: 32px !important;
    padding: 0 5px !important;
    font-size: 0.67rem !important;
  }

  .catalog-showcase .catalog-pagination {
    min-width: 0 !important;
    width: min(100%, 260px) !important;
    grid-template-columns: 40px minmax(0, 1fr) 40px !important;
  }

  .catalog-showcase .catalog-page-btn {
    width: 40px !important;
    min-width: 40px !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: transparent !important;
  }

  .catalog-showcase .catalog-page-btn::before {
    color: #fff !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="prev"]::before {
    content: "\2039" !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="next"]::before {
    content: "\203A" !important;
  }
}

/* Floating contact controls: one stable geometry across every page. */
body > .floating-whatsapp,
body > .assistant-shell {
  position: fixed !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  z-index: 2147483000 !important;
  box-sizing: border-box !important;
}

body > .floating-whatsapp {
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  display: grid !important;
  place-items: center !important;
  padding: 6px !important;
  overflow: hidden !important;
  border: 1px solid rgba(75, 255, 151, 0.42) !important;
  border-radius: 50% !important;
  background: rgba(5, 24, 15, 0.96) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 18px rgba(37, 211, 102, 0.22) !important;
}

body > .floating-whatsapp > img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 50% !important;
}

body > .assistant-shell {
  bottom: calc(max(18px, env(safe-area-inset-bottom)) + 66px) !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body > .assistant-shell > .assistant-toggle {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 1px solid rgba(110, 190, 255, 0.48) !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, #7257ff, #2b91ef) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 20px rgba(83, 136, 255, 0.28) !important;
}

.assistant-toggle-glyph {
  position: relative;
  width: 31px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 50%;
  background: #fff;
}

.assistant-toggle-glyph::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.assistant-toggle-glyph i {
  width: 3px;
  height: 3px;
  display: block;
  border-radius: 50%;
  background: #5577df;
}

.assistant-toggle-status {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid #10152d;
  border-radius: 50%;
  background: #52ef8b;
  box-shadow: 0 0 9px rgba(82, 239, 139, 0.75);
}

body > .floating-whatsapp:hover,
body > .assistant-shell > .assistant-toggle:hover {
  transform: translateY(-2px) scale(1.04) !important;
}

@media (max-width: 760px) {
  body > .floating-whatsapp,
  body > .assistant-shell {
    right: max(10px, env(safe-area-inset-right)) !important;
  }

  body > .floating-whatsapp {
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 5px !important;
  }

  body > .assistant-shell {
    bottom: calc(max(10px, env(safe-area-inset-bottom)) + 58px) !important;
  }

  body > .assistant-shell > .assistant-toggle {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .assistant-toggle-glyph {
    width: 27px;
    height: 22px;
  }

  .assistant-toggle-copy,
  .floating-whatsapp-copy {
    display: none !important;
  }
}

.currency-switch span {
  color: #7ed7ff;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.currency-switch select {
  min-height: 24px;
  width: 48px;
  padding: 0 14px 0 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 12, 30, 0.86);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  outline: none;
}

.top-actions .cart-button,
.top-actions #authButton {
  position: relative;
  min-height: 46px;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.top-actions .cart-button {
  color: #f9fbff;
  border: 1px solid rgba(105, 208, 255, 0.32);
  background:
    radial-gradient(circle at 22% 12%, rgba(76, 201, 240, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(24, 39, 78, 0.96), rgba(12, 15, 35, 0.94));
  box-shadow: 0 10px 26px rgba(38, 139, 255, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
}

.top-actions .cart-button::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.92;
  clip-path: path("M3 3.5h1.3l1.1 6.2c.1.6.6 1 1.2 1h5.1c.6 0 1.1-.4 1.2-1l.8-4.5H5.2M7.1 13.1h.1M11.8 13.1h.1");
}

.top-actions .cart-button::after,
.top-actions #authButton::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: transform 520ms ease, opacity 220ms ease;
  pointer-events: none;
}

.top-actions .cart-button:hover,
.top-actions #authButton:hover {
  transform: translateY(-1px);
}

.top-actions .cart-button:hover {
  border-color: rgba(105, 208, 255, 0.58);
  box-shadow: 0 14px 34px rgba(38, 139, 255, 0.24), inset 0 1px 0 rgba(255,255,255,0.12);
}

.top-actions .cart-button:hover::after,
.top-actions #authButton:hover::after {
  opacity: 1;
  transform: translateX(260%) skewX(-18deg);
}

.top-actions #cartCount {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #081020;
  background: linear-gradient(135deg, #61e8ff, #8a66ff);
  box-shadow: 0 0 18px rgba(90, 203, 255, 0.38);
  font-size: 0.76rem;
  font-weight: 900;
}

.top-actions #authButton {
  color: #eaf0ff;
  border: 1px solid rgba(166, 129, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    rgba(12, 14, 31, 0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.top-actions #authButton:hover {
  color: #ffffff;
  border-color: rgba(183, 142, 255, 0.5);
  background:
    radial-gradient(circle at 50% 0, rgba(157, 92, 255, 0.2), transparent 58%),
    rgba(17, 18, 39, 0.92);
  box-shadow: 0 12px 28px rgba(116, 75, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

main {
  padding: 56px clamp(18px, 4vw, 56px) 24px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
  min-height: 76vh;
}
.hero-copy { display: grid; gap: 22px; max-width: 700px; }
.hero h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.04em;
}
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 660px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .primary {
  min-width: 170px;
}
.hero-actions .ghost {
  min-width: 170px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-stats div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(145, 162, 246, 0.12);
}
.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-stage {
  position: relative;
  min-height: 420px;
  padding: 50px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stage-card {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 2;
  width: min(100%, 340px);
  max-width: 340px;
  min-height: 360px;
  max-height: 360px;
  height: auto;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 18, 46, 0.96), rgba(8, 10, 26, 0.94));
  border: 1px solid rgba(52, 226, 255, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  overflow: visible;
  margin: 0 auto;
}
.hero-stage-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(52, 226, 255, 0.16);
  color: #d9f7ff;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.hero-stage-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.08;
  min-height: 64px;
  overflow: visible;
  padding-top: 2px;
}
#heroCardDescription {
  display: none;
}
#heroCardDescription.expanded {
  display: none;
}
.hero-desc-toggle {
  display: none;
}
.hero-stage-features {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 70px;
}
.hero-stage-features span {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  color: #ecf5ff;
  font-size: 0.96rem;
}
.hero-stage-price {
  margin-top: 12px;
  color: #f8fafd;
  font-size: 0.96rem;
}
.hero-stage-price strong {
  color: var(--accent);
  font-size: 1.45rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  min-height: 470px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(157, 92, 255, 0.12), transparent 22%),
              radial-gradient(circle at bottom right, rgba(52, 226, 255, 0.1), transparent 20%),
              linear-gradient(180deg, rgba(8, 10, 32, 0.55), rgba(10, 13, 33, 0.65));
  background-blend-mode: soft-light, soft-light, normal;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25), var(--shadow);
  border: 1px solid rgba(52, 226, 255, 0.16);
  z-index: 0;
}
#heroTextTop {
  display: none;
}
#heroTextBottom {
  display: none;
}
.live-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(5, 6, 10, 0.92);
  border: 1px solid rgba(76, 201, 240, 0.18);
  backdrop-filter: blur(14px);
  max-height: 180px;
  overflow: hidden;
}
#heroTextBottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #eee;
  background: rgba(5, 6, 10, 0.88);
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(76, 201, 240, 0.2);
  backdrop-filter: blur(6px);
}
#heroTextBottom p {
  margin: 4px 0 0 0;
  line-height: 1.4;
  color: #ccc;
}

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, rgba(12, 16, 36, 0.6), rgba(3, 4, 16, 0.95));
  border-top: 1px solid rgba(145, 162, 246, 0.12);
  padding: 42px clamp(18px, 4vw, 56px) 28px;
  margin-top: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 48px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-section h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f5f7ff;
  text-transform: capitalize;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section ul li a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #fff;
}

.socials {
  margin-top: 8px;
}

.socials h4 {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: #f5f7ff;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(157, 92, 255, 0.12);
  border: 1px solid rgba(157, 92, 255, 0.2);
  color: #e6ebff;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: rgba(52, 226, 255, 0.18);
  border-color: rgba(52, 226, 255, 0.3);
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.newsletter-form input {
  padding: 12px 16px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(157, 92, 255, 0.24);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(145, 162, 246, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  opacity: 0.95;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
.live-card strong { display: block; margin-bottom: 4px; }
.live-card p { margin: 0; font-size: 14px; }
.live-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.6);
  animation: pulse 1.8s infinite;
}
.eyebrow { color: var(--brand); text-transform: uppercase; font-weight: 800; letter-spacing: 0.08em; font-size: 12px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.hero-actions a { display: inline-flex; align-items: center; justify-content: center; }
.hero-actions .ghost { backdrop-filter: blur(8px); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}
.hero-stats div {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(17, 22, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stats strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}
.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}
.feature-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 64px 0 32px; }
.feature-chip {
  padding: 10px 14px;
  border: 1px solid rgba(76, 201, 240, 0.18);
  border-radius: 999px;
  background: rgba(17, 22, 42, 0.85);
  color: var(--muted);
}
.catalog-showcase {
  margin: 44px 0 34px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 132, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(14, 18, 37, 0.97), rgba(8, 10, 23, 0.97));
  border: 1px solid rgba(111, 123, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 28px 70px rgba(0, 0, 0, 0.28);
}
.catalog-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.catalog-showcase-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0;
  padding: 8px 13px;
  border-radius: 999px;
  color: #caa7ff;
  background: linear-gradient(135deg, rgba(151, 71, 255, 0.2), rgba(74, 163, 255, 0.13));
  border: 1px solid rgba(166, 101, 255, 0.34);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.16);
}
.catalog-showcase-head .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #74c7ff;
  box-shadow: 0 0 14px rgba(116, 199, 255, 0.9);
}
.catalog-showcase-head h2 {
  position: relative;
  margin: 14px 0 0;
  max-width: 760px;
  font-size: clamp(1.95rem, 3vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.catalog-showcase-head h2::after {
  content: "";
  display: block;
  width: min(210px, 42vw);
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6bbcff, #9b5cff, transparent);
  box-shadow: 0 0 24px rgba(117, 108, 255, 0.35);
}
.catalog-showcase-note {
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31, 38, 74, 0.92), rgba(17, 21, 43, 0.92));
  border: 1px solid rgba(116, 129, 255, 0.18);
  color: #cfd7ef;
}
.catalog-showcase-note strong {
  display: block;
  margin-bottom: 4px;
  color: #eef2ff;
  font-size: 0.92rem;
}
.catalog-showcase-note span {
  font-size: 0.86rem;
  color: #aeb8d5;
}
.category-shortcuts {
  margin: 0 0 16px;
  scroll-margin-top: 92px;
}
.category-shortcuts .shortcut-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.category-shortcuts .category-shortcut {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(23, 28, 51, 0.92), rgba(13, 16, 30, 0.92));
  color: #eef2ff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.category-shortcuts .category-shortcut:hover {
  background: linear-gradient(180deg, rgba(31, 37, 68, 0.98), rgba(15, 18, 33, 0.98));
  transform: translateY(-1px);
  border-color: rgba(122, 136, 255, 0.22);
}
.category-shortcuts .category-shortcut.active {
  background: linear-gradient(135deg, rgba(45, 126, 255, 0.22), rgba(151, 71, 255, 0.2));
  border-color: rgba(98, 168, 255, 0.32);
  color: #dcebff;
  box-shadow: 0 14px 28px rgba(73, 113, 255, 0.12);
}
.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 18px;
  border: 1px solid rgba(118, 132, 255, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.catalog-empty h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}
.catalog-empty p {
  margin: 0;
  color: var(--muted);
}
.ticker {
  overflow: hidden;
  margin: 24px 0 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(17, 22, 42, 0.45);
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  min-width: max-content;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.ticker-track span {
  color: #dfe6f7;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin: 0 0 18px;
  align-items: end;
  scroll-margin-top: 92px;
}
.catalog-search-shell {
  display: grid;
  gap: 8px;
}
.catalog-search-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ec5ff;
  font-weight: 800;
}
.toolbar input {
  width: 100%;
  min-height: 52px;
  height: 52px;
  padding-inline: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 28, 53, 0.96), rgba(14, 18, 33, 0.96));
  border: 1px solid rgba(108, 122, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.toolbar-filters {
  display: flex;
  align-items: end;
  gap: 12px;
  justify-self: end;
}
.toolbar-filters select {
  width: auto;
  min-width: 160px;
  min-height: 52px;
  height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 31, 59, 0.96), rgba(15, 18, 34, 0.96));
  border: 1px solid rgba(110, 124, 255, 0.18);
  color: #eef2ff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.toolbar-filters select option,
#categorySelect option,
#subcategorySelect option,
#sortSelect option {
  background: #0b1023;
  color: #f5f8ff;
  font-weight: 800;
}

.toolbar-filters select option:checked,
#categorySelect option:checked,
#subcategorySelect option:checked,
#sortSelect option:checked {
  background: #1f2c68;
  color: #ffffff;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 0;
  align-items: start;
  scroll-margin-top: 92px;
}
.card {
  background: linear-gradient(180deg, rgba(17, 22, 42, 0.96), rgba(13, 16, 32, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: visible;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 201, 240, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}
.product img { width: 100%; height: 180px; object-fit: contain; object-position: center; display: block; background: rgba(255,255,255,0.04); padding: 6px; box-sizing: border-box; }
.card-body { padding: 8px; }
.product h3 { 
  margin: 0 0 4px;
  font-size: 0.98rem;
  line-height: 1.2;
  min-height: calc(1.2em * 2.2);
  overflow: visible;
  word-break: break-word;
}
.product p { color: var(--muted); min-height: 28px; }
.product .description-brief {
  color: var(--muted);
  min-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
}
.product .description-brief.hidden {
  display: none;
}
.product .description-full {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 8px;
  max-height: 0;
  overflow: hidden;
  display: none;
  transition: max-height 0.3s ease;
}
.product .description-full.active {
  display: block;
  max-height: 500px;
}
.product .expand-toggle-grid,
.spotlight-card .expand-toggle {
  align-self: start;
  margin: 0 0 12px 0;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 14px;
}
.product-spark {
  margin: 0 0 6px;
  font-size: 13px;
  color: #d7dded;
}
/* Product duration pill */
.card.product { position: relative; overflow: hidden; }
/* Duration overlay badge on image */
.product .product-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,94,208,0.16), rgba(157,92,255,0.08));
  border: 1px solid rgba(255,94,208,0.18);
  color: #ffeef8;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(12,16,32,0.36);
  backdrop-filter: blur(6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  opacity: 0.98;
}
.product .product-duration::before { content: "1m"; font-size: 0.68rem; margin-right: 3px; opacity: 0.95; }
.card.product:hover .product-duration { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(12,16,32,0.40); }
.product-badges {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex-wrap: wrap;
}
.product .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 3px 7px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.68rem;
  line-height: 1.05;
  white-space: nowrap;
}
.product .badge-modality {
  color: #dbe9ff;
  border: 1px solid rgba(130, 155, 255, 0.28);
  background: rgba(42, 49, 96, 0.78);
}
@media (max-width: 640px) {
  .product .product-duration { top: 8px; right: 8px; font-size: 0.68rem; padding: 4px 6px; }
}
.feature-list { display: none; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.price { font-weight: 800; font-size: 17px; }
.expand-btn-grid {
  padding: 6px 10px;
  font-size: 12px;
}

.primary, .secondary, .ghost, .cart-button, .danger, .icon-button {
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
}
.primary { background: linear-gradient(90deg, var(--accent), var(--brand)); color: #fff; box-shadow: 0 18px 32px rgba(77, 226, 255, 0.18); transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease; }
.primary:hover { background: linear-gradient(90deg, var(--brand), var(--accent)); transform: translateY(-1px); box-shadow: 0 22px 40px rgba(77, 226, 255, 0.24); filter: saturate(1.05); }
.secondary { background: rgba(52, 226, 255, 0.14); color: #dff7ff; border: 1px solid rgba(52, 226, 255, 0.18); }
.ghost, .cart-button { background: rgba(255,255,255,0.04); border: 1px solid rgba(145, 162, 246, 0.18); color: var(--text); }
.danger { background: rgba(255, 95, 148, 0.16); color: #ffd4e8; border: 1px solid rgba(255, 95, 148, 0.22); }
.secondary, .ghost, .cart-button, .danger, .icon-button { transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease; }
.secondary:hover, .ghost:hover, .cart-button:hover, .danger:hover, .icon-button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,0.18); }
.full { width: 100%; }
.muted { color: var(--muted); }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(124, 43, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(9, 11, 25, 0.98), rgba(6, 8, 20, 0.99));
  z-index: 30;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.36);
  border-left: 1px solid rgba(118, 132, 255, 0.14);
  backdrop-filter: blur(18px);
}
.drawer.open { transform: translateX(0); }
.drawer-head, .drawer-foot { padding: 20px 22px; border-bottom: 1px solid rgba(118, 132, 255, 0.12); }
.drawer-foot { border-top: 1px solid rgba(118, 132, 255, 0.12); border-bottom: 0; display: grid; gap: 14px; background: rgba(10, 13, 29, 0.86); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; background: rgba(8, 10, 24, 0.72); }
.drawer-head h2 { margin: 0; font-size: 1.28rem; }
#cartItems { display: grid; gap: 8px; padding: 12px 14px 8px; overflow: auto; }
.cart-item { padding: 12px 14px; border: 1px solid rgba(118, 132, 255, 0.12); border-radius: 14px; background: rgba(17, 21, 42, 0.82); box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); display: grid; gap: 8px; }
.cart-item:last-child { border-bottom: none; }
.cart-item-copy { display: grid; gap: 2px; }
.cart-item strong { display: block; font-size: 0.92rem; line-height: 1.25; }
.cart-item span { color: var(--muted); font-size: 0.9rem; }
.cart-item-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.cart-item-price { color: #eef3ff; font-size: 0.95rem; font-weight: 800; }
.cart-item button.danger { justify-self: end; padding: 6px 10px; border-radius: 11px; min-height: 30px; font-size: 0.78rem; }
.cart-item-empty { justify-items: center; text-align: center; padding: 26px 18px; background: rgba(255,255,255,0.03); }
#paymentSelector { margin-top: auto; }
.payment-section { margin: 4px 18px 0; padding: 18px 0 10px; border-top: 1px solid rgba(118,132,255,0.12); background: transparent; }
.payment-section p { margin: 0 0 12px 0; color: #f8fafc; }
.payment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.payment-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(118,132,255,0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  background: rgba(255,255,255,0.02);
}
.payment-card:hover { transform: translateY(-1px); border-color: rgba(76,201,240,0.32); }
.payment-card.selected { border-color: rgba(76, 201, 240, 0.5); background: rgba(56, 189, 248, 0.07); box-shadow: none; }
.payment-card input[type="radio"] { display: none; }
.payment-icon {
  width: 40px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.payment-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.payment-logo-mp img {
  width: 38px;
  height: 28px;
}
.payment-details { display: grid; gap: 4px; }
.payment-title { font-weight: 700; color: #fff; }
.payment-card .payment-title { white-space: nowrap; font-size: 0.92rem; }
.payment-subtitle { font-size: 0.78rem; color: var(--muted); line-height: 1.25; }
.cart-guidance {
  margin-top: 10px;
  color: rgba(220, 230, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}
.payment-note {
  margin: 6px 0 0 !important;
  color: rgba(220, 230, 255, 0.7) !important;
  font-size: 0.78rem;
  line-height: 1.3;
}
.cart-terms-note {
  margin: 6px 0 0 !important;
  color: rgba(220, 230, 255, 0.62) !important;
  font-size: 0.76rem;
  line-height: 1.3;
}
.cart-terms-note a {
  color: rgba(174, 116, 255, 0.9);
}
.cart-terms-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  margin-top: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(110, 168, 255, 0.18);
  border-radius: 10px;
  background: rgba(18, 27, 52, 0.48);
  color: rgba(225, 232, 250, 0.76);
  font-size: 0.72rem;
  line-height: 1.42;
  cursor: pointer;
}
.cart-terms-consent input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: #7c4dff; }
.cart-terms-consent a { color: #b998ff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
#checkoutButton:disabled { opacity: 0.45; cursor: not-allowed; filter: saturate(0.55); }
.totals { display: grid; gap: 8px; padding: 18px 20px; border-radius: 18px; background: rgba(17, 21, 42, 0.82); border: 1px solid rgba(118, 132, 255, 0.12); box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }

@media (max-width: 360px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
}
.final-total { font-size: 1rem; color: #b9c3dd; }
.final-total strong { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
#cartTotal { color: #ffffff; font-size: 1.5rem; line-height: 1; }
.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.order-item:first-child {
  border-top: none;
}
.order-actions {
  flex-shrink: 0;
}
.cart-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.whatsapp-button { background: #25d366; color: #fff; padding: 8px 12px; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 700; }
.whatsapp-button:hover { background: #1ebe5d; }
.profile {
  max-width: 1140px;
  margin: 32px auto;
  padding: 0 18px;
}
.profile-header {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.profile-header-top {
  display: flex;
  gap: 22px;
  align-items: center;
}
.profile-avatar-large {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(157, 92, 255, 0.8), rgba(52, 226, 255, 0.8));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: center;
  position: relative;
}
.profile-avatar-wrapper {
  position: relative;
  width: 84px;
  height: 84px;
}
.profile-avatar-large {
  width: 100%;
  height: 100%;
}
.profile-avatar-edit {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.profile-avatar-edit:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.profile-avatar-edit input {
  display: none;
}
.profile-avatar-group {
  display: grid;
  gap: 10px;
  align-items: center;
}
.profile-name-input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.profile-name-input:focus {
  outline: 1px solid rgba(157, 92, 255, 0.8);
  outline-offset: 4px;
}
.profile-header-top h1 {
  margin: 0;
}
.profile-header-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.profile-header-stats div {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 21, 42, 0.95), rgba(9, 11, 28, 0.96));
  border: 1px solid rgba(118, 132, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.profile-header-stats span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.profile-header-stats strong {
  font-size: 1.55rem;
}
.profile-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.profile-summary-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.profile-mini-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.profile-mini-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(118, 132, 255, 0.14);
  color: #eef2ff;
  font-size: 0.76rem;
  font-weight: 700;
}
.profile-highlight-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.profile-highlight-card {
  padding: 20px 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(118, 90, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(17, 21, 42, 0.95), rgba(9, 11, 28, 0.96));
  border: 1px solid rgba(118, 132, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.profile-highlight-card span {
  display: block;
  color: #9da8c9;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.profile-highlight-card strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.profile-highlight-card p {
  margin: 0;
  color: #b7bfd8;
  line-height: 1.65;
}
.profile-body {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 24px;
}
.profile-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}
.help-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 20, 41, 0.96), rgba(9, 11, 27, 0.96));
  border: 1px solid rgba(118, 132, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 48px rgba(0,0,0,0.18);
}
.help-card .eyebrow {
  margin: 0 0 10px;
}
.help-card h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}
.help-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}
.profile-side-card {
  padding: 22px;
}
.profile-side-card .eyebrow {
  margin: 0 0 12px;
}
.profile-side-metrics {
  display: grid;
  gap: 14px;
}
.profile-side-metrics div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(118,132,255,0.12);
}
.profile-side-metrics span {
  display: block;
  color: #9da8c9;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.profile-side-metrics strong {
  font-size: 1.08rem;
}
.profile-security-card {
  display: grid;
  gap: 12px;
}
.profile-security-card h2 {
  margin: 0;
}
.profile-security-status {
  display: grid;
  gap: 10px;
}
.profile-security-status > span {
  font-weight: 700;
  color: #dce7ff;
}
.profile-security-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.review-submit-card {
  display: grid;
  gap: 12px;
}

.review-submit-card h2 {
  margin: 0;
}

.review-submit-card form {
  display: grid;
  gap: 10px;
}

.review-star-picker {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(126, 143, 255, 0.14);
  background: rgba(255,255,255,0.035);
}

.review-star {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: rgba(190, 198, 226, 0.45);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 1.18rem;
  line-height: 1;
  transition: transform 0.16s ease, color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.review-star:hover {
  transform: translateY(-1px);
}

.review-star.active {
  color: #d965ff;
  background: rgba(157, 92, 255, 0.12);
  border-color: rgba(199, 101, 255, 0.22);
  box-shadow: 0 0 14px rgba(207, 101, 255, 0.2);
  text-shadow: 0 0 12px rgba(207, 101, 255, 0.44);
}
.orders-panel {
  display: grid;
  gap: 16px;
}
.panel-header {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.order-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(118, 132, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(118, 90, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(15, 19, 39, 0.96), rgba(8, 10, 24, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 42px rgba(0,0,0,0.16);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.order-card:hover {
  transform: translateY(-2px);
  border-color: rgba(128, 144, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 24px 54px rgba(0,0,0,0.2);
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.order-total {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}
.order-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.order-items-count {
  color: #9da8c9;
  font-size: 0.84rem;
  font-weight: 700;
}
.order-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}
.order-timeline-step {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}
.order-timeline-step::after {
  content: "";
  position: absolute;
  top: 7px;
  left: calc(50% + 14px);
  right: -6px;
  height: 1px;
  background: rgba(118, 132, 255, 0.16);
}
.order-timeline-step:last-child::after {
  display: none;
}
.order-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 91, 255, 0.42);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 3px rgba(124, 91, 255, 0.14);
}
.order-timeline-label {
  color: #8f9abb;
  font-size: 0.76rem;
  line-height: 1.35;
}
.order-timeline-step.active .order-timeline-dot {
  background: linear-gradient(135deg, #9b5cff, #41c8ff);
  border-color: rgba(155, 92, 255, 0.64);
  box-shadow: 0 0 16px rgba(124, 91, 255, 0.2);
}
.order-timeline-step.active .order-timeline-label {
  color: #edf2ff;
}
.order-timeline-step.active::after {
  background: linear-gradient(90deg, rgba(155, 92, 255, 0.48), rgba(65, 200, 255, 0.24));
}
.order-badge {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.order-badge.paid { background: rgba(37, 211, 102, 0.16); color: #23a85b; }
.order-badge.pending { background: rgba(255, 189, 89, 0.16); color: #d79e32; }
.order-badge.refunded { background: rgba(255, 95, 148, 0.16); color: #d62d6a; }
.order-items {
  display: grid;
  gap: 10px;
}
.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.order-item:first-child {
  border-top: none;
}
.order-item strong {
  display: block;
}
.order-item-copy {
  display: grid;
  gap: 4px;
}
.order-item-copy span {
  color: #9da8c9;
  font-size: 0.82rem;
}
.order-actions {
  flex-shrink: 0;
}
.whatsapp-button { background: linear-gradient(135deg, #2bdc73, #17b95a); color: #fff; padding: 10px 14px; border-radius: 14px; text-decoration: none; font-size: 13px; font-weight: 700; box-shadow: 0 12px 24px rgba(37, 211, 102, 0.18); }
.whatsapp-button:hover { background: linear-gradient(135deg, #31e17a, #1cc160); }
.delivery-locked {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 189, 89, 0.22);
  background: rgba(255, 189, 89, 0.08);
  color: #d7b46a;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  cursor: not-allowed;
}
.empty-state {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.profile-premium {
  max-width: 1240px;
  isolation: isolate;
}

.profile-premium .panel {
  border-color: rgba(111, 141, 255, 0.18);
}

.profile-premium .profile-header {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(91, 199, 255, 0.17), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(169, 92, 255, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(15, 22, 45, 0.96), rgba(15, 11, 34, 0.96) 58%, rgba(8, 13, 29, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 28px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(126, 143, 255, 0.04);
}

.profile-header-glow {
  position: absolute;
  inset: auto 28px 0 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 255, 0.75), rgba(167, 95, 255, 0.75), transparent);
  opacity: 0.72;
}

.profile-premium .profile-header-top,
.profile-premium .profile-header-stats,
.profile-premium .profile-highlight-strip,
.profile-premium .profile-header-actions,
.profile-premium .profile-summary-note {
  position: relative;
  z-index: 1;
}

.profile-premium .profile-header-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
}

.profile-premium .profile-avatar-wrapper {
  width: 104px;
  height: 104px;
}

.profile-premium .profile-avatar-large {
  font-size: 2.9rem;
  font-weight: 900;
  border: 1px solid rgba(143, 211, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(87, 196, 255, 0.94), rgba(137, 94, 255, 0.94)),
    rgba(255,255,255,0.08);
  box-shadow:
    0 18px 42px rgba(49, 120, 255, 0.28),
    0 0 0 8px rgba(255,255,255,0.035);
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.profile-premium .profile-avatar-edit {
  right: -10px;
  bottom: 4px;
  width: auto;
  height: 32px;
  min-width: 56px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(42, 154, 255, 0.95), rgba(142, 85, 255, 0.95));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(91, 81, 255, 0.32);
}

.profile-identity {
  min-width: 0;
}

.profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 7px 12px;
  width: fit-content;
  border-radius: 999px;
  color: #91d7ff;
  background: rgba(65, 171, 255, 0.12);
  border: 1px solid rgba(105, 208, 255, 0.24);
  box-shadow: 0 0 24px rgba(65, 171, 255, 0.08);
}

.profile-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #6ed8ff;
  box-shadow: 0 0 14px rgba(110, 216, 255, 0.85);
}

.profile-premium .profile-name-input {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 14px 44px rgba(91, 156, 255, 0.2);
}

.profile-premium .profile-mini-tags span {
  background: rgba(14, 22, 44, 0.68);
  border-color: rgba(130, 151, 255, 0.2);
  color: #eaf2ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.profile-premium .profile-header-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-stat-card {
  position: relative;
  overflow: hidden;
}

.profile-premium .profile-header-stats div,
.profile-premium .profile-highlight-card,
.profile-glass-card,
.profile-action-card,
.profile-orders-premium {
  background:
    radial-gradient(circle at top left, rgba(83, 190, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(18, 24, 48, 0.84), rgba(9, 12, 30, 0.92));
  border-color: rgba(126, 143, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    0 22px 46px rgba(0,0,0,0.22);
}

.profile-premium .profile-header-stats strong {
  color: #f7fbff;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.profile-premium .profile-highlight-primary {
  border-color: rgba(81, 205, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 54px rgba(42, 155, 255, 0.12);
}

.profile-premium .profile-header-actions .primary,
.profile-premium .profile-header-actions .secondary {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 14px;
}

.profile-premium .profile-body {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
}

.profile-premium .help-card,
.profile-premium .profile-side-card,
.profile-premium .review-submit-card,
.profile-premium .orders-panel {
  border-radius: 24px;
}

.profile-action-card h2,
.profile-security-card h2,
.review-submit-card h2,
.profile-orders-premium .panel-header h2 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  letter-spacing: 0;
}

.profile-action-card {
  position: static;
  top: auto;
}

.profile-side-metrics div {
  background: rgba(255,255,255,0.035);
  border-color: rgba(126, 143, 255, 0.18);
}

.profile-security-status > span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #9be8ff;
  background: rgba(65, 190, 255, 0.1);
  border: 1px solid rgba(65, 190, 255, 0.18);
}

.profile-premium .review-star-picker {
  justify-content: space-between;
  padding: 7px;
  border-radius: 999px;
}

.profile-premium .review-star {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

.profile-orders-premium {
  padding: 24px;
  align-content: start;
}

.profile-orders-premium .panel-header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(126, 143, 255, 0.12);
}

.profile-orders-premium .order-card {
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(91, 173, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(17, 22, 44, 0.96), rgba(8, 11, 26, 0.96));
}

.profile-orders-premium .order-card-header strong {
  font-size: 1.08rem;
}

.profile-orders-premium .order-badge {
  border: 1px solid currentColor;
  letter-spacing: 0.04em;
}

.profile-orders-premium .order-item {
  padding: 14px;
  border: 1px solid rgba(126, 143, 255, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}

.profile-orders-premium .order-item + .order-item {
  border-top: 1px solid rgba(126, 143, 255, 0.12);
}

@media (max-width: 1024px) {
  .profile-premium .profile-header {
    padding: 22px;
  }
  .profile-premium .profile-header-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .profile-action-card {
    position: static;
  }
  .profile-highlight-strip {
    grid-template-columns: 1fr;
  }
  .profile-body {
    grid-template-columns: 1fr;
  }
  .profile-header-actions,
  .profile-header-stats {
    width: 100%;
  }
  .profile-header-actions .primary,
  .profile-header-actions .secondary {
    width: 100%;
  }
  .order-card-summary,
  .order-item {
    grid-template-columns: 1fr;
  }
  .order-timeline {
    grid-template-columns: 1fr;
  }
  .order-timeline-step::after {
    display: none;
  }
  .order-card-summary {
    justify-content: start;
    align-items: start;
  }
  .admin-hero-stats,
  .admin-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .profile-premium {
    margin: 16px auto;
    padding: 0 10px;
  }

  .profile-premium .profile-header {
    padding: 18px;
    border-radius: 20px;
  }

  .profile-premium .profile-header-top {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .profile-premium .profile-avatar-wrapper {
    width: 86px;
    height: 86px;
  }

  .profile-premium .profile-avatar-large {
    font-size: 2.35rem;
  }

  .profile-premium .profile-name-input {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .profile-premium .profile-header-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .profile-premium .profile-header-stats div,
  .profile-premium .profile-highlight-card,
  .profile-glass-card,
  .profile-action-card,
  .profile-orders-premium {
    padding: 16px;
    border-radius: 18px;
  }

  .profile-premium .profile-mini-tags {
    gap: 7px;
  }

  .profile-premium .profile-mini-tags span {
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .profile-premium .profile-body {
    gap: 14px;
  }

  .profile-premium .review-star-picker {
    border-radius: 16px;
  }

  .profile-premium .review-star {
    width: 34px;
    height: 34px;
  }

  .profile-orders-premium .order-card {
    padding: 16px;
    border-radius: 18px;
  }

  .profile-orders-premium .order-card-summary {
    display: grid;
    gap: 6px;
  }

  .profile-orders-premium .order-item {
    padding: 12px;
  }

  .profile-orders-premium .whatsapp-button,
  .profile-orders-premium .delivery-locked {
    width: 100%;
  }
}
.overlay { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.35); z-index: 20; }
.overlay.open { display: block; }
body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal.open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 14, 0.72);
  backdrop-filter: blur(14px);
}

.product-modal-card {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 38px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(135, 157, 255, 0.22);
  background:
    radial-gradient(circle at 15% 0%, rgba(92, 212, 255, 0.13), transparent 32%),
    radial-gradient(circle at 85% 0%, rgba(171, 89, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(13, 16, 37, 0.98), rgba(5, 7, 18, 0.99));
  box-shadow: 0 34px 100px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.06);
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: #101322;
  font-weight: 900;
}

.product-modal-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 12px;
  background:
    radial-gradient(circle at center, rgba(99, 95, 255, 0.18), transparent 48%),
    rgba(4, 6, 16, 0.62);
  border: 1px solid rgba(135, 157, 255, 0.14);
  border-radius: 18px;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,0.34));
}

.product-modal-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px 28px 34px 34px;
  overflow: auto;
}

.product-modal-buy-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 34px 34px 34px 20px;
  overflow: auto;
  border-left: 1px solid rgba(135, 157, 255, 0.12);
  background:
    radial-gradient(circle at 70% 0%, rgba(157, 92, 255, 0.14), transparent 34%),
    rgba(7, 9, 22, 0.32);
}

.product-modal-kicker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-modal-kicker span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #dfe6ff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(145, 162, 246, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-modal-kicker .product-modal-modality {
  color: #dff6ff;
  background: linear-gradient(135deg, rgba(92, 169, 255, 0.18), rgba(157, 92, 255, 0.15));
  border-color: rgba(92, 169, 255, 0.34);
  box-shadow: 0 0 18px rgba(92, 169, 255, 0.12);
}

.product-modal-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.product-modal-copy p {
  margin: 0;
  color: #c8d1eb;
  line-height: 1.6;
}

.product-modal-description {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
  white-space: pre-line;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 184, 255, 0.42) transparent;
}

.product-modal-description::-webkit-scrollbar {
  width: 5px;
}

.product-modal-description::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(126, 184, 255, 0.42);
}

.product-modal-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal-benefits span {
  padding: 7px 10px;
  border-radius: 10px;
  color: #eef4ff;
  background: rgba(82, 221, 255, 0.08);
  border: 1px solid rgba(82, 221, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-modal-pricing {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(126, 143, 255, 0.18);
  background: rgba(6, 8, 22, 0.62);
}

.product-modal-price-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
  align-items: center;
}

.product-modal-price-head span {
  display: block;
  color: #96a2c8;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-modal-price-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 2px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(88, 255, 170, 0.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(88, 255, 170, 0.16), transparent 48%),
    rgba(5, 14, 20, 0.58);
  color: #54ffa8;
  font-size: 1.85rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.035em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 30px rgba(59, 255, 151, 0.12);
  text-shadow: 0 0 22px rgba(59, 255, 151, 0.28);
}

.product-modal-price-head select {
  min-height: 42px;
  border-radius: 12px;
  background: rgba(10, 13, 31, 0.92);
  border-color: rgba(168, 128, 255, 0.38);
  font-weight: 850;
}

.product-modal-durations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

.product-modal-durations::-webkit-scrollbar {
  display: none;
}

.product-modal-duration {
  min-width: 0;
  min-height: 74px;
  padding: 9px 8px;
  border-radius: 12px;
  border: 1px solid rgba(145, 162, 246, 0.14);
  background: rgba(255,255,255,0.035);
  color: #eef3ff;
  display: grid;
  align-content: center;
  gap: 3px;
  text-align: left;
}

.product-modal-duration span,
.product-modal-duration em {
  color: #aeb9d7;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.product-modal-duration strong {
  color: #ffffff;
  font-size: clamp(0.86rem, 1.25vw, 0.98rem);
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.product-modal-duration.active {
  border-color: rgba(98, 216, 255, 0.42);
  background: linear-gradient(135deg, rgba(79, 192, 255, 0.17), rgba(158, 91, 255, 0.16));
  box-shadow: 0 0 22px rgba(95, 166, 255, 0.16);
}

.product-modal-buy {
  min-height: 50px;
  border-radius: 14px;
}

.auth-card, .profile, .admin {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(8, 10, 20, 0.92), rgba(12, 16, 32, 0.96));
  border: 1px solid rgba(118, 132, 255, 0.12);
  border-radius: 24px;
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), var(--shadow);
}
.auth-card {
  max-width: 980px;
  margin: 30px auto;
  grid-template-columns: minmax(520px, 1.4fr) minmax(320px, 0.6fr);
  align-items: start;
}
.auth-card > div, form, .panel {
  background: linear-gradient(180deg, rgba(17, 22, 42, 0.96), rgba(10, 12, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), var(--shadow);
}
form { display: grid; gap: 12px; align-content: start; }
.auth-forms-shell {
  display: grid;
  gap: 16px;
  align-content: start;
}
.auth-forms-shell form {
  min-height: 0;
}
.auth-card > div { 
  grid-row: span 2; 
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0 0 32px;
  min-height: auto;
  overflow: visible;
}
.auth-card .hero-logo {
  width: calc(100% + 40px);
  max-width: none;
  height: auto;
  margin: -24px -20px 4px;
  transform: scale(1);
}
.auth-card > div .eyebrow {
  margin: 0 0 4px;
}
.auth-card > div h1 {
  margin: 0 0 12px;
}
.auth-card > div p:not(.eyebrow) {
  margin: 0;
}

.auth-feedback {
  display: block;
  color: #991b1b;
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.6);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.auth-feedback[hidden] {
  display: none;
}
.auth-note {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.auth-inline-link,
.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8dbfff;
  font-weight: 700;
  justify-self: start;
}
.auth-inline-link:hover,
.text-link:hover {
  color: #bfdcff;
  text-decoration: underline;
}
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 7, 16, 0.72);
  backdrop-filter: blur(10px);
}
.auth-modal[hidden] {
  display: none !important;
}
.auth-modal-card {
  width: min(420px, 100%);
  position: relative;
}
.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.tab { background: rgba(255,255,255,0.04); border: 1px solid var(--line); padding: 11px 14px; border-radius: 12px; font-weight: 800; color: var(--text); }
.tab.active { background: linear-gradient(90deg, var(--brand), #2f8bff); color: #fff; border-color: transparent; box-shadow: 0 12px 28px rgba(73, 86, 255, 0.22); }
.table-wrap { overflow-x: auto; background: linear-gradient(180deg, rgba(17, 22, 42, 0.96), rgba(10, 12, 22, 0.96)); border: 1px solid var(--line); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-size: 13px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-layout { display: grid; grid-template-columns: 360px 1fr; gap: 22px; align-items: start; }
.category-admin-main {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}
.admin {
  display: grid;
  gap: 18px;
}
.admin-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}
.admin-hero-copy {
  display: grid;
  gap: 10px;
}
.admin-hero-copy h1,
.admin-section-head h2 {
  margin: 0;
}
.admin-hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.admin-hero-stat {
  min-width: 0;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(118,132,255,0.12);
}
.admin-hero-stat.active {
  border-color: rgba(125, 147, 255, 0.24);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.admin-hero-stat span {
  display: block;
  color: #9da8c9;
  font-size: 0.74rem;
  margin-bottom: 6px;
}
.admin-hero-stat strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
}
.admin-tabs-shell {
  padding: 14px;
}
.admin-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.admin-tabs .tab {
  min-height: 66px;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 4px;
  border-radius: 16px;
}
.admin-tabs .tab small {
  color: #9da8c9;
  font-size: 0.74rem;
}
.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-section-head > div:first-child {
  min-width: 0;
  flex: 1 1 320px;
}
.admin-section-head h2 {
  margin: 6px 0 0;
  min-width: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.admin-section-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-section-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(118,132,255,0.14);
  color: #eef2ff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: anywhere;
}
.admin-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.admin-filter-head > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1 1 320px;
}
.admin-filter-head span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ec5ff;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.admin-filter-head small {
  color: #a8b3d4;
  font-size: 0.84rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.category-order-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid rgba(118, 132, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(28, 44, 88, 0.55), rgba(28, 18, 62, 0.38));
}
.category-order-tools strong,
.category-order-tools span {
  display: block;
}
.category-order-tools span {
  margin-top: 3px;
  color: #aeb8d8;
  font-size: 0.86rem;
}
.category-order-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}
.category-order-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(118, 132, 255, 0.16);
  border-radius: 16px;
  background: rgba(14, 19, 43, 0.72);
  min-height: 52px;
}
.category-order-rank {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(116, 67, 255, 0.65), rgba(47, 139, 255, 0.58));
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
}
.category-order-item strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.category-order-actions {
  display: flex;
  gap: 6px;
}
.category-order-actions button {
  width: 34px;
  min-height: 32px;
  padding: 0;
  border-radius: 11px;
  font-size: 1rem;
  line-height: 1;
}
.category-order-actions button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.admin-layout form,
.admin-layout .forms {
  display: grid;
  gap: 16px;
}
.admin-layout form h2,
.admin-layout .forms h2 {
  margin: 0 0 4px;
}
.admin-layout input,
.admin-layout select,
.admin-layout textarea {
  border-radius: 14px;
}
.admin-discount-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(118, 132, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36, 51, 99, 0.48), rgba(22, 17, 52, 0.34));
}
.admin-discount-card strong {
  display: block;
  font-size: 0.95rem;
}
.admin-discount-card small {
  display: block;
  margin-top: 4px;
  color: #aeb8d8;
  line-height: 1.35;
}
.admin-discount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.admin-discount-grid label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #9ed4ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-discount-grid input {
  min-height: 42px;
  text-align: center;
}
.admin-layout .table-wrap {
  border-radius: 22px;
  padding: 20px;
  overflow-x: auto;
  overflow-y: visible;
}
.admin-layout .table-wrap table {
  width: 100%;
  min-width: 760px;
}
.admin-filter-bar {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 0 0 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(118,132,255,0.1);
  margin-bottom: 6px;
}
.admin-filter-field {
  display: grid;
  gap: 6px;
  min-width: 200px;
  flex: 1 1 220px;
}
.admin-filter-field span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ec5ff;
}
.admin-filter-reset {
  white-space: nowrap;
  min-height: 48px;
  align-self: end;
}
.admin-layout .table-wrap tr:hover td {
  background: rgba(255,255,255,0.015);
}
.forms {
  display: grid;
  gap: 18px;
}
.forms > form {
  background: linear-gradient(180deg, rgba(17, 22, 42, 0.96), rgba(10, 12, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.badge { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: #eef2ff; color: #3730a3; font-weight: 800; font-size: 12px; }
.notice { padding: 14px 16px; background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 8px; color: #ffd48a; }
.form-help { margin: -4px 0 4px; color: var(--muted); font-size: 13px; }
.current-image {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}
.current-image img,
.product-admin-cell img {
  width: 74px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.product-admin-cell {
  display: grid;
  grid-template-columns: 74px minmax(180px, 1fr);
  gap: 12px;
  align-items: center;
}
.admin-product-description {
  margin: 4px 0 0;
  color: #b7c3e6;
  line-height: 1.36;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.admin-product-description.expanded {
  display: block;
  overflow: visible;
}
.admin-desc-toggle {
  margin-top: 4px;
  padding: 0;
  color: #8ed7ff;
  font-size: 0.82rem;
  font-weight: 800;
}
.page-shell {
  display: grid;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 42px 40px 56px;
  box-shadow: none;
}
.page-shell .panel {
  background: linear-gradient(180deg, rgba(18, 22, 45, 0.94), rgba(9, 11, 28, 0.96));
  border: 1px solid rgba(118, 132, 255, 0.14);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 26px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  animation: panelRise 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.page-shell .panel:hover {
  transform: translateY(-2px);
  border-color: rgba(128, 144, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 70px rgba(0, 0, 0, 0.22);
}
.page-shell .accent-panel {
  position: relative;
  overflow: hidden;
  border-left: none;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(124, 43, 255, 0.16), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(47, 139, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(19, 15, 46, 0.96), rgba(9, 11, 29, 0.96));
}
.accent-panel {
  border-left: none;
  background: linear-gradient(180deg, rgba(19, 15, 46, 0.96), rgba(9, 11, 29, 0.96));
}
.page-shell .accent-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(141, 89, 255, 0.32);
  pointer-events: none;
}
.page-shell h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}
.page-shell .eyebrow {
  margin: 0 0 10px;
  color: #7c67ff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.info-grid, .faq-list { display: grid; gap: 16px; }
.info-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.contact-hero { gap: 18px; }
.contact-title { max-width: 12ch; }
.contact-copy {
  max-width: 62ch;
  margin: 0;
  color: #b8c0da;
  font-size: 1.04rem;
  line-height: 1.72;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-grid { margin-top: 2px; }
.contact-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  min-height: 210px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 145, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 48px rgba(0, 0, 0, 0.2);
}
.contact-card h2 {
  margin: 0;
  font-size: 1.12rem;
}
.contact-card p {
  margin: 0;
  color: #b8c0da;
  line-height: 1.7;
}
.contact-card a {
  width: fit-content;
  margin-top: auto;
  color: #edf2ff;
  font-weight: 700;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(124, 145, 255, 0.34);
}
.contact-card a:hover {
  color: #ffffff;
  border-bottom-color: rgba(124, 145, 255, 0.68);
}
.admin-product-row {
  transition: opacity .2s ease, filter .2s ease, background-color .2s ease;
}
.admin-product-row.is-inactive {
  opacity: .48;
  filter: grayscale(.9);
  background: rgba(122, 132, 158, .055);
}
.admin-product-row.is-inactive:hover {
  opacity: .72;
}
.admin-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(116, 132, 177, .28);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.admin-stock-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8b95ad;
}
.admin-stock-status.is-active {
  color: #60f2ac;
  border-color: rgba(44, 218, 136, .32);
  background: rgba(26, 164, 101, .1);
}
.admin-stock-status.is-active::before {
  background: #40e89a;
  box-shadow: 0 0 9px rgba(64, 232, 154, .65);
}
.admin-product-toggle {
  min-width: 96px;
}

.contact-hero-premium {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(16px, 2.2vw, 30px);
  padding: clamp(18px, 2.8vw, 34px);
  border: 1px solid rgba(126, 98, 255, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(83, 184, 255, 0.18), transparent 35%),
    radial-gradient(circle at 86% 16%, rgba(156, 90, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(12, 20, 42, 0.96), rgba(24, 13, 46, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.26),
    0 0 42px rgba(126, 88, 255, 0.12);
  overflow: hidden;
}

.contact-hero-premium::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 196, 255, 0.42), rgba(158, 90, 255, 0.72), transparent);
  box-shadow: 0 0 20px rgba(124, 88, 255, 0.36);
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
}

.contact-hero-copy h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: #c3cbe2;
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  line-height: 1.55;
}

.contact-status-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(113, 208, 255, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(14, 30, 58, 0.82), rgba(18, 12, 36, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 46px rgba(0, 0, 0, 0.24);
}

.contact-live-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #31f08d;
  box-shadow: 0 0 0 8px rgba(49, 240, 141, 0.1), 0 0 22px rgba(49, 240, 141, 0.55);
}

.contact-status-card small {
  color: #7fd6ff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-status-card strong {
  font-size: clamp(1.6rem, 2.15vw, 2.25rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-status-card p {
  margin: 0;
  color: #c3cbe2;
  line-height: 1.45;
}

.contact-status-card a {
  width: fit-content;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid rgba(92, 196, 255, 0.28);
  border-radius: 999px;
  background: rgba(64, 158, 255, 0.12);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.contact-card-premium {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-width: 0;
  min-height: 154px;
  padding: 14px;
  border: 1px solid rgba(101, 122, 255, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(89, 174, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(14, 18, 38, 0.94), rgba(8, 10, 25, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card-premium:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 207, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(118, 88, 255, 0.12);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  color: #f8fbff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(63, 174, 255, 0.24), rgba(142, 91, 255, 0.24));
  border: 1px solid rgba(115, 200, 255, 0.24);
  box-shadow: 0 0 24px rgba(112, 94, 255, 0.14);
}

.contact-card-premium h2 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-card-premium p {
  margin: 0;
  color: #b8c0da;
  line-height: 1.42;
  font-size: 0.88rem;
}

.contact-card-premium a,
.contact-card-note {
  color: #f7fbff;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .contact-hero-premium {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-hero-premium {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .contact-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    line-height: 1.02;
  }

  .contact-hero-copy {
    gap: 8px;
  }

  .contact-hero-copy p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .contact-actions {
    gap: 8px;
  }

  .contact-actions .primary,
  .contact-actions .secondary {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .contact-status-card {
    min-height: 0;
    padding: 12px;
    gap: 6px;
  }

  .contact-live-dot {
    width: 9px;
    height: 9px;
  }

  .contact-status-card strong {
    font-size: 1.45rem;
  }

  .contact-status-card p {
    display: none;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .contact-card-premium {
    min-height: 112px;
    padding: 10px;
    gap: 7px;
  }

  .contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .contact-card-premium h2 {
    margin-bottom: 3px;
    font-size: 0.86rem;
  }

  .contact-card-premium p {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .contact-card-premium a,
  .contact-card-note {
    font-size: 0.78rem;
  }
}

.page-shell:has(.contact-hero-premium) {
  gap: 14px !important;
  padding-top: clamp(14px, 2vh, 22px) !important;
  padding-bottom: clamp(12px, 2vh, 20px) !important;
}

@media (min-width: 900px) {
  .page-shell:has(.contact-hero-premium) {
    min-height: auto !important;
    align-content: start !important;
  }
}

/* Contact page must fit in one desktop viewport */
@media (min-width: 900px) {
  .contact-hero-premium {
    min-height: 0 !important;
    padding: 18px 24px !important;
    gap: 18px !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr) !important;
  }

  .contact-hero-copy {
    gap: 9px !important;
  }

  .contact-hero-copy h1 {
    max-width: 22ch !important;
    font-size: clamp(2rem, 3vw, 3.1rem) !important;
    line-height: 1.02 !important;
  }

  .contact-hero-copy p:not(.eyebrow) {
    max-width: 62ch !important;
    font-size: 0.96rem !important;
    line-height: 1.45 !important;
  }

  .contact-actions {
    margin-top: 0 !important;
  }

  .contact-actions .primary,
  .contact-actions .secondary {
    min-height: 44px !important;
    padding: 0 18px !important;
  }

  .contact-status-card {
    min-height: 0 !important;
    padding: 18px !important;
    gap: 8px !important;
  }

  .contact-status-card strong {
    font-size: 1.8rem !important;
  }

  .contact-status-card p {
    font-size: 0.92rem !important;
  }

  .contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }

  .contact-card-premium {
    min-height: 128px !important;
    padding: 12px !important;
    gap: 8px !important;
  }

  .contact-icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 11px !important;
    font-size: 0.76rem !important;
  }

  .contact-card-premium h2 {
    margin-bottom: 4px !important;
    font-size: 0.92rem !important;
  }

  .contact-card-premium p {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .contact-card-premium a,
  .contact-card-note {
    font-size: 0.84rem !important;
  }
}

.about-page {
  display: grid;
  gap: 26px;
}

.about-hero,
.about-split,
.about-payments,
.about-services,
.about-commitment {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(126, 143, 255, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(92, 169, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(157, 92, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 18, 43, 0.96), rgba(6, 8, 22, 0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 24px 58px rgba(0,0,0,0.22);
}

.about-hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(26px, 4vw, 46px);
}

.about-hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 820px;
  isolation: isolate;
}

.about-hero-copy::before {
  content: "CUENTASSTREAMING UY";
  position: absolute;
  top: -18px;
  left: -8px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143, 199, 255, 0.1);
  font-size: clamp(2.8rem, 8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0.03em;
  opacity: 0.7;
  pointer-events: none;
}

.about-page .eyebrow {
  position: relative;
  width: fit-content;
  padding: 7px 13px 7px 30px;
  border-radius: 999px;
  color: #9fd0ff;
  border: 1px solid rgba(92, 169, 255, 0.24);
  background:
    radial-gradient(circle at 14px 50%, rgba(92, 169, 255, 0.8) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(92, 169, 255, 0.16), rgba(157, 92, 255, 0.13));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 0 24px rgba(92, 169, 255, 0.12);
  letter-spacing: 0.095em;
}

.about-page .eyebrow::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.045);
  pointer-events: none;
}

.about-hero-copy h1 {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: clamp(2.75rem, 5.4vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  background: linear-gradient(92deg, #ffffff 0%, #f4f7ff 36%, #7ec7ff 64%, #b18cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 18px 38px rgba(92, 169, 255, 0.1));
}

.about-hero-copy h1::after {
  content: "";
  display: block;
  width: min(260px, 58%);
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(92, 169, 255, 0), #5ca9ff 18%, #a56cff 68%, rgba(165, 108, 255, 0));
  box-shadow: 0 0 24px rgba(92, 169, 255, 0.32);
}

.about-hero-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 680px;
  color: #b9c3de;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-trust-card {
  align-self: center;
  min-height: 310px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(92, 169, 255, 0.28);
  background:
    radial-gradient(circle at 0 0, rgba(92, 169, 255, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  display: grid;
  gap: 20px;
  align-content: center;
  box-shadow: 0 0 34px rgba(92, 169, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.about-trust-card span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #9fd0ff;
  background: rgba(92, 169, 255, 0.13);
  border: 1px solid rgba(92, 169, 255, 0.24);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-trust-card strong {
  color: #fff;
  font-size: clamp(1.18rem, 1.75vw, 1.52rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.about-trust-card div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-trust-card small {
  border-radius: 999px;
  border: 1px solid rgba(126, 143, 255, 0.16);
  background: rgba(255,255,255,0.045);
  color: #e8edff;
}

.about-trust-card small {
  padding: 8px 10px;
  font-weight: 750;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-proof-grid article,
.about-benefits div {
  border-radius: 20px;
  border: 1px solid rgba(126, 143, 255, 0.14);
  background: linear-gradient(180deg, rgba(16, 20, 41, 0.96), rgba(8, 10, 24, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-proof-grid article {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.about-proof-grid article:hover,
.about-benefits div:hover {
  transform: translateY(-3px);
  border-color: rgba(92, 169, 255, 0.32);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22), 0 0 22px rgba(92, 169, 255, 0.1);
}

.about-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #081020;
  background: linear-gradient(135deg, #5ca9ff, #9d5cff);
  font-weight: 950;
}

.about-proof-grid strong,
.about-benefits strong {
  color: #fff;
  font-size: 1.08rem;
}

.about-proof-grid p,
.about-benefits p,
.about-split > div > p,
.about-commitment p {
  margin: 0;
  color: #b9c3de;
  line-height: 1.65;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 30px;
}

.about-split::before,
.about-payments::before,
.about-services::before,
.about-commitment::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: min(360px, 44%);
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 169, 255, 0.16), rgba(157, 92, 255, 0.08) 42%, transparent 72%);
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
}

.about-payments::before {
  background: radial-gradient(circle, rgba(62, 216, 255, 0.16), rgba(92, 169, 255, 0.08) 42%, transparent 72%);
}

.about-services::before {
  background: radial-gradient(circle, rgba(157, 92, 255, 0.16), rgba(92, 169, 255, 0.08) 42%, transparent 72%);
}

.about-commitment::before {
  background: radial-gradient(circle, rgba(80, 255, 190, 0.12), rgba(92, 169, 255, 0.08) 42%, transparent 72%);
}

.about-split h2,
.about-section-head h2,
.about-commitment h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  width: fit-content;
  max-width: 920px;
  color: #fff;
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  background: linear-gradient(92deg, #ffffff 0%, #f6f8ff 48%, #8fc7ff 76%, #a56cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 14px 32px rgba(92, 169, 255, 0.1));
}

.about-split h2::before,
.about-section-head h2::before,
.about-commitment h2::before {
  position: absolute;
  right: clamp(-160px, -10vw, -72px);
  top: -18px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143, 199, 255, 0.08);
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.46;
  pointer-events: none;
}

.about-split h2::before {
  content: "01";
}

.about-payments .about-section-head h2::before {
  content: "02";
}

.about-services .about-section-head h2::before {
  content: "03";
}

.about-commitment h2::before {
  content: "04";
}

.about-split h2::after,
.about-section-head h2::after,
.about-commitment h2::after {
  content: "";
  display: block;
  width: min(210px, 58%);
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(92,169,255,0), #5ca9ff 14%, #9d5cff 62%, rgba(157,92,255,0));
  box-shadow: 0 0 24px rgba(92, 169, 255, 0.34);
}

.about-split > div:first-child,
.about-section-head,
.about-commitment > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: start;
}

.about-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-benefits div {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.about-benefits span {
  color: #8fbfff;
  font-size: 0.82rem;
  font-weight: 950;
}

.about-payments,
.about-services,
.about-commitment {
  padding: 28px;
}

.about-payment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.about-payment-chip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(126, 143, 255, 0.16);
  background:
    radial-gradient(circle at 16% 20%, rgba(92, 169, 255, 0.14), transparent 34%),
    rgba(255,255,255,0.045);
  color: #e8edff;
  font-weight: 850;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.about-payment-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 169, 255, 0.34);
  background:
    radial-gradient(circle at 16% 20%, rgba(92, 169, 255, 0.2), transparent 36%),
    rgba(255,255,255,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18), 0 0 22px rgba(92, 169, 255, 0.08);
}

.about-payment-chip img {
  width: 58px;
  height: 30px;
  flex: 0 0 58px;
  object-fit: contain;
  border-radius: 7px;
}

.about-payment-chip > span {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.about-payment-chip b,
.about-payment-chip small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-payment-chip b {
  line-height: 1;
  font-size: 0.95rem;
}

.about-payment-chip small {
  color: #9fd0ff;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.05;
}

.about-payment-mp img {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.about-payment-santander img {
  width: 104px;
  height: 40px;
  flex-basis: 104px;
}

.about-payment-midinero img,
.about-payment-oca img {
  width: 108px;
  height: 46px;
  flex-basis: 108px;
  transform: scale(1.28);
  transform-origin: center;
}

.about-payment-midinero img {
  width: 88px;
  height: 38px;
  flex-basis: 88px;
  transform: scale(1.1);
}

.about-payment-oca img {
  width: 82px;
  height: 34px;
  flex-basis: 82px;
  transform: scale(1.04);
}

.about-payment-abitab img {
  width: 44px;
  height: 24px;
  flex-basis: 44px;
}

.about-payment-santander,
.about-payment-midinero,
.about-payment-oca {
  gap: 14px;
}

.about-payment-midinero,
.about-payment-oca {
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

.about-payment-midinero > span,
.about-payment-oca > span {
  min-width: 0;
  width: 100%;
  text-align: center;
}

.about-service-marquee {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
}

.about-service-chip {
  min-height: 50px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(126, 143, 255, 0.16);
  background:
    radial-gradient(circle at 16% 20%, rgba(92, 169, 255, 0.12), transparent 34%),
    rgba(255,255,255,0.045);
  color: #dfe7ff;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.about-service-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 169, 255, 0.34);
  background:
    radial-gradient(circle at 16% 20%, rgba(92, 169, 255, 0.18), transparent 36%),
    rgba(255,255,255,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18), 0 0 22px rgba(92, 169, 255, 0.08);
}

.about-service-chip img {
  width: 54px;
  height: 26px;
  flex: 0 0 54px;
  object-fit: contain;
}

.about-service-chip b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
}

.about-service-netflix img,
.about-service-spotify img,
.about-service-paramount img {
  width: 66px;
  flex-basis: 66px;
}

.about-service-youtube img {
  width: 24px;
  flex-basis: 24px;
}

.about-service-crunchyroll img,
.about-service-apple img {
  width: 32px;
  flex-basis: 32px;
}

.about-commitment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.faq-list details {
  background: linear-gradient(180deg, rgba(14, 18, 38, 0.96), rgba(9, 11, 27, 0.96));
  border: 1px solid rgba(117, 129, 255, 0.12);
  border-radius: 22px;
  padding: 20px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 44px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.faq-list details[open] {
  background: linear-gradient(180deg, rgba(18, 22, 46, 0.98), rgba(10, 12, 30, 0.98));
  border-color: rgba(110, 134, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 26px 54px rgba(0, 0, 0, 0.22);
}
.faq-list details:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 145, 255, 0.2);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.02rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: #9d6bff;
  font-size: 1.3rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(124, 91, 255, 0.12);
  border: 1px solid rgba(124, 91, 255, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 16px 0 0;
  color: #b7bfd8;
  line-height: 1.76;
}
.faq-list details[open] summary::after {
  content: "-";
  background: rgba(52, 226, 255, 0.08);
  border-color: rgba(52, 226, 255, 0.18);
}
.faq-list details + details {
  margin-top: 10px;
}
details summary { cursor: pointer; font-weight: 800; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 64px;
  margin-bottom: 32px;
}
.section-head h2 {
  margin: 0;
}
.featured-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  margin-bottom: 64px;
}
.featured-row {
  display: flex;
  gap: 14px;
  flex: 1;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: flex-start;
  contain: layout style;
}
.featured-row::-webkit-scrollbar {
  display: none;
}
.spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(145, 162, 246, 0.14);
  background: linear-gradient(135deg, rgba(157, 92, 255, 0.08), rgba(52, 226, 255, 0.06), rgba(255, 94, 208, 0.04));
  flex: 0 0 300px;
  min-width: 300px;
  min-height: 420px;
  height: auto;
  overflow: visible;
  transition: transform 0.3s ease, background 0.3s ease;
}
.spotlight-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(19, 22, 46, 0.98), rgba(10, 12, 28, 0.98));
}
.spotlight-card img {
  transition: transform 0.38s ease, filter 0.38s ease;
}
.spotlight-card:hover img {
  transform: scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.description-brief {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.description-brief.hidden {
  display: none;
}
.description-full {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 0 0;
  max-height: 0;
  overflow: hidden;
  display: none;
  transition: max-height 0.3s ease;
}
.description-full.active {
  display: block;
  max-height: 120px;
  overflow: auto;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  font-weight: 900;
  color: #54ffa8;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(65, 255, 159, 0.2);
}
button.small {
  padding: 6px 10px;
  font-size: 12px;
}
.featured-nav {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.3);
  color: #4cc9f0;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.featured-nav:hover {
  background: rgba(76, 201, 240, 0.2);
  border-color: rgba(76, 201, 240, 0.6);
  color: #fff;
}
.featured-nav-prev {
  order: -1;
}
.featured-nav-next {
  order: 2;
}
.spotlight-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.spotlight-card h3 {
  margin: 6px 0 8px;
  /* Reserve space so titles never get visually cut off */
  font-size: 1.05rem;
  line-height: 1.15;
  display: block;
  /* allow up to 3 lines for long titles without truncation */
  min-height: calc(1.15em * 3);
  overflow: visible;
  word-break: break-word;
  padding-top: 6px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 45, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0); }
}

/* Home refresh */
body {
  font-family: Manrope, system-ui, sans-serif;
  background-color: #040612;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(132, 56, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(0, 204, 255, 0.1), transparent 20%),
    radial-gradient(circle at 70% 52%, rgba(115, 47, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #050714 0%, #02030b 100%);
}

.topbar {
  width: min(1480px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 18px 26px;
  border: 1px solid rgba(120, 135, 255, 0.16);
  border-radius: 24px;
  background: rgba(7, 10, 24, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.topbar nav {
  gap: 28px;
  font-size: 0.98rem;
}

.topbar nav a {
  position: relative;
}

.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.topbar nav a:hover::after {
  transform: scaleX(1);
}

.brand {
  width: 66px;
  height: 66px;
  border-color: rgba(80, 228, 255, 0.34);
  box-shadow: 0 20px 46px rgba(40, 158, 255, 0.18);
}

main {
  padding-top: 34px;
}

.hero {
  gap: clamp(28px, 4vw, 58px);
  min-height: auto;
  margin-bottom: 42px;
}

.hero-copy {
  gap: 24px;
  padding-top: 34px;
}

.hero .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #7d6dff;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.4vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 strong,
.hero h1 span {
  color: inherit;
}

.hero p {
  max-width: 620px;
  color: #b2bbd6;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 8px;
  gap: 14px;
}

.primary, .secondary, .ghost, .cart-button, .danger, .icon-button {
  min-height: 58px;
  border-radius: 16px;
}

.primary {
  background: linear-gradient(90deg, #7c2bff 0%, #2f8bff 100%);
  box-shadow: 0 18px 36px rgba(70, 76, 255, 0.28);
}

.ghost, .cart-button {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(132, 145, 255, 0.18);
}

.hero-stats {
  gap: 16px;
  margin-top: 8px;
}

.hero-stats div {
  border-radius: 18px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(14, 18, 40, 0.94), rgba(8, 10, 24, 0.94));
  border: 1px solid rgba(112, 123, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-stats strong {
  font-size: 2rem;
}

.hero-stats span {
  font-size: 1rem;
}

.hero-stage {
  min-height: 560px;
  padding: 0;
  justify-content: stretch;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 36px 0 12px;
  border-radius: 34px;
  border: 1px solid rgba(141, 89, 255, 0.58);
  background:
    radial-gradient(circle at 18% 18%, rgba(156, 87, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(15, 12, 35, 0.94), rgba(9, 10, 26, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(50, 210, 255, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.32);
}

.hero-media {
  inset: 78px 18px 30px 18px;
  min-height: auto;
  border-radius: 28px;
  border: 0;
  box-shadow: none;
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  filter: saturate(0.95);
}

.hero-stage-card {
  width: calc(100% - 72px);
  max-width: none;
  min-height: 368px;
  max-height: none;
  height: auto;
  margin: 36px auto 0;
  padding: 26px 28px;
  grid-template-columns: 190px 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 32px;
  row-gap: 14px;
  align-items: start;
  border-radius: 30px;
  border: 1px solid rgba(118, 131, 255, 0.12);
  background: linear-gradient(180deg, rgba(15, 18, 38, 0.88), rgba(8, 10, 24, 0.84));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.hero-stage-card::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: stretch;
  border-radius: 24px;
  background: rgba(6, 7, 18, 0.46);
  border: 1px solid rgba(88, 213, 255, 0.12);
  backdrop-filter: blur(4px);
}

.hero-stage-badge {
  position: relative;
  z-index: 2;
  grid-column: 1;
  margin: 12px 0 0 14px;
  width: max-content;
  background: rgba(104, 75, 255, 0.3);
  border: 1px solid rgba(151, 129, 255, 0.2);
}

.hero-stage-card h3 {
  grid-column: 2;
  margin: 16px 0 6px;
  min-height: auto;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1;
  color: #ffffff;
}

.hero-stage-features {
  grid-column: 2;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-stage-features span {
  font-size: 0.95rem;
  color: #edf3ff;
}

.hero-stage-features span::before {
  content: "o";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 10px;
  color: #9f6aff;
  border: 1px solid rgba(159, 106, 255, 0.5);
}

.hero-stage-price {
  grid-column: 2;
  margin-top: 2px;
  font-size: 1rem;
  color: #b2bbd6;
}

.hero-stage-price strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  color: #5277ff;
}

.hero-stage-card .primary {
  grid-column: 2;
  width: 190px;
  margin-top: 10px;
}

.ticker {
  margin: 22px 0 72px;
  border: 1px solid rgba(108, 120, 255, 0.12);
  border-radius: 22px;
  background: rgba(9, 11, 24, 0.86);
}

.ticker-track {
  gap: 54px;
  padding: 22px 24px;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.section-head {
  margin-top: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.featured-wrapper {
  margin-top: 24px;
  margin-bottom: 48px;
}

.featured-nav {
  background: rgba(82, 97, 255, 0.16);
  border-color: rgba(82, 97, 255, 0.32);
  color: #e8edff;
}

.spotlight-card {
  min-height: 450px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 18, 39, 0.96), rgba(8, 10, 24, 0.96));
  border: 1px solid rgba(110, 122, 255, 0.14);
}

.spotlight-card img {
  border-radius: 16px;
  aspect-ratio: 5 / 4;
}

.grid {
  gap: 18px;
}

.card {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 18, 38, 0.96), rgba(9, 11, 24, 0.96));
  border-color: rgba(112, 123, 255, 0.12);
}

.product img {
  height: 210px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.02);
}

.card-body {
  padding: 16px;
}

.product h3 {
  font-size: 1.08rem;
}

@media (max-width: 1024px) {
  .catalog-showcase {
    padding: 20px;
    border-radius: 24px;
  }

  .catalog-showcase-head {
    align-items: start;
  }

  .topbar {
    width: calc(100% - 24px);
    padding: 16px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-stage::before {
    inset: 18px 0 0;
  }

  .hero-stage-card {
    width: calc(100% - 34px);
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .hero-stage-card::before,
  .hero-stage-badge {
    grid-column: 1;
  }

  .hero-stage-card h3,
  .hero-stage-features,
  .hero-stage-price,
  .hero-stage-card .primary {
    grid-column: 1;
  }

  .hero-media {
    inset: 36px 12px 12px;
  }
}

@media (max-width: 850px) {
  .topbar { flex-wrap: wrap; }
  nav { order: 3; width: 100%; }
  .hero, .auth-card, .admin-layout, .toolbar { grid-template-columns: 1fr; }
  .hero-stage { min-height: 230px; }
  .hero-media { min-height: 230px; }
  .hero-stats { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
}

/* Hero remake */
.hero {
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
  gap: 12px;
  min-height: auto;
  align-items: center;
}

.hero-copy {
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.9rem, 4.1vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 520px;
  line-height: 1.65;
}

.hero-stage {
  min-height: 540px;
  padding: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}

.hero-stage-card::before {
  display: none;
  content: none;
}

.hero-stage-shell {
  position: relative;
  padding: 26px 0 34px;
  min-width: 0;
  overflow: hidden;
}

.hero-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  border: 1px solid rgba(131, 91, 255, 0.65);
  background: radial-gradient(circle at 22% 18%, rgba(168, 87, 255, 0.12), transparent 22%), linear-gradient(180deg, rgba(18, 14, 43, 0.98), rgba(10, 11, 28, 0.98));
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.hero-stage-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 404px;
  max-height: none;
  margin: 30px auto 0;
  padding: 24px 22px 22px;
  display: grid;
  grid-template-columns: 170px minmax(240px, 1fr) 86px;
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 18px;
  border-radius: 28px;
  border: 1px solid rgba(106, 121, 255, 0.18);
  background: linear-gradient(180deg, rgba(16, 18, 39, 0.82), rgba(10, 11, 27, 0.88));
  backdrop-filter: blur(14px);
  overflow: hidden;
  min-width: 0;
}

.hero-stage-poster-column,
.hero-stage-info,
.hero-stage-rail {
  position: relative;
  z-index: 1;
}

.hero-stage-poster-column {
  display: grid;
  gap: 14px;
  align-content: start;
  grid-column: 1;
  grid-row: 1;
}

.hero-stage-badge {
  width: max-content;
  margin: 0;
  padding: 10px 16px;
  background: rgba(116, 91, 255, 0.26);
  border: 1px solid rgba(161, 132, 255, 0.28);
  color: #f4efff;
  font-weight: 700;
  grid-column: auto;
}

.hero-stage-poster-frame {
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(77, 205, 255, 0.22);
  background: rgba(5, 8, 24, 0.84);
}

.hero-stage-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stage-info {
  display: grid;
  align-content: center;
  gap: 16px;
  padding-right: 8px;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

.hero-stage-label {
  margin: 0;
  font-size: 1rem;
  color: #f0f2ff;
  opacity: 0.92;
}

.hero-stage-card h3 {
  margin: 0;
  min-height: auto;
  padding-top: 0;
  font-size: clamp(2.1rem, 2.9vw, 2.9rem);
  line-height: 0.96;
  color: #ffffff;
  word-break: break-word;
  grid-column: auto;
}

.hero-stage-features {
  gap: 14px;
  margin: 0;
  min-height: auto;
  grid-column: auto;
}

.hero-stage-features span {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
}

.hero-stage-features span::before {
  content: "o";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(157, 92, 255, 0.75);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 3px rgba(157, 92, 255, 0.22);
}

.hero-stage-price {
  margin-top: 6px;
  color: #aeb7d5;
  grid-column: auto;
}

.hero-stage-price strong {
  color: #5176ff;
  font-size: 2.5rem;
}

.hero-stage-cta {
  width: auto;
  min-width: 0;
  margin-top: 4px;
  border-radius: 14px;
  justify-self: start;
  min-height: 38px;
  padding: 7px 12px;
  font-size: 0.88rem;
  line-height: 1;
}

.hero-stage-rail {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 8px;
  grid-column: 3;
  grid-row: 1;
}

.hero-rail-item {
  width: 100%;
  min-height: 78px;
  border-radius: 18px;
  padding: 0;
  background: rgba(4, 15, 38, 0.82);
  border: 1px solid rgba(72, 190, 255, 0.14);
  overflow: hidden;
  opacity: 0.52;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-rail-item.active,
.hero-rail-item:hover {
  opacity: 1;
  transform: translateX(-2px);
  border-color: rgba(72, 190, 255, 0.34);
}

.hero-rail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stage-arrow {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(58, 52, 120, 0.72);
  border: 1px solid rgba(116, 120, 255, 0.22);
  color: #ffffff;
  font-size: 2rem;
  display: grid;
  place-items: center;
}

.hero-stage-arrow-left {
  margin-right: -8px;
}

.hero-stage-arrow-right {
  margin-left: -8px;
}

.hero-stage-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  background: rgba(192, 198, 255, 0.4);
}

.hero-dot.active {
  width: 24px;
  background: linear-gradient(90deg, #905dff, #4a8fff);
}

.hero-media,
#heroTextTop,
#heroTextBottom,
.live-card,
.hero-desc-toggle,
#heroCardDescription {
  display: none !important;
}

.ticker {
  margin: 26px 0 58px;
  border: 1px solid rgba(92, 106, 255, 0.12);
  border-radius: 24px;
  background: rgba(11, 14, 31, 0.9);
}

.ticker-track {
  gap: 54px;
  padding: 20px 28px;
}

.ticker-track span {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage-arrow {
    display: none;
  }

  .hero-stage-card {
    width: 100%;
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .hero-stage-poster-frame {
    min-height: 260px;
  }

  .hero-stage-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(88px, 1fr);
  }
}

/* Exact hero */
.hero-ref {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 46px;
}

.hero-ref-copy {
  display: grid;
  gap: 22px;
}

.hero-ref-eyebrow {
  margin: 0;
  color: #7166ff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-ref-title {
  margin: 0;
  max-width: 640px;
  font-size: clamp(3.8rem, 5.5vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.hero-ref-title span {
  background: linear-gradient(90deg, #4d7cff 0%, #aa63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-ref-text {
  margin: 0;
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #b7bfd9;
}

.hero-ref-text strong {
  color: #6d86ff;
  font-weight: 800;
}

.hero-ref-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-ref-primary,
.hero-ref-secondary {
  min-width: 206px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-ref-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-ref-stats div {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 18, 38, 0.96), rgba(9, 11, 28, 0.96));
  border: 1px solid rgba(103, 117, 255, 0.14);
}

.hero-ref-stats strong {
  display: block;
  font-size: 2rem;
}

.hero-ref-stats span {
  color: #b7bfd9;
}

.hero-ref-stage {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  min-width: 0;
}

.hero-ref-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(58, 52, 120, 0.82);
  border: 1px solid rgba(118, 120, 255, 0.22);
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hero-ref-arrow-left { margin-right: -18px; }
.hero-ref-arrow-right { margin-left: -18px; }

.hero-ref-frame {
  position: relative;
  padding: 26px 0 34px;
}

.hero-ref-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  border: 1px solid rgba(135, 91, 255, 0.68);
  background: linear-gradient(180deg, rgba(19, 15, 45, 0.98), rgba(9, 10, 28, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.hero-ref-card {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  margin: 30px auto 0;
  min-height: 430px;
  padding: 28px 138px 24px 26px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  border-radius: 28px;
  border: 1px solid rgba(93, 112, 255, 0.14);
  background: linear-gradient(180deg, rgba(18, 20, 43, 0.86), rgba(10, 11, 30, 0.88));
  backdrop-filter: blur(16px);
}

.hero-ref-poster-wrap,
.hero-ref-info,
.hero-ref-rail {
  min-width: 0;
}

.hero-ref-poster-wrap {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-ref-badge {
  width: max-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(113, 92, 255, 0.3);
  border: 1px solid rgba(171, 142, 255, 0.26);
  color: #f3efff;
  font-weight: 700;
}

.hero-ref-poster-frame {
  min-height: 336px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(74, 203, 255, 0.2);
  background: rgba(7, 9, 24, 0.88);
}

.hero-ref-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ref-info {
  display: grid;
  align-content: center;
  gap: 16px;
  padding-right: 18px;
}

.hero-ref-kicker {
  margin: 0;
  color: #f2f5ff;
  font-size: 1rem;
  opacity: 0.94;
}

.hero-ref-info h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  line-height: 0.96;
  color: #ffffff;
}

.hero-ref-features {
  display: grid;
  gap: 14px;
}

.hero-ref-features span {
  position: relative;
  padding-left: 28px;
  color: #eef3ff;
  font-size: 1rem;
}

.hero-ref-features span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(157, 92, 255, 0.75);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 3px rgba(157, 92, 255, 0.22);
}

.hero-ref-price {
  color: #b7bfd9;
  font-size: 1rem;
}

.hero-ref-price strong {
  display: block;
  margin-top: 6px;
  color: #5378ff;
  font-size: 2.5rem;
}

.hero-ref-cta {
  width: auto;
  min-width: 0;
  border-radius: 14px;
  justify-self: start;
  min-height: 38px;
  padding: 7px 12px;
  font-size: 0.88rem;
  line-height: 1;
}

.expand-toggle,
.expand-toggle-grid {
  border-radius: 14px;
  width: fit-content;
  min-width: 0;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.hero-ref-rail {
  position: absolute;
  top: 26px;
  right: 18px;
  bottom: 26px;
  width: 82px;
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  gap: 10px;
}

.hero-ref-rail-item {
  min-height: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(7, 15, 36, 0.82);
  border: 1px solid rgba(74, 203, 255, 0.14);
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-ref-rail-item.active,
.hero-ref-rail-item:hover {
  opacity: 1;
  transform: translateX(-2px);
  border-color: rgba(74, 203, 255, 0.36);
}

.hero-ref-rail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ref-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-ref-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(188, 196, 255, 0.42);
}

.hero-ref-dot.active {
  width: 24px;
  background: linear-gradient(90deg, #905dff, #4a8fff);
}

.brand-strip {
  margin: 18px 0 60px;
  padding: 22px 28px;
  border-radius: 22px;
  border: 1px solid rgba(103, 117, 255, 0.12);
  background: rgba(11, 14, 31, 0.9);
}

.brand-strip-track {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-ref {
    grid-template-columns: 1fr;
  }

  .hero-ref-stage {
    grid-template-columns: 1fr;
  }

  .hero-ref-arrow {
    display: none;
  }

  .hero-ref-card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-ref-poster-frame {
    min-height: 280px;
  }

  .hero-ref-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(92px, 1fr);
  }

  .hero-ref-stats {
    grid-template-columns: 1fr;
  }
}

/* Final hero clone */
.hero-shot {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 46px;
  isolation: isolate;
}
.hero-shot::before,
.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-shot::before {
  background:
    linear-gradient(120deg, transparent 12%, rgba(110, 88, 255, 0.08) 34%, transparent 56%),
    linear-gradient(180deg, rgba(42, 68, 168, 0.05), transparent 46%);
  filter: blur(10px);
  animation: heroSweep 9s ease-in-out infinite;
}
.hero-shot::after {
  inset: auto 6% -8px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(130, 97, 255, 0), rgba(130, 97, 255, 0.68), rgba(52, 226, 255, 0.42), rgba(130, 97, 255, 0));
  animation: heroPulseLine 5.8s ease-in-out infinite;
}

.hero-shot-copy {
  display: grid;
  gap: 18px;
  max-width: 540px;
}
.hero-shot-copy > * {
  opacity: 0;
  animation: heroTextReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-shot-copy > *:nth-child(1) { animation-delay: 0.04s; }
.hero-shot-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-shot-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-shot-copy > *:nth-child(4) { animation-delay: 0.28s; }
.hero-shot-copy > *:nth-child(5) { animation-delay: 0.36s; }
.hero-shot-copy > *:nth-child(6) { animation-delay: 0.44s; }
.hero-shot-eyebrow {
  margin: 0;
  color: #7c67ff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.hero-shot-title {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(2.75rem, 4.35vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}
.hero-shot-title-line {
  display: block;
  white-space: nowrap;
}
.hero-shot-title-accent {
  background: linear-gradient(90deg, #4d7cff 0%, #aa63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 170% 100%;
  animation: premiumGlow 5.2s ease-in-out infinite;
}
.hero-shot-text {
  margin: 0;
  max-width: 500px;
  color: #b7bfd9;
  font-size: 1.15rem;
  line-height: 1.58;
}
.hero-shot-text strong { color: #6d86ff; }
.hero-shot-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-shot-primary, .hero-shot-secondary {
  position: relative;
  min-width: 174px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 520px) {
  .hero-shot-title {
    font-size: clamp(2.25rem, 9.4vw, 2.75rem);
  }
}
.hero-shot-primary::after,
.hero-shot-secondary::after {
  content: "";
  position: absolute;
  inset: -10% auto -10% -30%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: heroShimmer 6.6s ease-in-out infinite;
  pointer-events: none;
}
.hero-shot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hero-shot-stats div {
  position: relative;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 18, 38, 0.96), rgba(9, 11, 28, 0.96));
  border: 1px solid rgba(103, 117, 255, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  animation: heroTextReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-shot-stats div:nth-child(1) { animation-delay: 0.34s; }
.hero-shot-stats div:nth-child(2) { animation-delay: 0.42s; }
.hero-shot-stats div:nth-child(3) { animation-delay: 0.5s; }
.hero-shot-stats div::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 112, 255, 0), rgba(95, 112, 255, 0.58), rgba(95, 112, 255, 0));
  opacity: 0.42;
}
.hero-shot-stats div:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 144, 255, 0.24);
  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}
.hero-shot-stats strong { display: block; font-size: 2rem; }
.hero-shot-stats span { color: #b7bfd9; }

.hero-shot-stage {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  min-width: 0;
  overflow: visible;
}
.hero-shot-arrow {
  position: relative;
  width: 50px;
  height: 50px;
  min-width: 50px;
  padding: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(145deg, rgba(80, 72, 164, 0.92), rgba(47, 43, 104, 0.92));
  border: 1px solid rgba(150, 154, 255, 0.34);
  color: #fff;
  font-size: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.hero-shot-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(255,255,255,0.94);
  border-right: 3px solid rgba(255,255,255,0.94);
  filter: drop-shadow(0 0 8px rgba(119, 183, 255, 0.45));
}
.hero-shot-arrow::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(128, 139, 255, 0.2);
  pointer-events: none;
}
.hero-shot-arrow-left::before {
  transform: translateX(2px) rotate(-135deg);
}
.hero-shot-arrow-right::before {
  transform: translateX(-2px) rotate(45deg);
}
.hero-shot-arrow:hover {
  transform: scale(1.05);
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.2), transparent 34%),
    linear-gradient(145deg, rgba(94, 84, 188, 0.98), rgba(58, 52, 126, 0.98));
  border-color: rgba(170, 176, 255, 0.48);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.3),
    0 0 22px rgba(124, 111, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.16);
}
.hero-shot-arrow-left:hover {
  transform: translateX(12px) scale(1.05) !important;
}
.hero-shot-arrow-left { margin-right: -16px; }
.hero-shot-arrow-right { margin-left: -16px; }

.hero-shot-frame {
  position: relative;
  padding: 26px 0 34px;
  animation: heroTextReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.18s;
}
.hero-shot-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  border: 1px solid rgba(135, 91, 255, 0.68);
  background:
    radial-gradient(circle at 50% 0%, rgba(135, 91, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(19, 15, 45, 0.98), rgba(9, 10, 28, 0.98));
  box-shadow:
    0 0 0 1px rgba(135, 91, 255, 0.08),
    0 18px 44px rgba(135, 91, 255, 0.12),
    0 30px 70px rgba(0, 0, 0, 0.3);
  animation: premiumGlow 6s ease-in-out infinite;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.hero-shot-main {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  margin: 30px auto 0;
  min-height: 482px;
  padding: 28px 104px 24px 26px;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  border-radius: 28px;
  border: 1px solid rgba(93, 112, 255, 0.14);
  background: linear-gradient(180deg, rgba(18, 20, 43, 0.86), rgba(10, 11, 30, 0.88));
  backdrop-filter: blur(16px);
}
.hero-shot-main-grid {
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 18px 22px 22px;
}
.hero-shot-panel-head {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f4f2ff;
  font-size: 1.05rem;
  font-weight: 800;
}
.hero-shot-panel-head span {
  position: relative;
  padding: 0 22px;
}
.hero-shot-panel-head span::before,
.hero-shot-panel-head span::after {
  content: "*";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(180, 108, 255, 0.78);
  font-size: 0.78rem;
}
.hero-shot-panel-head span::before { left: 0; }
.hero-shot-panel-head span::after { right: 0; }
.hero-shot-panel-head span::before,
.hero-shot-panel-head span::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(180, 108, 255, 0.78);
  box-shadow: 0 0 16px rgba(180, 108, 255, 0.42);
  color: transparent;
  font-size: 0;
  animation: premiumGlow 4.8s ease-in-out infinite;
}
.hero-shot-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.hero-shot-card-grid.is-forward .hero-shot-product-card {
  animation: heroRotateForward 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-shot-card-grid.is-backward .hero-shot-product-card {
  animation: heroRotateBackward 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-shot-card-grid.is-forward .hero-shot-product-card:nth-child(1),
.hero-shot-card-grid.is-backward .hero-shot-product-card:nth-child(1) { animation-delay: 0.02s; }
.hero-shot-card-grid.is-forward .hero-shot-product-card:nth-child(2),
.hero-shot-card-grid.is-backward .hero-shot-product-card:nth-child(2) { animation-delay: 0.08s; }
.hero-shot-card-grid.is-forward .hero-shot-product-card:nth-child(3),
.hero-shot-card-grid.is-backward .hero-shot-product-card:nth-child(3) { animation-delay: 0.14s; }
.hero-shot-card-grid.is-forward .hero-shot-product-card:nth-child(4),
.hero-shot-card-grid.is-backward .hero-shot-product-card:nth-child(4) { animation-delay: 0.2s; }
.hero-shot-product-card {
  --card-neon-rgb: 135, 91, 255;
  --card-neon-border: rgba(135, 91, 255, 0.68);
  --card-neon-glow: rgba(135, 91, 255, 0.22);
  position: relative;
  padding: 0;
  display: grid;
  grid-template-rows: 136px minmax(0, 1fr);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 16, 36, 0.96), rgba(8, 10, 25, 0.98));
  border: 1px solid var(--card-neon-border);
  text-align: left;
  min-height: 310px;
  height: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 0 0 1px rgba(var(--card-neon-rgb), 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  animation: heroTextReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-shot-product-card:nth-child(1) { animation-delay: 0.18s; }
.hero-shot-product-card:nth-child(2) { animation-delay: 0.25s; }
.hero-shot-product-card:nth-child(3) { animation-delay: 0.32s; }
.hero-shot-product-card:nth-child(4) { animation-delay: 0.39s; }
.hero-shot-product-card::after {
  content: "";
  position: absolute;
  inset: -14% auto -24% -20%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: rotate(14deg);
  opacity: 0;
  pointer-events: none;
  animation: heroCardSheen 8.4s ease-in-out infinite;
}
.hero-shot-product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 0 0 1px rgba(var(--card-neon-rgb), 0.16),
    0 0 22px var(--card-neon-glow),
    0 18px 34px rgba(0,0,0,0.22);
}
.hero-shot-product-card:active {
  transform: translateY(-2px) scale(0.992);
}
.hero-shot-product-art {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--card-neon-rgb, 135, 91, 255), 0.18), transparent 55%),
    linear-gradient(180deg, rgba(12, 15, 32, 0.96), rgba(5, 7, 18, 0.98));
}
.hero-shot-product-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 24, 0.08), rgba(8, 10, 24, 0.72));
}
.hero-shot-product-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  transition: transform 0.32s ease, filter 0.32s ease;
}
.hero-shot-product-card:hover .hero-shot-product-art img {
  transform: scale(1.03);
  filter: saturate(1.06);
}
.hero-shot-product-copy {
  display: grid;
  grid-template-rows: minmax(2.35rem, auto) auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px 16px 16px;
}
.hero-shot-product-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.12;
  min-height: 2.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-shot-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-self: start;
}
.hero-shot-product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 137, 255, 0.16);
  color: rgba(239, 242, 255, 0.88);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}
.hero-shot-product-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 3.3rem;
}
.hero-shot-product-copy li {
  position: relative;
  padding-left: 17px;
  color: #ebeefe;
  font-size: 0.78rem;
  line-height: 1.24;
}
.hero-shot-product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(171, 103, 255, 0.8);
  box-shadow: inset 0 0 0 2px rgba(171, 103, 255, 0.24);
  transform: translateY(-50%);
}
.hero-shot-product-price {
  margin-top: auto;
  color: #e6eaff;
  font-size: 0.86rem;
  align-self: end;
}
.hero-shot-product-price strong {
  margin-left: 6px;
  font-size: 1.18rem;
  letter-spacing: 0;
}
.hero-shot-product-price strong { color: rgb(var(--card-neon-rgb)); }

.hero-shot-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  white-space: nowrap;
}
.hero-shot-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(188, 196, 255, 0.42);
  transition: width 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}
.hero-shot-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #905dff, #4a8fff);
}
.hero-shot-rotation-note {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  text-align: center;
  color: #9da8c9;
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-shot-brands {
  margin: 34px 0;
  padding: 26px 30px;
  border-radius: 22px;
  border: 1px solid rgba(103, 117, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 22, 45, 0.96), rgba(10, 13, 29, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(2, 4, 14, 0.24);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, black 72px, black calc(100% - 72px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 72px, black calc(100% - 72px), transparent 100%);
  animation: heroTextReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.38s;
}

.hero-shot-brands-track {
  display: flex;
  align-items: center;
  min-width: 200%;
  will-change: transform;
  animation: heroBrandsMarquee 46s linear infinite;
}

.hero-shot-brands-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(30px, 5vw, 62px);
  flex: 0 0 auto;
  min-width: 50%;
  padding-right: clamp(30px, 5vw, 62px);
}

@keyframes heroBrandsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-shot-brands:hover .hero-shot-brands-track {
  animation-play-state: paused;
}

.brand-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  opacity: 0.86;
  transform: translateZ(0);
  transition: opacity 220ms ease, filter 220ms ease;
}

.brand-logo {
  width: auto;
  object-fit: contain;
  max-width: 190px;
  filter: grayscale(1) brightness(0) invert(0.9) opacity(0.92);
}

.brand-logo-netflix {
  height: 22px;
}

.brand-logo-hbo {
  height: 24px;
}

.brand-logo-disney {
  height: 24px;
}

.brand-logo-prime {
  height: 22px;
}

.brand-logo-spotify {
  height: 22px;
}

.brand-logo-youtube {
  height: 18px;
  max-width: 22px;
}

.brand-logo-paramount {
  height: 18px;
}

.brand-logo-crunchyroll {
  height: 18px;
}

.brand-logo-appletv {
  height: 18px;
}

.brand-inline {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 236, 245, 0.9);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.9;
  transform: translateZ(0);
  transition: opacity 220ms ease;
}

.brand-inline span {
  display: inline-block;
}

.brand-inline-paramount span {
  font-style: italic;
  font-family: "Georgia", "Times New Roman", serif;
}

.brand-inline-youtube span {
  font-weight: 760;
  letter-spacing: 0;
}

.hero-shot-brands:hover .brand-logo,
.hero-shot-brands:hover .brand-inline {
  opacity: 0.98;
}

.workflow-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 56px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(132, 96, 255, 0.34);
  background:
    radial-gradient(circle at 10% 0%, rgba(92, 169, 255, 0.22), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(157, 92, 255, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(15, 18, 43, 0.96), rgba(6, 8, 22, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 36px rgba(126, 87, 255, 0.16),
    0 26px 64px rgba(0,0,0,0.26);
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(117, 171, 255, 0.08) 34%, rgba(170, 99, 255, 0.1) 48%, transparent 66%);
  transform: translateX(-45%);
  animation: workflowSweep 7.2s ease-in-out infinite;
}

.workflow-section::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 169, 255, 0.62), rgba(157, 92, 255, 0.68), transparent);
  opacity: 0.72;
}

.workflow-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 22px;
  text-align: center;
}

.workflow-head .eyebrow,
.workflow-head h2 {
  margin: 0;
}

.workflow-head .eyebrow {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(157, 92, 255, 0.32);
  background: rgba(157, 92, 255, 0.12);
  color: #b98cff;
  text-shadow: 0 0 12px rgba(157, 92, 255, 0.46);
}

.workflow-head h2 {
  color: #f7f8ff;
  font-size: clamp(1.35rem, 2.35vw, 2.05rem);
  line-height: 1.08;
  max-width: 720px;
  letter-spacing: 0;
}

.workflow-head h2 span {
  color: transparent;
  background: linear-gradient(90deg, #5ca9ff, #9d5cff);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.workflow-slider {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-track.is-changing .workflow-card {
  animation: workflowCardIn 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.workflow-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(126, 143, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    rgba(7, 10, 26, 0.78);
  display: grid;
  align-content: start;
  gap: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.workflow-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 196, 255, 0.54), transparent);
  opacity: 0.58;
}

.workflow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 205, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 18px 34px rgba(0,0,0,0.22), 0 0 24px rgba(92, 169, 255, 0.12);
}

.workflow-card.active {
  border-color: rgba(100, 190, 255, 0.48);
  background:
    radial-gradient(circle at 0 0, rgba(92, 169, 255, 0.2), transparent 52%),
    radial-gradient(circle at 100% 0, rgba(157, 92, 255, 0.16), transparent 50%),
    rgba(255,255,255,0.052);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 0 28px rgba(92, 169, 255, 0.14);
}

.workflow-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workflow-card-top span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #9fd0ff;
  background: rgba(74, 142, 255, 0.14);
  border: 1px solid rgba(92, 169, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.workflow-card-top strong {
  color: rgba(184, 199, 255, 0.22);
  font-size: 2rem;
  line-height: 0.8;
  font-weight: 950;
}

.workflow-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.12;
}

.workflow-card p {
  margin: 0;
  color: #b9c3de;
  font-size: 0.98rem;
  line-height: 1.52;
}

.workflow-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #f8fbff;
  background: rgba(76, 92, 168, 0.48);
  border: 1px solid rgba(126, 184, 255, 0.28);
  font-size: 1.65rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(92, 169, 255, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.workflow-arrow:hover {
  transform: scale(1.06);
  border-color: rgba(126, 211, 255, 0.54);
  background: rgba(88, 112, 205, 0.58);
  box-shadow: 0 0 26px rgba(92, 169, 255, 0.22);
}

.workflow-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.workflow-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(180, 190, 230, 0.28);
  border: 1px solid rgba(180, 190, 230, 0.24);
}

.workflow-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #5ca9ff, #9d5cff);
  border-color: transparent;
  box-shadow: 0 0 14px rgba(92, 169, 255, 0.28);
}

.floating-tips {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(340px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(126, 184, 255, 0.22);
  background:
    radial-gradient(circle at 0 0, rgba(92, 169, 255, 0.14), transparent 46%),
    radial-gradient(circle at 100% 0, rgba(157, 92, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(15, 18, 43, 0.86), rgba(6, 8, 22, 0.88));
  box-shadow:
    0 18px 46px rgba(0,0,0,0.3),
    0 0 24px rgba(92, 169, 255, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.045);
  pointer-events: auto;
  overflow: hidden;
  opacity: 1;
  transition: width 0.22s ease, padding 0.22s ease, border-radius 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.floating-tips::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: translateX(-120%);
  animation: heroShimmer 7.4s ease-in-out infinite;
  pointer-events: none;
}

.floating-tips-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(126, 184, 255, 0.09);
}

.floating-tips-head > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.floating-tips-head span {
  color: #9fd0ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-tips-head strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.floating-tips-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(126, 184, 255, 0.22);
  background: rgba(255,255,255,0.055);
  color: #f8fbff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.floating-tips-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 211, 255, 0.44);
  background: rgba(92, 169, 255, 0.12);
}

.floating-tips-panel {
  position: relative;
  width: 100%;
}

.floating-tips.is-collapsed {
  width: auto;
  min-width: 122px;
  min-height: 42px;
  padding: 6px 8px 6px 12px;
  border-radius: 999px;
  opacity: 0.92;
  border-color: rgba(104, 203, 255, 0.42);
  background:
    radial-gradient(circle at 12% 22%, rgba(92, 209, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(14, 39, 78, 0.96), rgba(28, 18, 65, 0.96));
  box-shadow:
    0 16px 42px rgba(0,0,0,0.34),
    0 0 0 1px rgba(92, 169, 255, 0.16),
    0 0 22px rgba(92, 169, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: tipCollapsedPulse 3.4s ease-in-out infinite;
}

.floating-tips.is-collapsed.is-ready {
  opacity: 1;
  box-shadow:
    0 18px 46px rgba(0,0,0,0.3),
    0 0 24px rgba(92, 169, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.045);
}

.floating-tips.is-collapsed .floating-tips-head {
  padding-bottom: 0;
  border-bottom: 0;
  justify-content: center;
}

.floating-tips.is-collapsed .floating-tips-head span {
  display: block;
  font-size: 0.72rem;
  color: #bde8ff;
  text-shadow: 0 0 12px rgba(94, 203, 255, 0.44);
}

.floating-tips.is-collapsed .floating-tips-head strong {
  display: none;
}

.floating-tips.is-collapsed .floating-tips-toggle {
  margin-left: 6px;
  border-color: rgba(130, 217, 255, 0.5);
  background: linear-gradient(135deg, rgba(92, 169, 255, 0.22), rgba(157, 92, 255, 0.22));
  box-shadow: 0 0 16px rgba(92, 169, 255, 0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

.floating-tips.is-collapsed:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(130, 217, 255, 0.62);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.36),
    0 0 0 1px rgba(92, 169, 255, 0.22),
    0 0 30px rgba(92, 169, 255, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.floating-tips.is-collapsed .floating-tips-panel {
  display: none;
}

.floating-tip {
  display: none;
  gap: 7px;
  min-height: 72px;
}

.floating-tip.active {
  display: grid;
  animation: workflowCardIn 0.34s ease both;
}

.floating-tip strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.12;
}

.floating-tip span {
  color: #b9c3de;
  font-size: 0.92rem;
  line-height: 1.45;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 34;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(98, 255, 176, 0.28);
  background:
    radial-gradient(circle at 0 0, rgba(60, 214, 120, 0.2), transparent 46%),
    linear-gradient(180deg, rgba(10, 24, 19, 0.94), rgba(5, 14, 11, 0.96));
  box-shadow:
    0 18px 44px rgba(0,0,0,0.28),
    0 0 22px rgba(62, 211, 122, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
  color: #f4fff9;
  text-decoration: none;
  box-sizing: border-box;
  overflow: visible;
  transform: translateZ(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(98, 255, 176, 0.46);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.32),
    0 0 28px rgba(62, 211, 122, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.floating-whatsapp-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(33, 191, 99, 0.9), rgba(20, 148, 74, 0.96));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 0 16px rgba(42, 192, 102, 0.3);
}

.floating-whatsapp-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  transform: none;
}

.floating-whatsapp-copy {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 2px;
  min-width: 112px;
  padding: 8px 10px;
  border-radius: 13px;
  background: rgba(5, 14, 11, 0.94);
  border: 1px solid rgba(98, 255, 176, 0.18);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-whatsapp:hover .floating-whatsapp-copy {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.floating-whatsapp-copy strong {
  font-size: 0.98rem;
  line-height: 1;
}

.floating-whatsapp-copy small {
  color: rgba(212, 255, 228, 0.74);
  font-size: 0.74rem;
  line-height: 1;
}

.assistant-shell {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 31;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.assistant-toggle {
  position: relative;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(126, 184, 255, 0.26);
  background:
    radial-gradient(circle at 20% 18%, rgba(92, 169, 255, 0.22), transparent 36%),
    radial-gradient(circle at 80% 100%, rgba(157, 92, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(14, 18, 42, 0.96), rgba(7, 9, 22, 0.98));
  box-shadow:
    0 18px 44px rgba(0,0,0,0.3),
    0 0 28px rgba(92, 169, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
  color: #f6fbff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, border-radius 0.18s ease;
}

.assistant-toggle:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(126, 211, 255, 0.42);
  box-shadow:
    0 22px 52px rgba(0,0,0,0.32),
    0 0 34px rgba(92, 169, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.assistant-shell.open .assistant-toggle {
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  border-radius: 999px;
}

.assistant-toggle-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(110, 71, 255, 0.96), rgba(66, 180, 255, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 0 18px rgba(92, 169, 255, 0.28);
}

.assistant-toggle-icon svg {
  width: 24px;
  height: 24px;
}

.assistant-toggle-pulse {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #57f287;
  box-shadow: 0 0 0 4px rgba(87, 242, 135, 0.16), 0 0 16px rgba(87, 242, 135, 0.4);
}

.assistant-toggle-copy {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(9, 12, 28, 0.92);
  border: 1px solid rgba(126, 184, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0,0,0,0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.cart-open .floating-whatsapp,
body.cart-open .assistant-shell {
  transform: translateX(calc(-1 * min(420px, 100vw))) !important;
}

@media (max-width: 700px) {
  body.cart-open .floating-whatsapp,
  body.cart-open .assistant-shell {
    transform: translateX(calc(-1 * min(94vw, 390px))) !important;
  }
}

.assistant-toggle-copy strong {
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
}

.assistant-toggle-copy small {
  color: rgba(207, 226, 255, 0.78);
  font-size: 0.66rem;
  line-height: 1;
  white-space: nowrap;
}

.assistant-toggle:hover .assistant-toggle-copy,
.assistant-shell.open .assistant-toggle-copy {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.assistant-panel {
  width: min(360px, calc(100vw - 28px));
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(126, 184, 255, 0.22);
  background:
    radial-gradient(circle at 0 0, rgba(92, 169, 255, 0.14), transparent 44%),
    radial-gradient(circle at 100% 0, rgba(157, 92, 255, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(10, 13, 31, 0.985), rgba(5, 7, 18, 0.995));
  box-shadow:
    0 34px 84px rgba(0,0,0,0.44),
    0 0 26px rgba(92, 169, 255, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform-origin: bottom right;
  animation: assistantPanelIn 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.assistant-panel[hidden] {
  display: none !important;
}

.assistant-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.assistant-panel-head > div {
  display: grid;
  gap: 4px;
}

.assistant-panel-head span {
  color: #9fd0ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.assistant-panel-head strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.assistant-close {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  color: #f7fbff;
  border: 1px solid rgba(126, 184, 255, 0.14);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.assistant-close:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 211, 255, 0.34);
  background: rgba(255,255,255,0.1);
}

.assistant-status {
  padding: 8px 10px;
  border-radius: 10px;
  color: #c2d6ff;
  font-size: 0.76rem;
  line-height: 1.35;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(126, 184, 255, 0.08);
}

.assistant-messages {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 184, 255, 0.24) transparent;
}

.assistant-message {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.4;
}

.assistant-message strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.assistant-message.user {
  justify-self: end;
  background: linear-gradient(135deg, rgba(90, 58, 255, 0.92), rgba(49, 143, 255, 0.88));
  color: #fff;
  box-shadow: 0 10px 24px rgba(56, 90, 255, 0.18);
}

.assistant-message.assistant {
  justify-self: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  border: 1px solid rgba(126, 184, 255, 0.12);
  color: #eef4ff;
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-suggestion {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(126, 184, 255, 0.12);
  color: #dbe7ff;
  font-size: 0.74rem;
  line-height: 1.1;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.assistant-suggestion:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 211, 255, 0.28);
  background: rgba(255,255,255,0.07);
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.assistant-form input {
  min-height: 40px;
  border-radius: 12px;
  padding: 9px 11px;
}

.assistant-form .primary {
  min-height: 40px;
  padding-inline: 14px;
}

@keyframes assistantPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes workflowSweep {
  0%, 100% { transform: translateX(-48%); opacity: 0; }
  18%, 54% { opacity: 1; }
  78% { transform: translateX(48%); opacity: 0; }
}

@keyframes workflowCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes tipCollapsedPulse {
  0%, 100% {
    box-shadow:
      0 16px 42px rgba(0,0,0,0.34),
      0 0 0 1px rgba(92, 169, 255, 0.16),
      0 0 18px rgba(92, 169, 255, 0.16),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  50% {
    box-shadow:
      0 18px 46px rgba(0,0,0,0.36),
      0 0 0 1px rgba(92, 169, 255, 0.24),
      0 0 30px rgba(157, 92, 255, 0.24),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
}

@media (max-width: 1100px) {
  .hero-shot {
    grid-template-columns: 1fr;
  }
  .hero-shot-stage {
    grid-template-columns: 1fr;
  }
  .hero-shot-arrow {
    display: none;
  }
  .hero-shot-main {
    width: 100%;
    padding-right: 26px;
    grid-template-columns: 1fr;
  }
  .hero-shot-main-grid {
    padding-right: 22px;
  }
  .hero-shot-stats {
    grid-template-columns: 1fr;
  }
  .hero-shot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feedback-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 64px 0 60px;
  padding: 28px clamp(18px, 3.2vw, 34px) 26px;
  border: 1px solid rgba(172, 92, 255, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(43, 199, 255, 0.12), transparent 27%),
    radial-gradient(circle at 84% 8%, rgba(205, 72, 255, 0.17), transparent 30%),
    radial-gradient(circle at top center, rgba(149, 75, 255, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(13, 14, 32, 0.96), rgba(6, 7, 18, 0.96));
  box-shadow: 0 0 34px rgba(164, 78, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 1;
  transform: none;
  transition: box-shadow 220ms ease;
}

.feedback-section.is-visible {
  opacity: 1;
  transform: none;
}

.feedback-section::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(255,255,255,0.08) 28%, transparent 40% 100%);
  transform: translateX(-80%);
  animation: feedbackSheen 8s ease-in-out infinite;
  pointer-events: none;
}

.feedback-section::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 76, 255, 0.88), rgba(41, 171, 255, 0.58), transparent);
  filter: drop-shadow(0 0 10px rgba(184, 72, 255, 0.62));
  pointer-events: none;
}

.feedback-head {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 24px;
}

.feedback-head .eyebrow {
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  color: #f0dcff;
  background: linear-gradient(135deg, rgba(132, 75, 255, 0.24), rgba(58, 167, 255, 0.11));
  border: 1px solid rgba(194, 124, 255, 0.42);
  box-shadow: 0 0 24px rgba(157, 92, 255, 0.24), inset 0 1px 0 rgba(255,255,255,0.1);
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.feedback-head h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(92deg, #ffffff 0%, #f2e8ff 32%, #a979ff 62%, #64d9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 3.55vw, 3.7rem);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(181, 91, 255, 0.24);
}

.feedback-head h2 span {
  color: transparent;
  background: linear-gradient(90deg, #c37cff, #6edfff);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.feedback-head h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #a869ff, #54d8ff, transparent);
  box-shadow: 0 0 16px rgba(168, 105, 255, 0.42);
}

.feedback-head p:last-child {
  margin: 0;
  max-width: 660px;
  color: #c4cbe0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.feedback-trust {
  position: static;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: none;
  margin: 0 auto 18px;
}

.feedback-trust div {
  min-width: 0;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(156, 116, 255, 0.22);
  background: rgba(8, 10, 24, 0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.feedback-trust strong {
  display: inline;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.15;
}

.feedback-trust span {
  display: inline;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.feedback-slider {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
}

.feedback-window {
  overflow: hidden;
  padding: 2px;
  touch-action: pan-y;
}

.feedback-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feedback-track.is-changing .feedback-card {
  animation: feedbackSlideNext 520ms cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--feedback-order, 0) * 70ms);
}

.feedback-track.is-changing.is-prev .feedback-card {
  animation-name: feedbackSlidePrev;
}

.feedback-card {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(154, 104, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(21, 24, 49, 0.92), rgba(8, 10, 25, 0.88)),
    radial-gradient(circle at top right, rgba(150, 80, 255, 0.18), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 12px 24px rgba(0,0,0,0.16);
  display: grid;
  gap: 10px;
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feedback-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 22px;
  height: 18px;
  border-top: 4px solid rgba(193, 91, 255, 0.2);
  border-left: 4px solid rgba(193, 91, 255, 0.2);
  border-radius: 8px 0 0 0;
  transform: rotate(180deg);
}

.feedback-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.06) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 480ms ease;
  pointer-events: none;
}

.feedback-card:hover,
.feedback-card.is-featured {
  border-color: rgba(184, 87, 255, 0.48);
  box-shadow: 0 14px 34px rgba(132, 60, 255, 0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}

.feedback-card:hover {
  transform: translateY(-3px);
}

.feedback-card:hover::after {
  transform: translateX(120%);
}

.feedback-person {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.feedback-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.42), transparent 14%),
    linear-gradient(135deg, #7c3cff, #c25cff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(173, 79, 255, 0.12), 0 0 22px rgba(174, 79, 255, 0.22);
}

.feedback-avatar-blue {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.45), transparent 14%),
    linear-gradient(135deg, #2563eb, #4fd1ff);
  box-shadow: 0 0 0 4px rgba(76, 151, 255, 0.12), 0 0 22px rgba(76, 151, 255, 0.22);
}

.feedback-avatar-pink {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.45), transparent 14%),
    linear-gradient(135deg, #b832ff, #ff4fb8);
  box-shadow: 0 0 0 4px rgba(255, 79, 184, 0.12), 0 0 22px rgba(255, 79, 184, 0.2);
}

.feedback-avatar-cyan {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.45), transparent 14%),
    linear-gradient(135deg, #0891b2, #38f8d8);
  box-shadow: 0 0 0 4px rgba(56, 248, 216, 0.11), 0 0 22px rgba(56, 248, 216, 0.18);
}

.feedback-avatar-green {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.45), transparent 14%),
    linear-gradient(135deg, #16a34a, #7dff8c);
  box-shadow: 0 0 0 4px rgba(84, 255, 128, 0.1), 0 0 22px rgba(84, 255, 128, 0.16);
}

.feedback-avatar-amber {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.42), transparent 14%),
    linear-gradient(135deg, #b45309, #ffcd4d);
  box-shadow: 0 0 0 4px rgba(255, 205, 77, 0.1), 0 0 22px rgba(255, 205, 77, 0.16);
}

.feedback-person strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.feedback-person span:not(.feedback-avatar) {
  color: var(--muted);
  font-size: 0.78rem;
}

.feedback-stars {
  color: #cf65ff;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-shadow: 0 0 12px rgba(205, 101, 255, 0.34);
}

.feedback-card p {
  margin: 0;
  color: #dce3f7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.feedback-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(180, 92, 255, 0.34);
  background: rgba(12, 14, 31, 0.9);
  color: #fff;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px rgba(159, 78, 255, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.feedback-arrow:hover {
  border-color: rgba(197, 108, 255, 0.68);
  background: rgba(67, 31, 116, 0.76);
  box-shadow: 0 0 24px rgba(179, 88, 255, 0.26);
  transform: scale(1.06);
}

.feedback-arrow:active {
  transform: scale(0.96);
}

.feedback-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.feedback-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(190, 178, 230, 0.34);
  border: 1px solid rgba(190, 178, 230, 0.28);
  transition: width 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feedback-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #b04dff, #733cff);
  border-color: transparent;
  box-shadow: 0 0 14px rgba(177, 77, 255, 0.42);
}

.feedback-dot:hover {
  transform: translateY(-1px);
}

@keyframes feedbackSlideNext {
  from {
    opacity: 0;
    transform: translateX(34px) translateY(8px) scale(0.97);
    filter: blur(4px);
  }
  55% {
    opacity: 1;
    transform: translateX(-4px) translateY(0) scale(1.01);
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes feedbackSlidePrev {
  from {
    opacity: 0;
    transform: translateX(-34px) translateY(8px) scale(0.97);
    filter: blur(4px);
  }
  55% {
    opacity: 1;
    transform: translateX(4px) translateY(0) scale(1.01);
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes feedbackSheen {
  0%, 48% {
    transform: translateX(-80%);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  76%, 100% {
    transform: translateX(80%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-section::before,
  .feedback-track.is-changing .feedback-card {
    animation: none;
  }
  .feedback-section {
    opacity: 1;
    transform: none;
  }
  .feedback-card,
  .feedback-arrow,
  .feedback-dot {
    transition: none;
  }
}

@media (max-width: 760px) {
  .feedback-section {
    margin: 42px 0 40px;
    padding-inline: 14px;
  }
  .feedback-head {
    gap: 5px;
    margin-bottom: 12px;
  }
  .feedback-head .eyebrow {
    padding: 5px 10px;
    font-size: 0.68rem;
  }
  .feedback-head h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1;
  }
  .feedback-head p:last-child {
    font-size: 0.82rem;
    line-height: 1.35;
  }
  .feedback-trust {
    position: static;
    justify-content: flex-start;
    margin-bottom: 12px;
    max-width: none;
  }
  .feedback-slider {
    grid-template-columns: 1fr;
  }
  .feedback-arrow {
    display: none;
  }
  .feedback-track {
    grid-template-columns: 1fr;
  }
  .feedback-card:nth-child(n + 2) {
    display: none;
  }
}

/* Uniform catalog cards */
.grid .card.product {
  height: 100%;
  min-height: 350px;
  display: grid;
  grid-template-rows: 136px minmax(0, 1fr);
  overflow: hidden;
}

.grid .product img {
  width: 100%;
  height: 136px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 6px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(12, 16, 36, 0.98), rgba(9, 12, 28, 0.94));
  border-bottom: 1px solid rgba(118, 132, 255, 0.12);
}

.grid .product .card-body {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 7px;
  min-height: 0;
  padding: 10px 16px 12px;
}

.grid .card.product.product-single-duration {
  min-height: 340px;
  grid-template-rows: 136px minmax(0, auto);
}

.grid .product.product-single-duration .card-body {
  grid-template-rows: auto auto auto;
  gap: 7px;
  padding: 10px 16px 12px;
}

.grid .product.product-single-duration h3 {
  -webkit-line-clamp: 1;
  font-size: 1rem;
}

.grid .product.product-single-duration .product-spark {
  min-height: 0;
  font-size: 0.78rem;
  line-height: 1.2;
}

.grid .product.product-single-duration .purchase-panel {
  gap: 6px;
}

.grid .product.product-single-duration .duration-picker::before {
  padding: 2px 7px;
  font-size: 0.6rem;
}

.grid .product.product-single-duration .duration-picker select {
  min-height: 36px;
  padding-block: 7px;
}

.grid .product.product-single-duration .price-row {
  gap: 7px;
}

.purchase-panel {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.duration-picker {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.duration-picker::before {
  content: "Duracion";
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(92, 169, 255, 0.46);
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 169, 255, 0.24), transparent 58%),
    rgba(38, 95, 190, 0.18);
  color: #9fd0ff;
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 14px rgba(92, 169, 255, 0.2);
  text-shadow: 0 0 10px rgba(92, 169, 255, 0.68);
}

.duration-picker::after {
  content: "v";
  position: absolute;
  right: 8px;
  top: calc(50% + 9px);
  bottom: auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(132, 225, 255, 0.22);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(8, 18, 38, 0.68);
  color: #eff7ff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 14px rgba(91, 216, 255, 0.2);
  text-shadow: 0 0 8px rgba(180, 235, 255, 0.48);
}

.duration-picker-copy {
  display: none;
}

.duration-picker-copy strong {
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.duration-picker-copy small {
  min-width: 0;
  color: #081020;
  background: linear-gradient(135deg, #6df0ff, #a77cff);
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
}

.duration-picker-copy small:empty {
  display: none;
}

.duration-picker select {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 36px;
  padding: 7px 42px 7px 12px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(79, 92, 210, 0.36), rgba(28, 61, 131, 0.28)),
    rgba(9, 12, 28, 0.96);
  color: #f5f7ff;
  border: 1px solid rgba(112, 137, 255, 0.32);
  font-size: 0.82rem;
  font-weight: 850;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

.duration-picker:hover select {
  border-color: rgba(142, 164, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 16px rgba(88, 116, 255, 0.12);
  filter: brightness(1.03);
}

.duration-picker:focus-within {
  filter: drop-shadow(0 0 14px rgba(93, 121, 255, 0.16));
}

.duration-picker:focus-within select {
  border-color: rgba(151, 171, 255, 0.72);
}

.grid .product .product-badges {
  justify-self: start;
  max-width: 100%;
}

.grid .product h3 {
  margin: 0;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid .product .description-brief {
  display: none;
}

.grid .product .expand-toggle-grid {
  display: none;
}

.grid .product .product-spark {
  margin: 0;
  align-self: start;
  min-height: 0;
  display: flex;
  align-items: center;
  color: #c5cee8;
  font-size: 0.78rem;
  line-height: 1.18;
}

.grid .product .price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
  gap: 8px;
  align-items: center;
  align-self: end;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  min-width: 0;
}

.grid .product .price-row .price {
  min-width: 0;
  overflow: hidden;
  min-height: 28px;
  padding: 4px 10px 5px;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(88, 255, 170, 0.18);
  background:
    linear-gradient(135deg, rgba(88, 255, 170, 0.1), rgba(47, 139, 255, 0.05)),
    rgba(4, 12, 20, 0.72);
  color: #54ffa8;
  font-size: clamp(0.78rem, 1.04vw, 0.92rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  text-overflow: clip;
  letter-spacing: -0.025em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 18px rgba(65, 255, 159, 0.09);
  text-shadow: 0 0 16px rgba(67, 245, 152, 0.22);
}

.grid .product .price-row .primary {
  width: 100%;
  min-width: 92px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 11px;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(71, 81, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Cleaner catalog product structure */
.grid .card.product {
  min-height: 330px;
  grid-template-rows: 134px 1fr;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 21, 43, 0.98), rgba(8, 10, 24, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(92, 169, 255, 0.10), transparent 42%);
}

.grid .product > img {
  height: 134px;
  padding: 8px 12px 6px;
  border-bottom-color: rgba(118, 132, 255, 0.10);
  background: linear-gradient(180deg, rgba(5, 7, 17, 0.52), rgba(10, 13, 30, 0.9));
}

.grid .product .card-body {
  padding: 12px 16px 14px;
  gap: 9px;
  grid-template-rows: auto auto 1fr;
}

.grid .product .product-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  overflow: hidden;
  min-width: 0;
  min-height: 20px;
}

.grid .product .badge {
  max-width: 100%;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.62rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid .product .badge-modality {
  max-width: 100%;
  color: #e9edff;
  background: rgba(126, 143, 255, 0.22);
  border-color: rgba(160, 178, 255, 0.24);
}

.grid .product h3 {
  font-size: 1rem;
  line-height: 1.16;
  min-height: 2.32em;
  align-self: start;
}

.grid .product .product-duration {
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  font-size: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(80, 55, 112, 0.88), rgba(45, 54, 112, 0.88));
  border-color: rgba(217, 178, 255, 0.28);
  backdrop-filter: blur(10px);
}

.grid .product .product-duration::before {
  margin-right: 4px;
}

.grid .product .purchase-panel {
  align-self: end;
  gap: 8px;
}

.grid .product .duration-picker {
  gap: 5px;
}

.grid .product .duration-picker::before {
  content: "Duracion";
  padding: 0;
  border: 0;
  background: transparent;
  color: #8ecbff;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(92, 169, 255, 0.55);
  box-shadow: none;
}

.grid .product .duration-picker::after {
  content: "v";
  right: 12px;
  top: auto;
  bottom: 9px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #bfe9ff;
  font-size: 1rem;
  box-shadow: none;
  transform: none;
}

.grid .product .duration-picker select {
  min-height: 40px;
  padding: 9px 38px 9px 12px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(64, 82, 187, 0.38), rgba(20, 45, 98, 0.34)),
    rgba(10, 14, 32, 0.96);
  border-color: rgba(115, 147, 255, 0.34);
}

.grid .product .price-row {
  grid-template-columns: minmax(78px, 0.9fr) minmax(92px, 1fr);
  gap: 10px;
}

.grid .product .price-row .price {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 0.88rem;
}

.grid .product .price-row .primary {
  min-height: 38px;
  border-radius: 12px;
}

/* Home layout stability pass */
.hero-shot {
  overflow: hidden;
}

.hero-shot-title {
  max-width: min(100%, 760px);
  text-wrap: balance;
}

.hero-shot-title-line {
  white-space: normal;
}

.hero-shot-stage,
.hero-shot-frame,
.hero-shot-main,
.hero-shot-card-grid,
.hero-shot-product-card {
  min-width: 0;
}

.hero-shot-main {
  padding-right: 26px;
  grid-template-columns: 1fr;
}

.hero-shot-product-card {
  contain: layout paint;
}

.hero-shot-product-copy,
.hero-shot-product-copy h3,
.hero-shot-product-copy li,
.hero-shot-product-price {
  min-width: 0;
}

.hero-shot-brands,
.workflow-section,
.catalog-showcase,
.feedback-section {
  scroll-margin-top: 112px;
}

@media (max-width: 1180px) {
  .hero-shot {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-shot-copy {
    max-width: 760px;
  }

  .hero-shot-title {
    font-size: clamp(2.65rem, 7vw, 4.8rem);
  }

  .hero-shot-stage {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero-shot {
    margin-bottom: 30px;
  }

  .hero-shot-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-shot-arrow {
    display: none;
  }

  .hero-shot-frame {
    width: 100%;
  }

  .hero-shot-main {
    width: calc(100% - 20px);
    padding: 14px;
    margin-top: 12px;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shot-product-card:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-shot {
    padding: 12px 10px 14px;
    gap: 12px;
  }

  .hero-shot-title {
    font-size: clamp(1.78rem, 8.4vw, 2.35rem);
    line-height: 1.04;
  }

  .hero-shot-text {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-shot-main {
    width: 100%;
    padding: 10px;
  }

  .hero-shot-card-grid {
    gap: 8px;
  }

  .hero-shot-product-card {
    height: 218px;
  }

  .hero-shot-brands {
    margin: 18px -10px 30px;
  }

  .workflow-section {
    margin-top: 34px;
  }

  .floating-tips {
    left: 10px;
    right: auto;
    bottom: 74px;
    max-width: min(300px, calc(100vw - 86px));
  }

  .floating-tips.is-collapsed {
    width: auto;
    min-width: 118px;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 12px;
  }
}

@media (max-width: 430px) {
  .floating-tips.is-collapsed {
    min-width: 106px;
    min-height: 46px;
  }

  .floating-tips.is-collapsed .floating-tips-head {
    min-height: 46px;
    padding: 0 7px 0 10px;
    gap: 6px;
  }

  .floating-tips.is-collapsed .floating-tips-head span {
    font-size: 0.62rem;
  }

  .floating-tips.is-collapsed .floating-tips-toggle,
  .floating-whatsapp,
  .ai-chat-toggle {
    width: 46px;
    height: 46px;
  }
}

.featured-row {
  align-items: stretch;
}

.featured-row .spotlight-card {
  flex: 0 0 300px;
  min-width: 300px;
  height: 526px;
  min-height: 526px;
  display: grid;
  grid-template-rows: 210px minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
}

.featured-row .spotlight-card img {
  width: 100%;
  height: 210px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 2px;
  background: rgba(4, 6, 16, 0.4);
}

.featured-row .spotlight-card .card-content {
  min-height: 0;
  display: grid;
  grid-template-rows: 2.2rem 3rem 3rem auto 1fr auto;
  gap: 9px;
}

.featured-row .spotlight-card .eyebrow {
  margin: 0;
  min-height: 2.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-row .spotlight-card h3 {
  margin: 0;
  min-height: 0;
  padding-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-row .spotlight-card .description-brief {
  min-height: 0;
  margin: 0;
}

.featured-row .spotlight-card .expand-toggle {
  justify-self: start;
  align-self: start;
}

.featured-row .spotlight-card .card-footer {
  align-self: end;
}

@media (max-width: 640px) {
  .product-modal {
    padding: 8px;
    align-items: flex-end;
  }

  .product-modal-card {
    width: 100%;
    max-height: min(88dvh, 720px);
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .product-modal-buy-panel {
    gap: 9px;
    padding: 0 13px 13px;
    border-left: 0;
    overflow: visible;
  }

  .product-modal-media {
    min-height: 124px;
    height: 124px;
    padding: 10px 46px 10px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(135, 157, 255, 0.14);
  }

  .product-modal-media img {
    max-height: 104px;
    border-radius: 12px;
  }

  .product-modal-copy {
    gap: 9px;
    padding: 13px 13px 9px;
    max-height: none;
    overflow-y: auto;
  }

  .product-modal-copy h2 {
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .product-modal-copy p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .product-modal-description {
    max-height: 160px;
    overflow-y: auto;
    display: block;
    padding-right: 6px;
  }

  .product-modal-kicker {
    gap: 5px;
  }

  .product-modal-kicker span,
  .product-modal-benefits span {
    padding: 5px 8px;
    font-size: 0.68rem;
    border-radius: 999px;
  }

  .product-modal-benefits {
    gap: 5px;
  }

  .product-modal-pricing {
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .product-modal-price-head {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .product-modal-price-head strong {
    padding: 5px 10px;
    font-size: 1.28rem;
  }

  .product-modal-price-head select {
    min-height: 36px;
    font-size: 0.8rem;
  }

  .product-modal-durations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .product-modal-duration {
    min-height: 54px;
    padding: 7px;
    border-radius: 10px;
  }

  .product-modal-duration span,
  .product-modal-duration em {
    font-size: 0.62rem;
  }

  .product-modal-duration strong {
    font-size: 0.78rem;
  }

  .product-modal-buy {
    min-height: 42px;
    border-radius: 12px;
  }

  .product-modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  body {
    background-attachment: scroll;
    overflow-x: hidden;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    overflow: visible;
  }

  .topbar::-webkit-scrollbar {
    display: none;
  }

  .brand {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  nav {
    order: 3;
    width: 100%;
    flex: 1 0 100%;
    min-width: 100%;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    font-size: 0.75rem;
    padding-bottom: 2px;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .top-actions {
    flex: 0 0 auto;
    gap: 6px;
    margin-left: auto;
  }

  .currency-switch {
    min-height: 34px;
    padding: 0 5px;
  }

  .currency-switch span {
    display: none;
  }

  .currency-switch select {
    min-height: 24px;
    width: 58px;
    font-size: 0.76rem;
  }

  .cart-button,
  #authButton {
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
  }

  .top-actions .cart-button,
  .top-actions #authButton {
    min-height: 34px;
    padding: 7px 10px;
    gap: 6px;
  }

  .top-actions .cart-button::before {
    width: 13px;
    height: 13px;
  }

  .top-actions #cartCount {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.68rem;
  }

  main {
    padding: 12px 10px 34px;
  }

  .about-page {
    gap: 14px;
  }

  .admin-hero-stats,
  .admin-tabs {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-split,
  .about-payments,
  .about-services,
  .about-commitment {
    border-radius: 18px;
  }

  .about-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .about-hero-copy {
    gap: 12px;
  }

  .about-hero-copy::before {
    top: -8px;
    left: -4px;
    font-size: clamp(2.4rem, 15vw, 4.4rem);
    opacity: 0.42;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.18rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .about-hero-copy h1::after {
    width: 150px;
    height: 3px;
    margin-top: 12px;
  }

  .about-hero-copy p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .about-trust-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .about-proof-grid,
  .about-split,
  .about-benefits,
  .about-commitment {
    grid-template-columns: 1fr;
  }

  .about-split,
  .about-payments,
  .about-services,
  .about-commitment {
    padding: 20px;
  }

  .about-split h2,
  .about-section-head h2,
  .about-commitment h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.02;
  }

  .about-split h2::before,
  .about-section-head h2::before,
  .about-commitment h2::before {
    right: 0;
    top: -18px;
    font-size: clamp(2.5rem, 15vw, 4rem);
    opacity: 0.2;
  }

  .about-split h2::after,
  .about-section-head h2::after,
  .about-commitment h2::after {
    width: 118px;
    margin-top: 10px;
  }

  .about-page .eyebrow {
    padding: 6px 10px 6px 26px;
    font-size: 0.68rem;
  }

  .about-split::before,
  .about-payments::before,
  .about-services::before,
  .about-commitment::before {
    left: 8px;
    top: 8px;
    width: 82%;
    height: 120px;
    opacity: 0.62;
  }

  .about-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .about-payment-chip {
    min-height: 48px;
    justify-content: flex-start;
    padding: 7px 10px;
  }

  .about-payment-chip img {
    width: 50px;
    height: 28px;
    flex-basis: 50px;
  }

  .about-payment-mp img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .about-payment-santander img {
    width: 74px;
    height: 32px;
    flex-basis: 74px;
  }

  .about-payment-midinero img,
  .about-payment-oca img {
    width: 70px;
    height: 34px;
    flex-basis: 70px;
    transform: scale(1.22);
  }

  .about-payment-midinero img {
    width: 58px;
    height: 28px;
    flex-basis: 58px;
    transform: scale(1.06);
  }

  .about-payment-oca img {
    width: 58px;
    height: 26px;
    flex-basis: 58px;
    transform: scale(1.02);
  }

  .about-payment-abitab img {
    width: 38px;
    height: 20px;
    flex-basis: 38px;
  }

  .about-payment-midinero,
  .about-payment-oca {
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding-left: 8px;
    padding-right: 8px;
    gap: 6px;
  }

  .about-payment-midinero > span,
  .about-payment-oca > span {
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .about-payment-chip b {
    font-size: 0.86rem;
  }

  .about-payment-chip small {
    font-size: 0.62rem;
  }

  .about-service-marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .about-service-marquee::-webkit-scrollbar {
    display: none;
  }

  .about-service-chip {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 7px 10px;
    gap: 8px;
  }

  .about-service-chip img {
    width: 58px;
    height: 26px;
    flex-basis: 58px;
  }

  .about-service-chip b {
    font-size: 0.82rem;
  }

  .about-service-netflix img,
  .about-service-spotify img,
  .about-service-paramount img {
    width: 72px;
    flex-basis: 72px;
  }

  .about-service-youtube img,
  .about-service-crunchyroll img,
  .about-service-apple img {
    width: 36px;
    flex-basis: 36px;
  }

  .about-commitment .primary {
    justify-self: stretch;
  }

  .hero-shot {
    margin-top: 4px;
    padding: 14px 14px 16px;
    gap: 14px;
    border-radius: 16px;
  }

  .hero-shot::before,
  .hero-shot::after {
    display: none;
  }

  .hero-shot-copy {
    gap: 10px;
  }

  .hero-shot-eyebrow {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .hero-shot-title {
    font-size: clamp(1.55rem, 7.2vw, 1.86rem);
    line-height: 1.02;
  }

  .hero-shot-title-line {
    white-space: normal;
  }

  .hero-shot-text {
    font-size: 0.88rem;
    line-height: 1.38;
    max-width: 34rem;
  }

  .hero-shot-actions {
    gap: 8px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    min-width: 0;
    min-height: 40px;
    flex: 1 1 100%;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.86rem;
    width: 100%;
    justify-content: center;
  }

  .hero-shot-stats {
    display: none;
  }

  .hero-shot-stats div {
    padding: 7px 5px;
    border-radius: 10px;
    text-align: center;
  }

  .hero-shot-stats strong {
    font-size: 0.96rem;
  }

  .hero-shot-stats span {
    font-size: 0.58rem;
    line-height: 1.12;
  }

  .hero-shot-frame {
    padding: 10px 0 12px;
  }

  .hero-shot-frame::before {
    border-radius: 16px;
  }

  .hero-shot-main {
    width: calc(100% - 16px);
    min-height: 0;
    margin: 10px auto 0;
    padding: 10px;
    border-radius: 14px;
  }

  .hero-shot-main-grid {
    gap: 10px;
    padding: 10px;
  }

  .hero-shot-panel-head {
    font-size: 0.84rem;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-shot-product-card:nth-child(n + 3) {
    display: none;
  }

  .hero-shot-product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 86px minmax(0, 1fr);
    min-height: 0;
    height: 214px;
    border-radius: 12px;
  }

  .hero-shot-product-art {
    min-height: 86px;
  }

  .hero-shot-product-art img {
    padding: 5px;
  }

  .hero-shot-product-copy {
    grid-template-rows: auto 1fr auto;
    gap: 5px;
    padding: 8px;
  }

  .hero-shot-product-copy h3 {
    font-size: 0.78rem;
    line-height: 1.08;
    min-height: 1.7rem;
  }

  .hero-shot-product-meta {
    display: none;
  }

  .hero-shot-product-copy ul {
    gap: 3px;
    min-height: 0;
    margin: 0;
  }

  .hero-shot-product-copy li {
    padding-left: 11px;
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .hero-shot-product-copy li::before {
    width: 6px;
    height: 6px;
  }

  .hero-shot-product-price {
    font-size: 0.62rem;
  }

  .hero-shot-product-price strong {
    display: block;
    margin-left: 0;
    font-size: 0.84rem;
  }

  .hero-shot-dots {
    display: none;
  }

  .hero-shot-dot {
    width: 7px;
    height: 7px;
  }

  .hero-shot-dot.active {
    width: 16px;
  }

  .hero-shot-rotation-note {
    display: none;
  }

  .hero-shot-brands {
    margin: 22px -14px;
    padding: 12px 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
  }

  .hero-shot-brands-group {
    gap: 24px;
    padding-right: 24px;
  }

  .brand-logo-netflix,
  .brand-logo-hbo,
  .brand-logo-disney,
  .brand-logo-prime,
  .brand-logo-spotify {
    height: 17px;
  }

  .brand-logo-youtube,
  .brand-logo-paramount,
  .brand-logo-crunchyroll,
  .brand-logo-appletv {
    height: 15px;
  }

  .brand-inline {
    gap: 6px;
    font-size: 0.78rem;
  }

  .workflow-section {
    margin: 28px 0 34px;
    padding: 16px;
    border-radius: 18px;
  }

  .workflow-head {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
    text-align: left;
    justify-items: start;
  }

  .workflow-head h2 {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .workflow-slider {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: center;
  }

  .workflow-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 1.45rem;
    background: rgba(82, 97, 255, 0.18);
    border-color: rgba(128, 146, 255, 0.28);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  }

  .workflow-track {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 8px;
    scrollbar-width: none;
  }

  .workflow-track::-webkit-scrollbar {
    display: none;
  }

  .workflow-card {
    scroll-snap-align: center;
    min-height: 154px;
    padding: 14px;
    gap: 10px;
  }

  .workflow-card h3 {
    font-size: 1.08rem;
  }

  .workflow-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .workflow-card-top strong {
    font-size: 1.7rem;
  }

  .floating-tips {
    position: fixed;
    left: 10px;
    right: auto;
    bottom: 10px;
    z-index: 26;
    width: min(190px, calc(100vw - 190px));
    margin-top: 0;
    padding: 10px;
    border-radius: 17px;
    background:
      radial-gradient(circle at 0 0, rgba(92, 169, 255, 0.11), transparent 46%),
      linear-gradient(180deg, rgba(12, 16, 36, 0.74), rgba(6, 8, 22, 0.78));
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  }

  .floating-tips.is-collapsed {
    width: auto;
    min-width: 122px;
    min-height: 54px;
    padding: 8px 9px 8px 12px;
    border-radius: 999px;
  }

  .floating-tips-head {
    padding-bottom: 7px;
    gap: 6px;
  }

  .floating-tips-toggle {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 1rem;
  }

  .floating-tips-head span {
    font-size: 0.62rem;
  }

  .floating-tips-head strong,
  .floating-tip strong {
    font-size: 0.74rem;
    line-height: 1.12;
  }

  .floating-tip {
    min-height: 0;
    gap: 4px;
  }

  .floating-tip span {
    font-size: 0.66rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .floating-tips.is-collapsed .floating-tips-head {
    padding-bottom: 0;
    border-bottom: 0;
    justify-content: center;
  }

  .floating-tips.is-collapsed .floating-tips-toggle {
    margin-left: 6px;
  }

  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    left: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 999px;
  }

  .floating-whatsapp-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .floating-whatsapp-icon svg {
    width: 21px;
    height: 21px;
    transform: none;
  }

  .floating-whatsapp-copy {
    display: none;
  }

  .assistant-shell {
    right: 10px;
    bottom: 72px;
    left: auto;
    width: min(92vw, 340px);
    justify-items: end;
  }

  .assistant-toggle {
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 999px;
  }

  .assistant-toggle-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .assistant-toggle-copy {
    display: none;
  }

  .assistant-toggle-pulse {
    right: 8px;
    bottom: 8px;
    width: 9px;
    height: 9px;
  }

  .assistant-panel {
    width: 100%;
    max-height: min(72vh, 560px);
    padding: 12px;
    border-radius: 18px;
  }

  .assistant-messages {
    max-height: 250px;
  }

  .assistant-message {
    max-width: 94%;
    font-size: 0.83rem;
  }

  .assistant-form {
    grid-template-columns: 1fr;
  }

  .assistant-form .primary {
    width: 100%;
  }

  .section-head {
    margin: 14px 0 10px;
    gap: 4px;
  }

  .section-head h2 {
    font-size: 1.22rem;
    line-height: 1.12;
  }

  .featured-wrapper {
    margin-bottom: 12px;
  }

  .featured-row .spotlight-card {
    flex-basis: 230px;
    min-width: 230px;
    height: 420px;
    min-height: 420px;
    grid-template-rows: 150px minmax(0, 1fr);
    padding: 12px;
  }

  .featured-row .spotlight-card img {
    height: 150px;
  }

  .featured-row .spotlight-card .card-content {
    grid-template-rows: 2rem 2.6rem 2.7rem auto 1fr auto;
    gap: 7px;
  }

  .grid .card.product {
    min-height: 0;
    grid-template-rows: 104px minmax(0, 1fr);
  }

  .grid .product img {
    height: 104px;
    object-fit: contain;
    object-position: center;
    padding: 5px;
  }

  .grid .product .card-body {
    grid-template-rows: auto auto auto;
    gap: 5px;
    padding: 8px;
  }

  .purchase-panel {
    padding: 0;
    gap: 8px;
    border-radius: 0;
  }

  .duration-picker {
    min-height: auto;
    padding: 0;
    gap: 4px;
  }

  .duration-picker select {
    width: 100%;
    min-height: 34px;
    padding: 7px 34px 7px 9px;
    font-size: 0.72rem;
  }

  .duration-picker::before {
    display: block;
    font-size: 0.58rem;
    padding: 3px 7px;
  }

  .duration-picker::after {
    right: 7px;
    width: 22px;
    height: 22px;
    font-size: 1rem;
  }

  .grid .product .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .grid .product .price-row .price {
    padding: 5px 8px;
    font-size: 0.82rem;
  }

  .grid .product .price-row .primary {
    min-width: 0;
    min-height: 34px;
    justify-self: stretch;
    font-size: 0.78rem;
    padding: 7px 8px;
  }

  .duration-picker-copy strong {
    font-size: 0.72rem;
  }

  .duration-picker-copy small {
    font-size: 0.54rem;
    padding-inline: 5px;
  }

  .category-shortcuts {
    margin: 12px 0 8px;
  }

  .category-shortcuts .shortcut-list {
    gap: 6px;
    margin-top: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .category-shortcuts .shortcut-list::-webkit-scrollbar {
    display: none;
  }

  .category-shortcuts .category-shortcut {
    padding: 6px 9px;
    font-size: 0.78rem;
    flex: 0 0 auto;
  }

  .toolbar {
    gap: 7px;
    margin: 12px 0 10px;
  }

  .toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .toolbar-filters {
    justify-self: stretch;
    flex-wrap: wrap;
  }

  .toolbar-filters select {
    flex: 1 1 180px;
    min-width: 0;
    min-height: 42px;
    height: 42px;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .toolbar input {
    min-height: 42px;
    height: 42px;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .catalog-filter-grid {
    grid-template-columns: 1fr;
  }

  .price-filter-group {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .drawer {
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-left: 0;
    box-shadow: none;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    overflow: hidden;
  }

  .drawer.open {
    transform: translateX(0);
  }

  .drawer-head,
  .drawer-foot {
    padding: 16px 14px;
  }

  .drawer-foot {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    background: rgba(8, 10, 24, 0.96);
    backdrop-filter: blur(16px);
  }

  .drawer-head h2 {
    font-size: 1.08rem;
  }

  #cartItems {
    gap: 8px;
    padding: 10px 10px 6px;
    min-height: 0;
    overflow-y: auto;
  }

  .cart-item {
    padding: 11px 12px;
    gap: 7px;
  }

  .cart-item strong {
    font-size: 0.88rem;
  }

  .cart-item span,
  .cart-item-price {
    font-size: 0.82rem;
  }

  .payment-section {
    margin: 0 10px;
    padding: 10px 0 8px;
    max-height: 32dvh;
    overflow-y: auto;
  }

  .payment-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .payment-card {
    padding: 9px;
    border-radius: 12px;
  }

  .payment-title {
    font-size: 0.88rem;
  }

  .payment-subtitle,
  .cart-guidance,
  .payment-note,
  .cart-terms-note {
    font-size: 0.74rem;
  }

  .totals {
    padding: 14px 16px;
    border-radius: 16px;
  }

  #cartTotal {
    font-size: 1.28rem;
  }

  .product-modal-card {
    max-height: calc(100vh - 14px);
  }

  .product-modal-close {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }

  .product-modal-pricing {
    gap: 12px;
    padding: 16px;
  }

  .product-modal-duration {
    min-height: 62px;
    padding: 10px;
  }

  .product-modal-buy {
    min-height: 42px;
  }

  .auth-card,
  .profile,
  .admin {
    padding: 14px;
    gap: 14px;
    border-radius: 18px;
  }

  .auth-card {
    margin: 14px auto;
  }

  .auth-card > div,
  form,
  .panel {
    padding: 14px;
    border-radius: 14px;
  }

  .auth-card .hero-logo {
    width: calc(100% + 16px);
    margin: -10px -8px 4px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 900px) {
  @supports (content-visibility: auto) {
    .feedback-section,
    .footer {
      content-visibility: auto;
      contain-intrinsic-size: 1px 520px;
    }
  }
}

@media (max-width: 520px) {
  .floating-tips {
    left: 10px;
    right: auto;
    bottom: 68px;
    max-width: min(280px, calc(100vw - 82px));
  }

  .floating-tips.is-collapsed {
    width: auto;
    min-width: 112px;
    max-width: 136px;
    min-height: 46px;
  }

  .floating-tips.is-collapsed .floating-tips-head {
    min-height: 46px;
    padding: 0 7px 0 10px;
    gap: 6px;
  }

  .floating-tips.is-collapsed .floating-tips-head span {
    font-size: 0.62rem;
  }

  .floating-tips.is-collapsed .floating-tips-toggle,
  .floating-whatsapp,
  .ai-chat-toggle {
    width: 46px;
    height: 46px;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 12px;
  }
}

@media (min-width: 1000px) and (max-height: 1120px) {
  .hero-shot {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
  }

  .hero-shot-copy {
    align-self: center;
    max-width: 680px;
    gap: 14px;
  }

  .hero-shot-title {
    font-size: clamp(2.85rem, 3.15vw, 4.05rem);
    line-height: 0.98;
  }

  .hero-shot-text {
    max-width: 560px;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .hero-shot-actions {
    gap: 10px;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    min-height: 46px;
  }

  .hero-shot-stats {
    gap: 12px;
  }

  .hero-shot-stats div {
    padding: 13px 15px;
    border-radius: 15px;
  }

  .hero-shot-stats strong {
    font-size: 1.55rem;
  }

  .hero-shot-stage {
    align-self: center;
  }

  .hero-shot-frame {
    padding: 18px 0 24px;
  }

  .hero-shot-main {
    min-height: 410px;
    margin-top: 20px;
    padding: 18px 18px 20px;
  }

  .hero-shot-card-grid {
    gap: 12px;
  }

  .hero-shot-product-card {
    grid-template-rows: 120px minmax(0, 1fr);
    min-height: 276px;
  }

  .hero-shot-product-art {
    min-height: 120px;
  }

  .hero-shot-product-copy {
    gap: 8px;
    padding: 12px 13px 13px;
  }

  .hero-shot-product-copy h3 {
    font-size: 0.94rem;
    min-height: 2.1rem;
  }

  .hero-shot-product-copy ul {
    gap: 5px;
  }

  .hero-shot-product-copy li {
    font-size: 0.72rem;
  }

  .hero-shot-product-price strong {
    font-size: 1.04rem;
  }

  .hero-shot-brands {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

/* Hero title must stay in exactly three intentional lines */
.hero-shot-title-line {
  white-space: nowrap;
}

@media (min-width: 1000px) and (max-height: 1120px) {
  .hero-shot-title {
    font-size: clamp(3rem, 3.35vw, 4.25rem);
    line-height: 1.02;
  }

  .hero-shot-copy {
    max-width: 860px;
  }
}

@media (max-width: 520px) {
  .hero-shot-title {
    font-size: clamp(1.48rem, 7.25vw, 2rem);
    line-height: 1.08;
  }

  .hero-shot-title-line {
    white-space: nowrap;
  }
}

/* First viewport composition */
.floating-whatsapp,
.assistant-shell {
  right: calc(18px + env(safe-area-inset-right));
}

.floating-whatsapp {
  bottom: calc(18px + env(safe-area-inset-bottom));
}

.assistant-shell {
  bottom: calc(92px + env(safe-area-inset-bottom));
}

@media (min-width: 1200px) and (max-height: 1120px) {
  main {
    padding-top: clamp(18px, 2.2vh, 30px);
  }

  .topbar {
    margin-top: 14px;
    padding: 14px 24px;
    min-height: 84px;
  }

  .hero-shot {
    min-height: calc(100vh - 250px);
    max-height: calc(100vh - 210px);
    align-items: center;
    margin-bottom: 22px;
  }

  .hero-shot-copy {
    gap: 13px;
  }

  .hero-shot-title {
    font-size: clamp(3.15rem, 3.45vw, 4.45rem);
    line-height: 1.01;
  }

  .hero-shot-text {
    max-width: 680px;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    min-height: 48px;
  }

  .hero-shot-stats div {
    padding: 12px 16px;
  }

  .hero-shot-frame {
    padding: 14px 0 20px;
  }

  .hero-shot-frame::before {
    border-radius: 28px;
  }

  .hero-shot-main {
    min-height: 390px;
    margin-top: 18px;
    padding: 14px 20px 18px;
  }

  .hero-shot-main-grid {
    gap: 14px;
  }

  .hero-shot-panel-head {
    font-size: 0.98rem;
  }

  .hero-shot-product-card {
    grid-template-rows: 112px minmax(0, 1fr);
    min-height: 260px;
  }

  .hero-shot-product-art {
    min-height: 112px;
  }

  .hero-shot-product-copy {
    padding: 11px 12px 12px;
    gap: 7px;
  }

  .hero-shot-product-copy h3 {
    min-height: 2.05rem;
    font-size: 0.9rem;
  }

  .hero-shot-product-meta span {
    min-height: 21px;
    padding: 3px 7px;
  }

  .hero-shot-product-copy ul {
    min-height: 2.8rem;
    gap: 4px;
  }

  .hero-shot-product-copy li {
    font-size: 0.69rem;
  }

  .hero-shot-dots {
    margin-top: 12px;
  }

  .hero-shot-rotation-note {
    margin-top: 8px;
  }

  .hero-shot-brands {
    margin-top: 18px;
    margin-bottom: 28px;
    padding: 22px 30px;
  }
}

@media (max-width: 700px) {
  .assistant-shell {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
}

/* Balanced section rhythm */
.workflow-section,
.catalog-showcase,
.feedback-section {
  margin-top: clamp(34px, 4vw, 58px);
  margin-bottom: clamp(34px, 4vw, 58px);
}

.hero-shot-brands + .workflow-section,
.workflow-section + .catalog-showcase,
.catalog-showcase + .feedback-section {
  margin-top: clamp(34px, 4vw, 58px);
}

.hero-shot-brands {
  margin-top: clamp(12px, 1.5vw, 22px);
  margin-bottom: clamp(30px, 3.4vw, 48px);
  border-color: rgba(103, 117, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(14, 17, 38, 0.72), rgba(8, 10, 24, 0.64));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    0 14px 34px rgba(2, 4, 14, 0.16);
}

.hero-shot::after {
  opacity: 0.34;
  inset: auto 10% -2px 6%;
}

@media (max-width: 700px) {
  .workflow-section,
  .catalog-showcase,
  .feedback-section {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .hero-shot-brands {
    margin-top: 14px;
    margin-bottom: 28px;
  }
}

/* Premium unified background */
html {
  background: #030512;
}

body {
  background-color: #030512;
  background-image:
    radial-gradient(circle at 12% 4%, rgba(118, 69, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(34, 162, 255, 0.13), transparent 28%),
    radial-gradient(circle at 54% 38%, rgba(109, 64, 255, 0.1), transparent 38%),
    linear-gradient(180deg, #050617 0%, #050716 38%, #030410 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(125, 88, 255, 0.045) 28%, transparent 54%),
    radial-gradient(circle at 50% 0%, rgba(83, 102, 255, 0.08), transparent 48%);
  opacity: 0.9;
}

.hero-shot::before {
  opacity: 0.42;
  filter: blur(18px);
  background:
    radial-gradient(circle at 28% 12%, rgba(105, 91, 255, 0.16), transparent 36%),
    radial-gradient(circle at 84% 28%, rgba(48, 160, 255, 0.08), transparent 34%);
}

.hero-shot::after {
  display: none;
}

.hero-shot-brands {
  background:
    linear-gradient(180deg, rgba(14, 18, 38, 0.7), rgba(7, 9, 22, 0.54));
  border-color: rgba(130, 144, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 16px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.workflow-section,
.catalog-showcase,
.feedback-section {
  background-blend-mode: normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 24px 58px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
    background-image:
      radial-gradient(circle at 16% 0%, rgba(118, 69, 255, 0.18), transparent 32%),
      radial-gradient(circle at 92% 10%, rgba(34, 162, 255, 0.1), transparent 30%),
      linear-gradient(180deg, #050617 0%, #040512 100%);
  }
}

/* Remove hard background cuts around the first viewport */
main::before,
.hero-shot::before,
.hero-shot::after {
  display: none !important;
}

.hero-shot,
.hero-shot-copy {
  background: transparent !important;
  box-shadow: none !important;
}

/* Hero presence restore */
@media (min-width: 1100px) {
  .hero-shot {
    width: min(1780px, calc(100vw - 48px));
    min-height: clamp(610px, calc(100vh - 180px), 780px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.03fr) minmax(700px, 0.97fr);
    gap: clamp(44px, 5vw, 86px);
    align-items: center;
  }

  .hero-shot-copy {
    max-width: 900px;
    gap: 18px;
    width: 100%;
  }

  .hero-shot-title {
    max-width: 920px;
    font-size: clamp(3.7rem, 4.35vw, 5.35rem);
    line-height: 1.02;
  }

  .hero-shot-text {
    max-width: 720px;
    font-size: clamp(1.05rem, 1.05vw, 1.2rem);
  }

  .hero-shot-actions {
    gap: 12px;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    min-width: 180px;
    min-height: 54px;
  }

  .hero-shot-stats {
    width: min(100%, 920px);
    max-width: 920px;
    gap: 16px;
  }

  .hero-shot-stats div {
    min-height: 148px;
    padding: 30px 28px;
    display: grid;
    align-content: center;
  }

  .hero-shot-stats strong {
    font-size: clamp(2.25rem, 2.35vw, 2.85rem);
    line-height: 1;
  }

  .hero-shot-stats span {
    font-size: clamp(1.02rem, 1vw, 1.18rem);
  }

  .hero-shot-frame {
    width: min(100%, 820px);
    justify-self: end;
    padding: 28px 0 34px;
  }

  .hero-shot-main {
    width: calc(100% - 48px);
    min-height: 480px;
    padding: 28px 26px 24px;
  }

  .hero-shot-card-grid {
    gap: 14px;
  }

  .hero-shot-product-card {
    grid-template-rows: 136px minmax(0, 1fr);
    min-height: 330px;
  }

  .hero-shot-product-art {
    min-height: 136px;
  }

  .hero-shot-product-copy {
    padding: 14px 16px 16px;
    gap: 10px;
  }

  .hero-shot-product-copy h3 {
    font-size: 1rem;
    min-height: 2.35rem;
  }
}

@media (min-width: 1100px) and (max-width: 1450px) {
  .hero-shot {
    grid-template-columns: minmax(0, 0.95fr) minmax(590px, 1.05fr);
    gap: 34px;
  }

  .hero-shot-title {
    font-size: clamp(3.1rem, 4.1vw, 4.1rem);
  }

  .hero-shot-frame {
    width: min(100%, 730px);
  }

  .hero-shot-stats {
    width: min(100%, 780px);
    max-width: 780px;
  }

  .hero-shot-stats div {
    min-height: 132px;
    padding: 26px 22px;
  }

  .hero-shot-main {
    min-height: 430px;
  }

  .hero-shot-product-card {
    grid-template-rows: 118px minmax(0, 1fr);
    min-height: 292px;
  }

  .hero-shot-product-art {
    min-height: 118px;
  }
}

/* Keep brand strip visible on first load */
@media (min-width: 1100px) {
  main {
    padding-top: clamp(18px, 2.2vh, 30px);
  }

  .hero-shot {
    min-height: clamp(520px, calc(100vh - 300px), 660px);
    margin-bottom: clamp(6px, 1vh, 14px);
  }

  .hero-shot-brands {
    margin-top: clamp(36px, 3.6vw, 58px);
    margin-bottom: 0;
  }

  .hero-shot-brands + .workflow-section {
    margin-top: clamp(44px, 4.6vw, 70px);
  }
}

@media (min-width: 1100px) and (max-height: 900px) {
  .hero-shot {
    min-height: clamp(470px, calc(100vh - 270px), 590px);
  }

  .hero-shot-frame {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .hero-shot-main {
    min-height: 410px;
  }

  .hero-shot-product-card {
    min-height: 286px;
  }
}

/* Premium compact catalog cards */
@media (min-width: 900px) {
  .catalog-showcase .grid {
    grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
    gap: 14px;
  }

  .catalog-showcase .grid .card.product {
    min-height: 324px;
    grid-template-rows: 150px minmax(0, 1fr);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(15, 18, 38, 0.97), rgba(8, 10, 24, 0.98));
    border-color: rgba(118, 132, 255, 0.13);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.035),
      0 16px 34px rgba(0,0,0,0.22);
  }

  .catalog-showcase .grid .card.product:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 151, 255, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.045),
      0 22px 42px rgba(0,0,0,0.28);
  }

  .catalog-showcase .grid .product > img {
    height: 150px;
    padding: 8px 10px 6px;
    object-fit: contain;
    background:
      radial-gradient(circle at 50% 0%, rgba(100, 126, 255, 0.08), transparent 45%),
      rgba(5, 7, 18, 0.5);
  }

  .catalog-showcase .grid .product .card-body {
    padding: 10px 14px 12px;
    gap: 7px;
    grid-template-rows: auto auto minmax(0, 1fr);
  }

  .catalog-showcase .grid .product .product-badges {
    min-height: 17px;
    gap: 4px;
  }

  .catalog-showcase .grid .product .badge {
    padding: 3px 6px;
    font-size: 0.58rem;
    letter-spacing: -0.01em;
  }

  .catalog-showcase .grid .product h3 {
    font-size: 0.94rem;
    line-height: 1.14;
    min-height: 2.15em;
    margin-bottom: 0;
  }

  .catalog-showcase .grid .product .purchase-panel {
    align-self: end;
    gap: 7px;
  }

  .catalog-showcase .grid .product .duration-picker {
    gap: 4px;
  }

  .catalog-showcase .grid .product .duration-picker::before {
    font-size: 0.56rem;
    letter-spacing: 0.09em;
    color: #7dc5ff;
  }

  .catalog-showcase .grid .product .duration-picker select {
    min-height: 34px;
    padding: 7px 34px 7px 11px;
    border-radius: 11px;
    font-size: 0.78rem;
    background:
      linear-gradient(135deg, rgba(57, 75, 172, 0.32), rgba(14, 37, 90, 0.28)),
      rgba(9, 13, 30, 0.96);
  }

  .catalog-showcase .grid .product .duration-picker::after {
    bottom: 7px;
    right: 11px;
    font-size: 0.9rem;
    opacity: 0.78;
  }

  .catalog-showcase .grid .product .price-row {
    grid-template-columns: minmax(74px, 0.86fr) minmax(88px, 1fr);
    gap: 8px;
  }

  .catalog-showcase .grid .product .price-row .price {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.82rem;
    justify-content: center;
  }

  .catalog-showcase .grid .product .price-row .primary {
    min-width: 0;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 11px;
    font-size: 0.82rem;
  }

  .catalog-showcase .grid .product .product-duration {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.64rem;
  }
}

/* Compact premium topbar */
@media (min-width: 900px) {
  .topbar {
    min-height: 70px;
    margin-top: 38px !important;
    padding: 10px 22px;
    border-radius: 20px;
  }

  .brand {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .topbar nav {
    gap: 24px;
    font-size: 0.92rem;
  }

  .top-actions {
    gap: 8px;
  }

  .top-actions .cart-button,
  .top-actions #authButton {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }

  .top-actions #cartCount {
    min-width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }
}

/* Restore premium hero typography */
.hero-shot-title {
  font-family: Inter, Manrope, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-shot-title-accent {
  font-weight: 900;
}

@media (min-width: 1100px) {
  .hero-shot-title {
    max-width: 820px;
    font-size: clamp(3.85rem, 4.35vw, 5.45rem);
    line-height: 0.96;
  }
}

@media (min-width: 1100px) and (max-width: 1450px) {
  .hero-shot-title {
    max-width: 720px;
    font-size: clamp(3.2rem, 4.05vw, 4.25rem);
    line-height: 0.98;
  }
}

/* Functional mobile product modal */
@media (max-width: 700px) {
  .product-modal {
    padding: 10px;
    align-items: center;
    justify-content: center;
  }

  .product-modal-card {
    width: min(100%, 430px);
    max-height: calc(100dvh - 20px);
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    overflow-y: auto;
    border-radius: 18px;
  }

  .product-modal-buy-panel {
    display: contents;
  }

  .product-modal-media {
    order: 1;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin: 12px 12px 0;
    padding: 8px 42px 8px 8px;
    border-radius: 14px;
    border: 1px solid rgba(135, 157, 255, 0.14);
  }

  .product-modal-media img {
    width: 100%;
    height: 100%;
    max-height: 190px;
    object-fit: contain;
    border-radius: 10px;
  }

  .product-modal-copy {
    order: 2;
    padding: 12px 14px 10px;
    gap: 9px;
    overflow: visible;
  }

  .product-modal-kicker {
    gap: 5px;
  }

  .product-modal-kicker span,
  .product-modal-benefits span {
    padding: 5px 8px;
    font-size: 0.66rem;
  }

  .product-modal-copy h2 {
    font-size: clamp(1.32rem, 7vw, 1.9rem);
    line-height: 1.06;
  }

  .product-modal-copy p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .product-modal-description {
    max-height: 210px;
    overflow-y: auto;
    white-space: pre-line;
    padding-right: 6px;
    color: #cdd6ee;
  }

  .product-modal-benefits {
    gap: 6px;
  }

  .product-modal-pricing {
    order: 3;
    margin: 0 12px;
    padding: 12px;
    border-radius: 14px;
    gap: 10px;
  }

  .product-modal-price-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-modal-price-head strong {
    width: fit-content;
    padding: 6px 12px;
    font-size: 1.45rem;
  }

  .product-modal-price-head select {
    min-height: 40px;
    font-size: 0.86rem;
  }

  .product-modal-durations {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .product-modal-durations::-webkit-scrollbar {
    display: none;
  }

  .product-modal-duration {
    flex: 0 0 116px;
    min-height: 58px;
    padding: 8px;
    border-radius: 11px;
  }

  .product-modal-duration span,
  .product-modal-duration em {
    font-size: 0.62rem;
  }

  .product-modal-duration strong {
    font-size: 0.82rem;
  }

  .product-modal-buy {
    order: 4;
    margin: 12px;
    min-height: 44px;
    border-radius: 13px;
  }

  .product-modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }
}

/* Top viewport background fix */
:root {
  --page-premium-bg:
    radial-gradient(circle at 10% 0%, rgba(88, 45, 190, 0.11), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(28, 85, 155, 0.055), transparent 32%),
    radial-gradient(circle at 48% 58%, rgba(94, 48, 178, 0.045), transparent 44%),
    linear-gradient(180deg, #040512 0%, #02030b 48%, #010208 100%);
}

html,
body {
  background-color: #02030b !important;
  background-image: var(--page-premium-bg) !important;
  background-repeat: no-repeat !important;
  background-size: 130% 130vh !important;
}

body {
  min-height: 100vh;
  position: relative;
}

.topbar {
  margin-top: 16px !important;
}

/* Subtle animated page background */
body::before {
  content: "";
  position: fixed;
  inset: -18vh -16vw;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(116, 62, 255, 0.13), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(74, 45, 160, 0.09), transparent 30%),
    radial-gradient(circle at 58% 82%, rgba(153, 72, 255, 0.07), transparent 38%);
  filter: blur(26px) saturate(1.04);
  opacity: 0.55;
  transform: translate3d(0, 0, 0) scale(1);
  animation: pageAuraDrift 16s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg,
      transparent 0 30%,
      rgba(104, 56, 255, 0.02) 38%,
      rgba(157, 84, 255, 0.13) 47%,
      rgba(79, 112, 255, 0.055) 54%,
      transparent 66% 100%),
    radial-gradient(ellipse at 48% 28%, rgba(116, 58, 255, 0.075), transparent 38%);
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: pageSheenMove 15s ease-in-out infinite;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  z-index: 50;
}

/* Restore floating widgets above animated background */
.floating-tips {
  position: fixed !important;
  left: 10px;
  right: auto;
  bottom: 10px;
  z-index: 80 !important;
}

.assistant-shell {
  position: fixed !important;
  right: calc(18px + env(safe-area-inset-right));
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 82 !important;
}

.floating-whatsapp {
  position: fixed !important;
  right: calc(18px + env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 83 !important;
}

@media (max-width: 700px) {
  .floating-tips {
    left: 10px;
    bottom: 68px;
  }

  .assistant-shell {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

@keyframes pageAuraDrift {
  0% {
    transform: translate3d(-2vw, -1vh, 0) scale(1);
  }
  50% {
    transform: translate3d(2.4vw, 1.6vh, 0) scale(1.035);
  }
  100% {
    transform: translate3d(-1vw, 2vh, 0) scale(1.015);
  }
}

@keyframes pageSheenMove {
  0%, 100% {
    transform: translate3d(-42vw, -2vh, 0) skewX(-8deg);
    opacity: 0.18;
  }
  50% {
    transform: translate3d(34vw, 2vh, 0) skewX(-8deg);
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }
}

/* Visible dark purple animated background */
body::before {
  opacity: 0.62 !important;
  animation: pageAuraDrift 10s ease-in-out infinite alternate !important;
}

body::after {
  inset: -20vh -35vw !important;
  background:
    linear-gradient(105deg,
      transparent 0 34%,
      rgba(96, 49, 255, 0.015) 39%,
      rgba(152, 74, 255, 0.18) 48%,
      rgba(91, 112, 255, 0.07) 54%,
      transparent 66% 100%),
    radial-gradient(ellipse at 50% 45%, rgba(139, 72, 255, 0.1), transparent 42%) !important;
  filter: blur(8px) saturate(1.12) !important;
  opacity: 0.9 !important;
  animation: pageNeonSweep 13s ease-in-out infinite alternate !important;
}

@keyframes pageNeonSweep {
  0% {
    transform: translate3d(-36vw, -3vh, 0) skewX(-10deg);
    opacity: 0.22;
  }
  45% {
    opacity: 0.74;
  }
  55% {
    opacity: 0.74;
  }
  100% {
    transform: translate3d(36vw, 3vh, 0) skewX(-10deg);
    opacity: 0.22;
  }
}

/* Responsive stabilization layer */
html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

main,
.topbar,
.footer {
  width: min(100% - 32px, 1720px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-shot,
.catalog-showcase,
.workflow-section,
.feedback-section,
.hero-shot-stage,
.hero-shot-frame {
  width: 100% !important;
  max-width: 100% !important;
}

.hero-shot {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.topbar {
  top: 14px;
  border-radius: 22px;
}

@media (min-width: 1600px) {
  main,
  .footer {
    width: min(100% - 64px, 1800px);
  }

  .topbar {
    width: min(100% - 160px, 1480px) !important;
  }

  .hero-shot {
    grid-template-columns: minmax(0, 0.96fr) minmax(680px, 1.04fr);
    gap: 56px;
  }

  .hero-shot-copy {
    max-width: 760px;
  }

  .hero-shot-title {
    font-size: clamp(4.4rem, 4.7vw, 6rem);
  }
}

@media (max-width: 1450px) {
  .hero-shot {
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1fr);
    gap: 28px;
  }

  .hero-shot-copy {
    max-width: 640px;
  }

  .hero-shot-title {
    font-size: clamp(3.45rem, 4.3vw, 4.55rem);
  }

  .hero-shot-main {
    width: calc(100% - 34px);
    min-height: 420px;
    padding: 22px 70px 20px 22px;
  }

  .hero-shot-product-card {
    grid-template-rows: 118px minmax(0, 1fr);
    min-height: 282px;
  }
}

@media (max-width: 1280px) {
  main,
  .topbar,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    padding: 12px 18px;
    gap: 14px;
  }

  .brand {
    width: 52px;
    height: 52px;
  }

  .topbar nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .top-actions .cart-button,
  .top-actions #authButton {
    min-height: 42px;
    padding: 8px 13px;
  }

  .hero-shot {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .hero-shot-copy {
    max-width: 900px;
  }

  .hero-shot-title {
    max-width: 900px;
    font-size: clamp(3.35rem, 6.2vw, 5rem);
  }

  .hero-shot-stage {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-shot-main {
    min-height: 390px;
  }

  .hero-shot-brands {
    margin: 28px 0 46px;
  }
}

@media (max-width: 1024px) {
  main,
  .topbar,
  .footer {
    width: min(100% - 24px, 940px);
  }

  .topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .topbar nav {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .hero-shot {
    margin-top: 28px;
  }

  .hero-shot-title {
    font-size: clamp(3rem, 7.2vw, 4.45rem);
  }

  .hero-shot-title-line {
    white-space: normal;
  }

  .hero-shot-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-shot-frame {
    padding: 22px 0 28px;
  }

  .hero-shot-main {
    width: calc(100% - 28px);
    padding: 20px 24px;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-shot-product-card {
    min-height: 264px;
    grid-template-rows: 112px minmax(0, 1fr);
  }

  .hero-shot-arrow {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .hero-shot-stage {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

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

  .product-modal-card {
    width: min(920px, 100%);
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: auto 1fr;
  }

  .topbar nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .topbar nav::-webkit-scrollbar {
    display: none;
  }

  .top-actions {
    justify-content: flex-end;
  }

  .hero-shot {
    gap: 24px;
  }

  .hero-shot-title {
    font-size: clamp(2.55rem, 9vw, 3.8rem);
  }

  .hero-shot-text {
    max-width: 720px;
    font-size: 1.02rem;
  }

  .hero-shot-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-shot-stats div {
    padding: 14px 16px;
  }

  .hero-shot-main {
    min-height: 0;
    padding: 18px;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shot-product-card {
    min-height: 292px;
    grid-template-rows: 136px minmax(0, 1fr);
  }

  .hero-shot-brands {
    padding: 18px 20px;
    margin: 24px 0 38px;
  }

  .workflow-section,
  .catalog-showcase,
  .feedback-section {
    border-radius: 22px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .toolbar-filters {
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .toolbar-filters select {
    min-width: 0;
  }

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

  .product-modal {
    align-items: stretch;
    padding: 12px;
  }

  .product-modal-card {
    max-height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .product-modal-copy,
  .product-modal-buy-panel {
    overflow: visible;
    padding: 20px;
  }

  .product-modal-buy-panel {
    border-left: 0;
    border-top: 1px solid rgba(135, 157, 255, 0.12);
  }

  .product-modal-media {
    max-height: 320px;
  }
}

@media (max-width: 640px) {
  main,
  .topbar,
  .footer {
    width: min(100% - 16px, 560px);
  }

  .topbar {
    top: 8px;
    padding: 10px;
    border-radius: 18px;
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .brand {
    width: 46px;
    height: 46px;
  }

  .top-actions {
    gap: 7px;
  }

  .top-actions .cart-button,
  .top-actions #authButton {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .topbar nav {
    font-size: 0.84rem;
    gap: 12px;
  }

  .hero-shot {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .hero-shot-copy {
    gap: 12px;
  }

  .hero-shot-eyebrow {
    font-size: 0.78rem;
  }

  .hero-shot-title {
    font-size: clamp(2.2rem, 10.5vw, 3.15rem);
    line-height: 1.02;
  }

  .hero-shot-text {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-shot-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-shot-primary,
  .hero-shot-secondary {
    min-width: 0;
    min-height: 46px;
    padding: 10px;
    font-size: 0.9rem;
  }

  .hero-shot-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-shot-stats div {
    min-height: 76px;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .hero-shot-stats strong {
    font-size: 1.55rem;
  }

  .hero-shot-stats span {
    font-size: 0.82rem;
  }

  .hero-shot-stage {
    grid-template-columns: 1fr;
  }

  .hero-shot-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .hero-shot-arrow:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .hero-shot-arrow-left {
    left: 4px;
    margin: 0;
  }

  .hero-shot-arrow-right {
    right: 4px;
    margin: 0;
  }

  .hero-shot-frame {
    padding: 18px 0 24px;
  }

  .hero-shot-frame::before {
    border-radius: 22px;
  }

  .hero-shot-main {
    width: calc(100% - 18px);
    margin-top: 18px;
    padding: 16px 16px 18px;
    border-radius: 18px;
  }

  .hero-shot-panel-head {
    font-size: 0.92rem;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-shot-product-card {
    min-height: 250px;
    grid-template-rows: 104px minmax(0, 1fr);
    border-radius: 14px;
  }

  .hero-shot-product-copy {
    padding: 10px 10px 12px;
    gap: 7px;
  }

  .hero-shot-product-copy h3 {
    font-size: 0.86rem;
  }

  .hero-shot-product-meta span,
  .hero-shot-product-copy li {
    font-size: 0.68rem;
  }

  .hero-shot-product-price {
    font-size: 0.74rem;
  }

  .hero-shot-product-price strong {
    font-size: 0.98rem;
  }

  .hero-shot-brands {
    margin: 22px 0 34px;
    padding: 15px 0;
    border-radius: 16px;
  }

  .hero-shot-brands-group {
    gap: 34px;
    padding-right: 34px;
  }

  .workflow-section {
    margin: 34px 0 34px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .workflow-head h2,
  .catalog-showcase-head h2,
  .feedback-title,
  .feedback-section h2 {
    font-size: clamp(1.7rem, 7.2vw, 2.25rem);
  }

  .workflow-slider {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: 168px;
  }

  .category-shortcuts .shortcut-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .category-shortcuts .shortcut-list::-webkit-scrollbar {
    display: none;
  }

  .toolbar {
    gap: 10px;
  }

  .toolbar input,
  .toolbar-filters select {
    height: 46px;
    min-height: 46px;
    border-radius: 14px;
  }

  .toolbar-filters {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product img {
    height: 112px;
    padding: 5px;
  }

  .card-body {
    padding: 8px;
  }

  .product h3 {
    font-size: 0.86rem;
    min-height: 2.15rem;
  }

  .product .badge {
    font-size: 0.58rem;
    padding: 3px 6px;
  }

  .duration-control label {
    font-size: 0.64rem;
  }

  .duration-control select {
    min-height: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 0.78rem;
  }

  .price-row {
    gap: 6px;
  }

  .price {
    font-size: 0.9rem;
  }

  .price-row .primary {
    padding: 9px 10px;
    min-height: 38px;
    font-size: 0.82rem;
  }

  .drawer {
    width: 100%;
    max-width: none;
  }

  .drawer-head,
  .drawer-foot {
    padding: 14px;
  }

  #cartItems {
    padding: 10px;
  }

  .product-modal {
    padding: 8px;
  }

  .product-modal-card {
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .product-modal-close {
    width: 34px;
    height: 34px;
    top: 10px;
    right: 10px;
  }

  .product-modal-copy,
  .product-modal-buy-panel {
    padding: 16px;
    gap: 12px;
  }

  .product-modal-media {
    max-height: 230px;
    padding: 8px;
  }

  .product-modal-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .product-modal-description {
    max-height: none;
    padding-right: 0;
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .product-modal-price-head {
    grid-template-columns: 1fr;
  }

  .product-modal-price-head select {
    width: 100%;
  }

  .product-modal-durations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-section {
    margin: 42px 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .feedback-slider {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .feedback-track {
    grid-template-columns: 1fr;
  }

  .floating-tips {
    left: 8px;
    bottom: 72px;
    max-width: min(280px, calc(100vw - 92px));
  }

  .floating-tips.is-collapsed {
    max-width: min(154px, calc(100vw - 92px));
  }

  .assistant-shell {
    right: 10px;
    bottom: 78px;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 12px;
  }
}

@media (max-width: 900px) {
  .admin,
  .profile,
  .auth-card,
  .panel,
  form {
    max-width: 100%;
  }

  .auth-card {
    grid-template-columns: 1fr !important;
  }

  .admin-grid,
  .admin-tabs,
  .profile-grid,
  .form-grid,
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }

  .table-wrap,
  .admin-table-wrap,
  .orders-table-wrap,
  .users-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 720px;
  }
}

@media (max-width: 560px) {
  .admin,
  .profile,
  .auth-card,
  .panel {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .admin-hero,
  .profile-hero,
  .contact-hero,
  .about-hero {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
  }

  .admin-tabs,
  .admin-summary,
  .profile-actions,
  .form-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  input,
  select,
  textarea,
  button,
  .primary,
  .secondary,
  .ghost,
  .danger {
    max-width: 100%;
  }
}

/* Critical overlay restore: cart and product modal must stay fixed */
.drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: min(420px, 100%) !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  z-index: 90 !important;
  transform: translateX(100%);
}

.drawer.open {
  transform: translateX(0) !important;
}

.product-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 88 !important;
}

.product-modal:not(.open) {
  display: none !important;
}

.product-modal.open {
  display: flex !important;
}

@media (max-width: 640px) {
  .drawer {
    width: 100vw !important;
  }

  .product-modal {
    align-items: stretch !important;
    justify-content: center !important;
    padding: 8px !important;
  }
}

/* Footer restore */
.footer {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
  position: relative !important;
  z-index: 2 !important;
  width: min(100% - 48px, 1720px) !important;
  max-width: 1720px !important;
  margin: 76px auto 26px !important;
  padding: clamp(34px, 3.2vw, 52px) clamp(24px, 4vw, 60px) 28px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(136, 112, 255, 0.22) !important;
  border-top-color: rgba(165, 103, 255, 0.34) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(136, 80, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(58, 149, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(13, 15, 36, 0.96), rgba(5, 6, 18, 0.98)) !important;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
  overflow: visible !important;
  clear: both !important;
}

.footer-content {
  display: grid !important;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1fr) minmax(300px, 1.05fr) !important;
  gap: clamp(28px, 4vw, 72px) !important;
  max-width: 1380px !important;
  margin: 0 auto 34px !important;
  align-items: start !important;
}

.footer-section {
  gap: 14px !important;
  min-width: 0 !important;
}

.footer-section h3 {
  font-size: 1.05rem !important;
  color: #ffffff !important;
  letter-spacing: 0 !important;
}

.footer-section p,
.footer-section a,
.footer-section li,
.contact-info p,
.newsletter-desc {
  font-size: 0.98rem !important;
  line-height: 1.5 !important;
}

.footer-section ul {
  gap: 11px !important;
}

.subscribe-btn {
  width: fit-content !important;
  min-height: 46px !important;
  padding: 12px 18px !important;
  border-radius: 14px !important;
}

.footer-disclaimer {
  max-width: 1120px !important;
  margin: 0 auto 18px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(145, 162, 246, 0.1) !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.footer-bottom {
  padding-top: 14px !important;
}

.footer-bottom p {
  font-size: 0.94rem !important;
}

@media (max-width: 900px) {
  .footer {
    width: min(100% - 24px, 820px) !important;
    margin-top: 54px !important;
    padding: 28px 22px 24px !important;
    border-radius: 22px !important;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .footer-section:last-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  .footer {
    width: min(100% - 16px, 520px) !important;
    margin-top: 42px !important;
    padding: 24px 18px 22px !important;
    border-radius: 18px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 26px !important;
  }

  .footer-section h3 {
    font-size: 1rem !important;
  }

  .footer-section p,
  .footer-section a,
  .footer-section li,
  .contact-info p,
  .newsletter-desc {
    font-size: 0.94rem !important;
  }

  .subscribe-btn {
    width: 100% !important;
  }
}

/* Footer classic layout restore */
.footer {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 72px 0 0 !important;
  padding: 44px clamp(24px, 8vw, 220px) 22px !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-top: 1px solid rgba(145, 162, 246, 0.12) !important;
  background:
    radial-gradient(circle at 82% 0%, rgba(124, 67, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(2, 3, 12, 0.99)) !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.footer-content {
  display: grid !important;
  grid-template-columns: minmax(180px, 0.85fr) minmax(240px, 1fr) minmax(320px, 1.15fr) !important;
  gap: clamp(52px, 8vw, 150px) !important;
  max-width: 1400px !important;
  margin: 0 auto 46px !important;
  align-items: start !important;
}

.footer-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  min-width: 0 !important;
}

.footer-section h3 {
  margin: 0 0 4px !important;
  font-size: 1.02rem !important;
  font-weight: 850 !important;
  color: #f8fbff !important;
  text-transform: none !important;
}

.footer-section ul {
  gap: 12px !important;
}

.footer-section a,
.footer-section p,
.contact-info p,
.newsletter-desc {
  color: #aeb8d5 !important;
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
}

.footer-section a:hover {
  color: #ffffff !important;
}

.socials {
  margin-top: 8px !important;
}

.socials h4 {
  font-size: 0.88rem !important;
  margin-bottom: 10px !important;
}

.social-links a {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.social-links a > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.38) !important;
}

.subscribe-btn {
  width: min(100%, 440px) !important;
  min-height: 46px !important;
  margin-top: 16px !important;
  border-radius: 8px !important;
}

.footer-disclaimer {
  max-width: 980px !important;
  margin: 0 auto 28px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #9ea8c7 !important;
  text-align: left !important;
}

.footer-disclaimer p {
  margin: 0 !important;
  font-size: 0.86rem !important;
  line-height: 1.45 !important;
}

.footer-bottom {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(145, 162, 246, 0.08) !important;
  text-align: center !important;
}

.footer-bottom p {
  color: #9ea8c7 !important;
  font-size: 0.92rem !important;
}

@media (max-width: 900px) {
  .footer {
    width: 100% !important;
    padding: 36px 24px 22px !important;
    margin-top: 52px !important;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    margin-bottom: 34px !important;
  }

  .footer-section:last-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  .footer {
    width: 100% !important;
    padding: 32px 18px 20px !important;
    margin-top: 42px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .subscribe-btn {
    width: 100% !important;
  }
}

/* Final premium hero carousel scale */
@media (min-width: 1180px) {
  .hero-shot-stage {
    max-width: 980px !important;
    transform: translateX(34px) !important;
  }

  .hero-shot-frame {
    padding: 30px 0 34px !important;
  }

  .hero-shot-frame::before {
    border-radius: 32px !important;
    border-color: rgba(142, 92, 255, 0.86) !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(142, 92, 255, 0.13), transparent 44%),
      linear-gradient(180deg, rgba(20, 16, 48, 0.98), rgba(8, 9, 27, 0.98)) !important;
    box-shadow:
      0 0 0 1px rgba(142, 92, 255, 0.14),
      0 0 44px rgba(142, 92, 255, 0.22),
      0 30px 76px rgba(0,0,0,0.36),
      inset 0 1px 0 rgba(255,255,255,0.06) !important;
  }

  .hero-shot-main {
    width: calc(100% - 58px) !important;
    min-height: 500px !important;
    padding: 28px 30px 24px !important;
    border-color: rgba(122, 138, 255, 0.26) !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(110, 93, 255, 0.12), transparent 42%),
      linear-gradient(180deg, rgba(17, 20, 44, 0.94), rgba(8, 10, 28, 0.96)) !important;
  }

  .hero-shot-card-grid {
    gap: 16px !important;
  }

  .hero-shot-product-card {
    min-height: 352px !important;
    grid-template-rows: 150px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 150px !important;
  }

  .hero-shot-product-copy {
    padding: 15px 17px 17px !important;
    gap: 10px !important;
  }

  .hero-shot-product-copy h3 {
    font-size: 1.06rem !important;
  }

  .hero-shot-product-price strong {
    font-size: 1.24rem !important;
  }
}

@media (min-width: 1180px) and (max-width: 1550px) {
  .hero-shot-stage {
    max-width: 760px !important;
    transform: translateX(30px) !important;
  }

  .hero-shot-main {
    min-height: 438px !important;
    padding: 24px 24px 22px !important;
  }

  .hero-shot-product-card {
    min-height: 306px !important;
    grid-template-rows: 126px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 126px !important;
  }
}

/* Final hero anti-overlap guard */
.hero-shot {
  overflow: visible !important;
}

.hero-shot-copy,
.hero-shot-stage {
  position: relative;
  min-width: 0;
}

.hero-shot-copy {
  z-index: 2;
}

.hero-shot-stage {
  z-index: 1;
}

.hero-shot-title {
  overflow-wrap: normal;
  word-break: normal;
}

@media (min-width: 1180px) {
  .hero-shot {
    display: grid !important;
    grid-template-columns: minmax(0, 0.94fr) minmax(560px, 0.9fr) !important;
    gap: clamp(28px, 3.2vw, 58px) !important;
    align-items: center !important;
  }

  .hero-shot-copy {
    max-width: min(100%, 760px) !important;
  }

  .hero-shot-title {
    max-width: 760px !important;
    font-size: clamp(3.25rem, 4vw, 4.85rem) !important;
    line-height: 1.02 !important;
  }

  .hero-shot-title-line {
    display: block !important;
    white-space: normal !important;
  }

  .hero-shot-frame {
    justify-self: end !important;
    width: min(100%, 760px) !important;
  }
}

/* Hero carousel arrows final polish */
.hero-shot-stage {
  position: relative !important;
}

.hero-shot-arrow {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.18), transparent 36%),
    linear-gradient(145deg, rgba(88, 82, 175, 0.98), rgba(48, 45, 112, 0.98)) !important;
  border: 1px solid rgba(156, 160, 255, 0.42) !important;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.32),
    0 0 0 4px rgba(107, 97, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.16) !important;
}

.hero-shot-arrow::before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  border-top: 3px solid #ffffff !important;
  border-right: 3px solid #ffffff !important;
  filter: drop-shadow(0 0 8px rgba(121, 176, 255, 0.55)) !important;
}

.hero-shot-arrow::after {
  content: "" !important;
  position: absolute !important;
  inset: -6px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(143, 148, 255, 0.22) !important;
  pointer-events: none !important;
}

.hero-shot-arrow-left::before {
  transform: translateX(2px) rotate(-135deg) !important;
}

.hero-shot-arrow-right::before {
  transform: translateX(-2px) rotate(45deg) !important;
}

.hero-shot-arrow-left {
  margin-right: -30px !important;
  transform: translateX(12px) !important;
}

.hero-shot-arrow-right {
  margin-left: -18px !important;
}

@media (min-width: 641px) {
  .hero-shot-arrow {
    align-self: center !important;
  }
}

@media (max-width: 640px) {
  .hero-shot-arrow {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    top: 50% !important;
  }

  .hero-shot-arrow::before {
    width: 10px !important;
    height: 10px !important;
    border-width: 2.5px !important;
  }
}

@media (min-width: 1180px) and (max-width: 1450px) {
  .hero-shot {
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 0.9fr) !important;
    gap: 24px !important;
  }

  .hero-shot-copy {
    max-width: 620px !important;
  }

  .hero-shot-title {
    max-width: 620px !important;
    font-size: clamp(2.85rem, 3.95vw, 3.85rem) !important;
  }

  .hero-shot-text {
    max-width: 560px !important;
    font-size: 1rem !important;
  }

  .hero-shot-frame {
    width: min(100%, 690px) !important;
  }
}

@media (max-width: 1179px) {
  .hero-shot {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .hero-shot-copy,
  .hero-shot-stage {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-shot-title {
    max-width: 900px !important;
    font-size: clamp(2.8rem, 7vw, 4.35rem) !important;
  }

  .hero-shot-frame {
    justify-self: center !important;
  }
}

@media (max-width: 640px) {
  .hero-shot {
    gap: 18px !important;
  }

  .hero-shot-title {
    max-width: 100% !important;
    font-size: clamp(2.05rem, 10.4vw, 3rem) !important;
    line-height: 1.04 !important;
  }
}

/* Hero proportion restore */
@media (min-width: 1180px) {
  .hero-shot {
    width: min(100%, 1780px) !important;
    min-height: clamp(600px, calc(100vh - 210px), 720px) !important;
    grid-template-columns: minmax(0, 0.98fr) minmax(700px, 1.02fr) !important;
    gap: clamp(48px, 5vw, 88px) !important;
    align-items: center !important;
    margin-top: clamp(26px, 3vh, 42px) !important;
    margin-bottom: clamp(34px, 4vh, 56px) !important;
  }

  .hero-shot-copy {
    max-width: 820px !important;
    gap: 18px !important;
  }

  .hero-shot-eyebrow {
    font-size: 0.94rem !important;
    margin-bottom: 4px !important;
  }

  .hero-shot-title {
    max-width: 820px !important;
    font-size: clamp(4.25rem, 4.85vw, 5.55rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
  }

  .hero-shot-title-line {
    white-space: normal !important;
  }

  .hero-shot-text {
    max-width: 680px !important;
    font-size: 1.12rem !important;
    line-height: 1.5 !important;
  }

  .hero-shot-actions {
    margin-top: 2px !important;
  }

  .hero-shot-stats {
    width: min(100%, 780px) !important;
    max-width: 780px !important;
    gap: 16px !important;
    margin-top: 0 !important;
  }

  .hero-shot-stats div {
    min-height: 106px !important;
    padding: 20px 22px !important;
  }

  .hero-shot-stats strong {
    font-size: 2rem !important;
  }

  .hero-shot-frame {
    width: min(100%, 820px) !important;
    justify-self: end !important;
    padding: 26px 0 34px !important;
  }

  .hero-shot-main {
    width: calc(100% - 48px) !important;
    min-height: 482px !important;
    margin-top: 30px !important;
    padding: 28px 26px 24px !important;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .hero-shot-product-card {
    min-height: 330px !important;
    grid-template-rows: 136px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 136px !important;
  }

  .hero-shot-brands {
    margin-top: 36px !important;
    margin-bottom: 48px !important;
  }
}

@media (min-width: 1180px) and (max-width: 1500px) {
  .hero-shot {
    min-height: clamp(540px, calc(100vh - 190px), 650px) !important;
    grid-template-columns: minmax(0, 0.96fr) minmax(610px, 1.04fr) !important;
    gap: 34px !important;
  }

  .hero-shot-copy {
    max-width: 700px !important;
  }

  .hero-shot-title {
    max-width: 700px !important;
    font-size: clamp(3.45rem, 4.35vw, 4.55rem) !important;
    line-height: 1 !important;
  }

  .hero-shot-text {
    max-width: 590px !important;
    font-size: 1.02rem !important;
  }

  .hero-shot-stats {
    width: min(100%, 650px) !important;
  }

  .hero-shot-stats div {
    min-height: 92px !important;
    padding: 16px 18px !important;
  }

  .hero-shot-frame {
    width: min(100%, 710px) !important;
  }

  .hero-shot-main {
    min-height: 430px !important;
    padding: 24px 22px 22px !important;
  }

  .hero-shot-product-card {
    min-height: 292px !important;
    grid-template-rows: 118px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 118px !important;
  }
}

/* Restore original desktop hero proportions */
@media (min-width: 1180px) {
  main {
    width: min(100% - 64px, 1840px) !important;
    padding-top: 18px !important;
  }

  .topbar {
    width: min(100% - 120px, 1480px) !important;
    top: 16px !important;
    padding: 12px 28px !important;
    border-radius: 22px !important;
  }

  .topbar .brand,
  .brand {
    width: 56px !important;
    height: 56px !important;
  }

  .hero-shot {
    width: 100% !important;
    min-height: clamp(540px, calc(100vh - 245px), 640px) !important;
    display: grid !important;
    grid-template-columns: minmax(760px, 0.98fr) minmax(780px, 1.02fr) !important;
    gap: clamp(42px, 4vw, 76px) !important;
    align-items: center !important;
    margin-top: 10px !important;
    margin-bottom: 18px !important;
  }

  .hero-shot-copy {
    max-width: 860px !important;
    width: 100% !important;
    gap: 14px !important;
  }

  .hero-shot-title {
    max-width: 860px !important;
    font-size: clamp(4.15rem, 4.65vw, 5.45rem) !important;
    line-height: 0.99 !important;
    letter-spacing: 0 !important;
  }

  .hero-shot-title-line {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero-shot-text {
    max-width: 700px !important;
    font-size: 1.08rem !important;
    line-height: 1.52 !important;
  }

  .hero-shot-stats {
    width: min(100%, 820px) !important;
    max-width: 820px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .hero-shot-stats div {
    min-height: 86px !important;
    padding: 14px 20px !important;
  }

  .hero-shot-stage {
    width: 100% !important;
    max-width: 880px !important;
    justify-self: end !important;
  }

  .hero-shot-frame {
    width: 100% !important;
    padding: 22px 0 26px !important;
  }

  .hero-shot-main {
    width: calc(100% - 54px) !important;
    min-height: 438px !important;
    margin: 22px auto 0 !important;
    padding: 22px 24px 20px !important;
    border-radius: 28px !important;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .hero-shot-product-card {
    min-height: 304px !important;
    grid-template-rows: 124px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 124px !important;
  }

  .hero-shot-brands {
    margin-top: 12px !important;
    margin-bottom: 38px !important;
  }
}

@media (min-width: 1180px) and (max-width: 1550px) {
  main {
    width: min(100% - 44px, 1460px) !important;
  }

  .hero-shot {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.94fr) !important;
    gap: 34px !important;
    min-height: clamp(500px, calc(100vh - 235px), 590px) !important;
  }

  .hero-shot-copy {
    max-width: 700px !important;
  }

  .hero-shot-title {
    max-width: 100% !important;
    font-size: clamp(2.85rem, 3.45vw, 3.55rem) !important;
    line-height: 1.03 !important;
  }

  .hero-shot-title-line {
    white-space: nowrap !important;
  }

  .hero-shot-text {
    max-width: 590px !important;
    font-size: 1rem !important;
  }

  .hero-shot-stats {
    max-width: 650px !important;
  }

  .hero-shot-stage {
    max-width: 650px !important;
    transform: translateX(22px) !important;
  }

  .hero-shot-main {
    min-height: 390px !important;
  }

  .hero-shot-product-card {
    min-height: 262px !important;
    grid-template-rows: 104px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 104px !important;
  }
}

/* Final desktop title width fix */
@media (min-width: 1180px) and (max-width: 1550px) {
  .hero-shot-copy {
    max-width: 660px !important;
    overflow: visible !important;
    margin-left: -22px !important;
  }

  .hero-shot-title {
    width: 740px !important;
    max-width: none !important;
    font-size: clamp(2.95rem, 3.72vw, 3.75rem) !important;
    line-height: 1.02 !important;
    transform: scaleX(0.8) !important;
    transform-origin: left center !important;
  }

  .hero-shot-title-line {
    white-space: nowrap !important;
  }

  .hero-shot-text,
  .hero-shot-actions,
  .hero-shot-stats {
    max-width: 660px !important;
  }
}

@media (min-width: 1551px) {
  .hero-shot-copy {
    margin-left: -24px !important;
  }

  .hero-shot-title {
    transform: scaleX(0.88) !important;
    transform-origin: left center !important;
  }

  .hero-shot-stage {
    transform: translateX(24px) !important;
  }
}

@media (min-width: 1180px) and (max-width: 1320px) {
  .hero-shot {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    min-height: auto !important;
  }

  .hero-shot-copy {
    max-width: 900px !important;
  }

  .hero-shot-title {
    max-width: 900px !important;
    font-size: clamp(3.25rem, 5.3vw, 4.35rem) !important;
  }

  .hero-shot-stage {
    max-width: 860px !important;
    justify-self: center !important;
  }
}

@media (max-width: 420px) {
  main,
  .topbar,
  .footer {
    width: min(100% - 12px, 390px);
  }

  .topbar {
    padding: 8px;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .top-actions #authButton {
    max-width: 86px;
  }

  .hero-shot-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

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

  .hero-shot-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-shot-stats div {
    padding: 10px 8px;
  }

  .hero-shot-stats strong {
    font-size: 1.35rem;
  }

  .hero-shot-stats span {
    font-size: 0.74rem;
  }

  .hero-shot-main {
    width: calc(100% - 12px);
    padding: 14px 12px 16px;
  }

  .hero-shot-card-grid {
    gap: 8px;
  }

  .hero-shot-product-card {
    min-height: 236px;
    grid-template-rows: 96px minmax(0, 1fr);
  }

  .hero-shot-product-copy ul {
    gap: 4px;
  }

  .grid {
    gap: 8px;
  }

  .product img {
    height: 104px;
  }

  .price-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .price-row .primary {
    width: 100%;
  }

  .product-modal-durations {
    grid-template-columns: 1fr;
  }

  .floating-tips {
    max-width: calc(100vw - 86px);
  }
}

/* Keep quick tips visible without covering the footer */
body.footer-in-view .floating-tips {
  width: auto !important;
  min-width: 138px !important;
  max-width: 158px !important;
  min-height: 48px !important;
  bottom: calc(118px + env(safe-area-inset-bottom)) !important;
  padding: 8px 10px 8px 14px !important;
  border-radius: 999px !important;
  opacity: 0.92 !important;
}

body.footer-in-view .floating-tips .floating-tips-panel {
  display: none !important;
}

body.footer-in-view .floating-tips .floating-tips-head {
  min-height: 42px !important;
  padding: 0 !important;
  border-bottom: 0 !important;
  gap: 8px !important;
}

body.footer-in-view .floating-tips .floating-tips-head strong {
  display: none !important;
}

body.footer-in-view .floating-tips .floating-tips-head span {
  display: inline !important;
  color: #bde8ff !important;
  font-size: 0.7rem !important;
  text-shadow: 0 0 12px rgba(94, 203, 255, 0.42);
}

body.footer-in-view .floating-tips .floating-tips-toggle {
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  margin-left: 4px !important;
}

@media (max-width: 560px) {
  body.footer-in-view .floating-tips {
    left: 8px !important;
    bottom: calc(126px + env(safe-area-inset-bottom)) !important;
    min-width: 126px !important;
    max-width: 142px !important;
  }
}

/* Hero balance: tighter title, wider product showcase */
@media (min-width: 1321px) {
  .hero-shot {
    grid-template-columns: minmax(560px, 0.78fr) minmax(850px, 1.22fr) !important;
    gap: clamp(34px, 3.6vw, 64px) !important;
  }

  .hero-shot-copy {
    max-width: 720px !important;
    margin-left: -10px !important;
  }

  .hero-shot-title {
    width: 760px !important;
    max-width: none !important;
    font-size: clamp(3.55rem, 4vw, 4.75rem) !important;
    line-height: 1 !important;
    transform: scaleX(0.82) !important;
    transform-origin: left center !important;
  }

  .hero-shot-text,
  .hero-shot-actions,
  .hero-shot-stats {
    max-width: 650px !important;
  }

  .hero-shot-stage {
    max-width: 980px !important;
    transform: translateX(18px) !important;
  }

  .hero-shot-frame {
    width: 100% !important;
  }

  .hero-shot-main {
    width: calc(100% - 44px) !important;
    min-height: 462px !important;
    padding: 24px 26px 22px !important;
  }

  .hero-shot-card-grid {
    gap: 16px !important;
  }

  .hero-shot-product-card {
    min-height: 322px !important;
    grid-template-rows: 132px minmax(0, 1fr) !important;
  }

  .hero-shot-product-art {
    min-height: 132px !important;
  }
}

@media (min-width: 1180px) and (max-width: 1320px) {
  .hero-shot-title {
    font-size: clamp(3rem, 4.9vw, 3.9rem) !important;
    transform: scaleX(0.86) !important;
    transform-origin: left center !important;
  }

  .hero-shot-stage {
    max-width: 920px !important;
  }
}

/* Premium sticky header motion */
.topbar {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease !important;
  will-change: transform, background, box-shadow;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(126, 184, 255, 0.08) 42%, rgba(170, 99, 255, 0.12) 56%, transparent 78%);
  transform: translateX(-38%);
  transition: opacity 0.28s ease;
}

body.topbar-scrolled .topbar {
  background:
    radial-gradient(circle at 8% 0%, rgba(92, 169, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 10, 24, 0.88), rgba(4, 6, 18, 0.82)) !important;
  border-color: rgba(126, 184, 255, 0.24) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(126, 184, 255, 0.05),
    0 0 34px rgba(118, 88, 255, 0.12) !important;
  backdrop-filter: blur(22px) saturate(1.18) !important;
}

body.topbar-scrolled .topbar::before {
  opacity: 1;
  animation: topbarSweep 5.8s ease-in-out infinite;
}

body.topbar-going-down .topbar {
  transform: translateY(-5px) scale(0.992);
}

body.topbar-going-up .topbar {
  transform: translateY(2px) scale(1.002);
}

body.topbar-going-down .brand {
  transform: scale(0.96);
}

.brand {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease !important;
}

body.topbar-scrolled .brand {
  box-shadow:
    0 14px 34px rgba(40, 158, 255, 0.16),
    0 0 22px rgba(174, 91, 255, 0.12) !important;
}

@keyframes topbarSweep {
  0%, 52%, 100% {
    transform: translateX(-42%);
  }
  72% {
    transform: translateX(42%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar::before,
  .brand {
    animation: none !important;
    transition: none !important;
  }
}

/* Profile hardening: avatar/image fallback must never break the header */
.profile-premium {
  overflow: visible !important;
}

.profile-premium .profile-header {
  overflow: hidden !important;
}

.profile-premium .profile-header-top {
  align-items: center !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
}

.profile-premium .profile-avatar-group,
.profile-premium .profile-avatar-wrapper {
  width: 104px !important;
  height: 104px !important;
  min-width: 104px !important;
  min-height: 104px !important;
}

.profile-premium .profile-avatar-large {
  width: 104px !important;
  height: 104px !important;
  min-width: 104px !important;
  min-height: 104px !important;
  max-width: 104px !important;
  max-height: 104px !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  font-size: 2.55rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.profile-premium .profile-avatar-large img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  border-radius: inherit !important;
  display: block !important;
  font-size: 0 !important;
  color: transparent !important;
}

.profile-premium .profile-avatar-edit {
  z-index: 3 !important;
}

.profile-premium .profile-identity {
  display: grid !important;
  gap: 8px !important;
  min-width: 0 !important;
  align-content: center !important;
}

.profile-premium .profile-name-input {
  display: block !important;
  width: 100% !important;
  max-width: 780px !important;
  min-height: 1.1em !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.profile-premium .profile-identity .muted {
  margin: 0 !important;
}

.profile-premium .profile-mini-tags {
  margin-top: 4px !important;
}

@media (max-width: 760px) {
  .profile-premium .profile-header-top {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .profile-premium .profile-identity {
    justify-items: center !important;
    width: 100% !important;
  }

  .profile-premium .profile-name-input {
    text-align: center !important;
    white-space: normal !important;
  }

  .profile-premium .profile-mini-tags {
    justify-content: center !important;
  }
}

/* Premium neon section separators */
.hero-shot-brands,
.workflow-section,
.catalog-showcase,
.feedback-section,
.footer,
.page-shell > .panel:first-child {
  position: relative;
}

.hero-shot-brands::after,
.catalog-showcase::after,
.page-shell > .panel:first-child::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 86px);
  right: clamp(18px, 5vw, 86px);
  bottom: -1px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(102, 183, 255, 0.42), rgba(160, 84, 255, 0.68), rgba(102, 183, 255, 0.32), transparent);
  box-shadow:
    0 0 14px rgba(132, 96, 255, 0.34),
    0 0 28px rgba(60, 190, 255, 0.12);
  pointer-events: none;
  animation: neonSectionPulse 6.5s ease-in-out infinite;
}

.workflow-section::after,
.feedback-section::after {
  left: clamp(24px, 7vw, 140px) !important;
  right: clamp(24px, 7vw, 140px) !important;
  height: 1px !important;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(106, 198, 255, 0.52), rgba(178, 92, 255, 0.74), rgba(106, 198, 255, 0.38), transparent) !important;
  box-shadow:
    0 0 16px rgba(160, 84, 255, 0.44),
    0 0 34px rgba(66, 184, 255, 0.14) !important;
  animation: neonSectionPulse 6.5s ease-in-out infinite;
}

.footer::before {
  content: "";
  position: absolute;
  left: clamp(24px, 10vw, 220px);
  right: clamp(24px, 10vw, 220px);
  top: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(104, 190, 255, 0.34), rgba(166, 94, 255, 0.64), transparent);
  box-shadow: 0 0 22px rgba(151, 90, 255, 0.28);
  pointer-events: none;
}

@keyframes neonSectionPulse {
  0%, 100% {
    opacity: 0.42;
    transform: scaleX(0.96);
  }
  50% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@media (max-width: 700px) {
  .hero-shot-brands::after,
  .catalog-showcase::after,
  .workflow-section::after,
  .feedback-section::after,
  .page-shell > .panel:first-child::after {
    left: 18px !important;
    right: 18px !important;
  }
}

/* Final vertical rhythm between home sections */
.hero-shot-brands {
  margin-top: clamp(24px, 2.2vw, 36px) !important;
  margin-bottom: clamp(34px, 3vw, 48px) !important;
}

.workflow-section {
  margin-top: clamp(34px, 3vw, 48px) !important;
  margin-bottom: clamp(34px, 3vw, 48px) !important;
}

.catalog-showcase {
  margin-top: clamp(34px, 3vw, 48px) !important;
  margin-bottom: clamp(34px, 3vw, 48px) !important;
}

.feedback-section {
  margin-top: clamp(46px, 3.6vw, 62px) !important;
  margin-bottom: clamp(46px, 3.6vw, 62px) !important;
}

@media (max-width: 900px) {
  .hero-shot-brands,
  .workflow-section,
  .catalog-showcase,
  .feedback-section {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}

@media (max-width: 560px) {
  .hero-shot-brands,
  .workflow-section,
  .catalog-showcase,
  .feedback-section {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

/* Floating widgets must always stay above page content */
.floating-tips,
.assistant-shell,
.floating-whatsapp {
  position: fixed !important;
  z-index: 2147483000 !important;
  isolation: isolate !important;
  transform: translateZ(0);
  will-change: transform;
}

.floating-tips {
  left: max(10px, env(safe-area-inset-left)) !important;
  right: auto !important;
  bottom: calc(12px + env(safe-area-inset-bottom)) !important;
}

body.footer-in-view .floating-tips {
  z-index: 2147483000 !important;
  bottom: calc(118px + env(safe-area-inset-bottom)) !important;
}

@media (max-width: 700px) {
  .floating-tips {
    left: max(8px, env(safe-area-inset-left)) !important;
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }

  body.footer-in-view .floating-tips {
    bottom: calc(126px + env(safe-area-inset-bottom)) !important;
  }
}

/* Annual savings cue */
.annual-saving-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  margin: -2px 0 1px;
  padding: 4px 9px 4px 20px;
  border-radius: 999px;
  border: 1px solid rgba(96, 214, 255, 0.24);
  background:
    radial-gradient(circle at 12% 20%, rgba(96, 214, 255, 0.22), transparent 48%),
    linear-gradient(135deg, rgba(27, 71, 126, 0.36), rgba(29, 23, 70, 0.42));
  color: #bdeaff;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: left;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 14px rgba(92, 169, 255, 0.08);
}

.annual-saving-note::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #68ffbd;
  box-shadow: 0 0 10px rgba(104, 255, 189, 0.58);
  transform: translateY(-50%);
}

.annual-saving-note.modal {
  display: inline-flex;
  margin: 7px 0 0;
  padding: 5px 10px 5px 22px;
  color: #dff8ff;
  font-size: 0.7rem;
  letter-spacing: 0.025em;
  background:
    radial-gradient(circle at 8% 30%, rgba(104, 255, 189, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(92, 169, 255, 0.16), rgba(157, 92, 255, 0.09)),
    rgba(9, 16, 34, 0.72);
}

.cart-duration-tip {
  width: fit-content;
  margin: 4px 0 0;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(104, 255, 189, 0.18);
  background: rgba(7, 28, 24, 0.34);
  color: #bdf8df;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
}

@media (max-width: 560px) {
  .annual-saving-note {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .annual-saving-note.modal {
    margin: 5px 0 0;
    font-size: 0.66rem;
  }
}

/* Match footer spacing with the rest of the home rhythm */
.feedback-section + .footer,
.footer {
  margin-top: clamp(46px, 3.6vw, 62px) !important;
}

@media (max-width: 900px) {
  .feedback-section + .footer,
  .footer {
    margin-top: 30px !important;
  }
}

@media (max-width: 560px) {
  .feedback-section + .footer,
  .footer {
    margin-top: 24px !important;
  }
}

/* Floating widgets are global overlay layers, never clipped by page sections */
body > .floating-tips,
body > .assistant-shell,
body > .floating-whatsapp {
  position: fixed !important;
  z-index: 2147483647 !important;
  transform: translate3d(0, 0, 0) !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1;
}

body > .floating-tips,
body.footer-in-view > .floating-tips {
  left: max(10px, env(safe-area-inset-left)) !important;
  right: auto !important;
  bottom: calc(12px + env(safe-area-inset-bottom)) !important;
}

body.footer-in-view > .floating-tips .floating-tips-head,
body.footer-in-view > .floating-tips .floating-tips-toggle {
  visibility: visible !important;
}

@media (max-width: 700px) {
  body > .floating-tips,
  body.footer-in-view > .floating-tips {
    left: calc(8px + env(safe-area-inset-left)) !important;
    right: auto !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    top: auto !important;
    z-index: 2147483647 !important;
  }
}

/* Mobile product modal: keep cover and description in normal flow */
@media (max-width: 700px) {
  .product-modal {
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
  }

  .product-modal-card {
    width: min(100%, 430px) !important;
    max-height: calc(100dvh - 20px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-radius: 18px !important;
  }

  .product-modal-copy {
    order: 1 !important;
    display: grid !important;
    padding: 16px 14px 10px !important;
    gap: 9px !important;
    overflow: visible !important;
  }

  .product-modal-buy-panel {
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 14px 14px !important;
    overflow: visible !important;
    border-left: 0 !important;
    border-top: 0 !important;
  }

  .product-modal-media {
    order: 1 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
    margin: 4px 0 0 !important;
    padding: 8px !important;
    display: grid !important;
    place-items: center !important;
  }

  .product-modal-media img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 190px !important;
    object-fit: contain !important;
  }

  .product-modal-pricing {
    order: 2 !important;
    margin: 0 !important;
  }

  .product-modal-buy {
    order: 3 !important;
    margin: 0 !important;
  }
}

/* Mobile cart drawer final fix */
@media (max-width: 700px) {
  .drawer {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(94vw, 390px) !important;
    max-width: 94vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto auto !important;
    overflow: hidden !important;
    border-left: 1px solid rgba(118, 132, 255, 0.18) !important;
    border-radius: 18px 0 0 18px !important;
    transform: translateX(104%) !important;
    z-index: 2147483200 !important;
  }

  .drawer.open {
    transform: translateX(0) !important;
  }

  .drawer-head {
    position: sticky !important;
    top: 0 !important;
    z-index: 5 !important;
    min-height: 58px !important;
    padding: 12px 12px !important;
    background: rgba(8, 10, 24, 0.98) !important;
    backdrop-filter: blur(18px) !important;
  }

  .drawer-head h2 {
    font-size: 1rem !important;
  }

  #closeCart {
    position: relative !important;
    z-index: 6 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  #cartItems {
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 10px !important;
  }

  .payment-section {
    max-height: 28dvh !important;
    overflow-y: auto !important;
    margin: 0 10px !important;
    padding: 10px 0 !important;
  }

  .drawer-foot {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 4 !important;
    padding: 10px 12px max(12px, env(safe-area-inset-bottom)) !important;
    gap: 10px !important;
    background: rgba(8, 10, 24, 0.98) !important;
    backdrop-filter: blur(18px) !important;
  }

  .payment-options {
    grid-template-columns: 1fr !important;
  }

  .payment-card {
    min-height: 54px !important;
  }

  .totals {
    padding: 12px 14px !important;
  }

  #checkoutButton {
    min-height: 44px !important;
  }

  .overlay.open {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483100 !important;
    background: rgba(2, 4, 14, 0.64) !important;
  }
}

/* Cart item final isolation: compact product rows inside drawer */
#cartDrawer #cartItems {
  align-content: start !important;
}

#cartDrawer .cart-item {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: start !important;
  padding: 10px 12px !important;
  gap: 7px !important;
  border-radius: 13px !important;
}

#cartDrawer .cart-item-copy {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2px !important;
  min-width: 0 !important;
}

#cartDrawer .cart-item strong {
  margin: 0 !important;
  max-width: 100% !important;
  font-size: 0.9rem !important;
  line-height: 1.22 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

#cartDrawer .cart-item span {
  margin: 0 !important;
  font-size: 0.8rem !important;
  line-height: 1.25 !important;
}

#cartDrawer .cart-item-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  min-width: 0 !important;
}

#cartDrawer .cart-item-price {
  width: auto !important;
  min-width: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

#cartDrawer .cart-item button.danger {
  width: auto !important;
  min-width: 70px !important;
  min-height: 30px !important;
  height: 30px !important;
  padding: 0 10px !important;
  border-radius: 10px !important;
  font-size: 0.76rem !important;
  line-height: 1 !important;
}

/* Finer premium background neon */
body::before {
  opacity: 0.46 !important;
  filter: blur(34px) saturate(1.02) !important;
}

body::after {
  inset: -18vh -28vw !important;
  background:
    linear-gradient(106deg,
      transparent 0 42%,
      rgba(106, 62, 255, 0.018) 46%,
      rgba(158, 82, 255, 0.075) 49%,
      rgba(84, 126, 255, 0.028) 52%,
      transparent 58% 100%),
    radial-gradient(ellipse at 50% 44%, rgba(128, 72, 255, 0.045), transparent 34%) !important;
  filter: blur(14px) saturate(1.04) !important;
  opacity: 0.66 !important;
  mix-blend-mode: screen !important;
  animation: pageNeonSweepThin 18s ease-in-out infinite alternate !important;
}

@keyframes pageNeonSweepThin {
  0% {
    transform: translate3d(-28vw, -2vh, 0) skewX(-8deg);
    opacity: 0.18;
  }
  45%, 55% {
    opacity: 0.52;
  }
  100% {
    transform: translate3d(28vw, 2vh, 0) skewX(-8deg);
    opacity: 0.18;
  }
}

/* Full-width thin neon separators between major home blocks */
.hero-shot::after,
.hero-shot-brands::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(83, 180, 255, 0.24) 24%,
    rgba(155, 88, 255, 0.62) 50%,
    rgba(83, 180, 255, 0.22) 76%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(135, 96, 255, 0.34),
    0 0 24px rgba(59, 171, 255, 0.10);
  opacity: 0.8;
}

.hero-shot::after {
  bottom: -18px;
}

.hero-shot-brands::before {
  top: -24px;
}

.hero-shot-brands::before {
  top: -18px;
}

.workflow-section,
.catalog-showcase,
.feedback-section,
.footer {
  border-top-color: rgba(132, 96, 255, 0.36) !important;
  box-shadow:
    inset 0 1px 0 rgba(96, 195, 255, 0.16),
    0 -1px 0 rgba(155, 88, 255, 0.28),
    0 24px 58px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 700px) {
  .hero-shot::after {
    bottom: -12px;
  }

  .hero-shot-brands::before {
    top: -14px;
  }
}

/* Separators should live in the whitespace between sections */
.hero-shot::after,
.hero-shot-brands::before {
  display: none !important;
}

.section-neon-divider {
  position: relative;
  height: clamp(24px, 2.4vw, 38px);
  width: 100%;
  pointer-events: none;
  margin: calc(clamp(24px, 2.4vw, 38px) * -0.28) 0;
}

.section-neon-divider::before {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 76px);
  right: clamp(18px, 4vw, 76px);
  top: 50%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 188, 255, 0.22) 22%,
    rgba(158, 90, 255, 0.7) 50%,
    rgba(78, 188, 255, 0.22) 78%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(154, 92, 255, 0.38),
    0 0 22px rgba(62, 181, 255, 0.12);
  transform: translateY(-50%);
  opacity: 0.82;
}

.section-neon-divider::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateY(-50%);
  opacity: 0.36;
}

@media (max-width: 700px) {
  .section-neon-divider {
    height: 22px;
    margin: -4px 0;
  }

  .section-neon-divider::before {
    left: 18px;
    right: 18px;
  }
}

/* Final brand strip sizing: keep this passarela subtle, not hero-sized */
.hero-shot-brands {
  padding: 18px 28px !important;
}

.hero-shot-brands-group {
  gap: clamp(28px, 4.2vw, 54px) !important;
  padding-right: clamp(28px, 4.2vw, 54px) !important;
}

.hero-shot-brands .brand-logo {
  max-width: 132px !important;
}

.hero-shot-brands .brand-logo-netflix {
  height: 24px !important;
}

.hero-shot-brands .brand-logo-hbo,
.hero-shot-brands .brand-logo-disney,
.hero-shot-brands .brand-logo-prime,
.hero-shot-brands .brand-logo-spotify {
  height: 20px !important;
}

.hero-shot-brands .brand-logo-youtube,
.hero-shot-brands .brand-logo-paramount,
.hero-shot-brands .brand-logo-crunchyroll,
.hero-shot-brands .brand-logo-appletv {
  height: 16px !important;
}

.hero-shot-brands .brand-inline {
  font-size: 0.9rem !important;
  gap: 8px !important;
}

@media (max-width: 700px) {
  .hero-shot-brands {
    padding: 12px 0 !important;
  }

  .hero-shot-brands .brand-logo-netflix,
  .hero-shot-brands .brand-logo-hbo,
  .hero-shot-brands .brand-logo-disney,
  .hero-shot-brands .brand-logo-prime,
  .hero-shot-brands .brand-logo-spotify {
    height: 17px !important;
  }

  .hero-shot-brands .brand-logo-youtube,
  .hero-shot-brands .brand-logo-paramount,
  .hero-shot-brands .brand-logo-crunchyroll,
  .hero-shot-brands .brand-logo-appletv {
    height: 14px !important;
  }
}

@media (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  select,
  textarea,
  [role="button"] {
    cursor: none;
  }

  .neon-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 2147483647;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease;
    mix-blend-mode: screen;
  }

  .neon-cursor.is-visible {
    opacity: 1;
  }

  .neon-cursor-dot,
  .neon-cursor-ring {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 999px;
    transform: translate(-50%, -50%);
  }

  .neon-cursor-dot {
    width: 7px;
    height: 7px;
    background: #78d8ff;
    box-shadow:
      0 0 10px rgba(88, 198, 255, 0.9),
      0 0 18px rgba(139, 94, 255, 0.75);
  }

  .neon-cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(121, 213, 255, 0.62);
    background:
      radial-gradient(circle, rgba(117, 211, 255, 0.14), transparent 54%),
      radial-gradient(circle, rgba(143, 91, 255, 0.16), transparent 70%);
    box-shadow:
      0 0 18px rgba(80, 182, 255, 0.34),
      0 0 34px rgba(147, 84, 255, 0.28);
    transition:
      width 180ms ease,
      height 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
  }

  .neon-cursor.is-hovering .neon-cursor-ring {
    width: 46px;
    height: 46px;
    border-color: rgba(164, 106, 255, 0.82);
    background:
      radial-gradient(circle, rgba(156, 94, 255, 0.18), transparent 54%),
      radial-gradient(circle, rgba(78, 196, 255, 0.16), transparent 72%);
    box-shadow:
      0 0 22px rgba(154, 88, 255, 0.44),
      0 0 42px rgba(58, 185, 255, 0.28);
  }

  .neon-cursor.is-pressed .neon-cursor-ring {
    width: 26px;
    height: 26px;
  }
}

/* Brand passarella normalization: equal visual cells for every service */
.hero-shot-brands-group > .brand-logo,
.hero-shot-brands-group > .brand-inline {
  width: clamp(132px, 8.8vw, 166px) !important;
  min-width: clamp(132px, 8.8vw, 166px) !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 clamp(132px, 8.8vw, 166px) !important;
  text-align: center !important;
}

.hero-shot-brands-group > img.brand-logo {
  object-fit: contain !important;
  object-position: center !important;
}

.hero-shot-brands .brand-logo-netflix,
.hero-shot-brands .brand-logo-hbo,
.hero-shot-brands .brand-logo-disney,
.hero-shot-brands .brand-logo-prime,
.hero-shot-brands .brand-logo-spotify {
  max-width: 112px !important;
  height: 22px !important;
}

.hero-shot-brands .brand-logo-hbo {
  max-width: 86px !important;
  height: 23px !important;
}

.hero-shot-brands .brand-logo-disney,
.hero-shot-brands .brand-logo-prime {
  max-width: 94px !important;
}

.hero-shot-brands .brand-inline {
  gap: 8px !important;
  font-size: 0.9rem !important;
}

.hero-shot-brands .brand-inline .brand-logo {
  width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
}

.hero-shot-brands .brand-inline-youtube .brand-logo {
  width: 20px !important;
  max-width: 20px !important;
  height: 15px !important;
}

.hero-shot-brands .brand-inline-paramount .brand-logo {
  width: 20px !important;
  max-width: 20px !important;
  height: 16px !important;
}

.hero-shot-brands .brand-inline-appletv .brand-logo {
  width: 18px !important;
  max-width: 18px !important;
  height: 16px !important;
}

/* Final header behavior: floats on first view and follows scroll */
.topbar {
  position: sticky !important;
  top: 14px !important;
  z-index: 10000 !important;
}

body.topbar-scrolled .topbar {
  transform: translateY(0) scale(0.99) !important;
}

body.topbar-going-down .topbar,
body.topbar-going-up .topbar {
  transform: translateY(0) scale(0.99) !important;
}

@media (max-width: 760px) {
  .topbar {
    top: 8px !important;
  }
}

/* Final LCP/CLS guard: stable product media boxes */
.hero-shot-product-card {
  contain: layout paint;
}

.hero-shot-product-art {
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  height: auto !important;
}

.card.product > img {
  width: calc(100% - 18px) !important;
  height: auto !important;
  margin: 0 !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  align-self: center !important;
  justify-self: center !important;
  padding: 0 !important;
  border-radius: 10px !important;
  background: rgba(5, 8, 22, 0.38) !important;
  box-sizing: border-box !important;
}

.grid .card.product,
.catalog-showcase .grid .card.product {
  grid-template-rows: auto minmax(0, 1fr) !important;
  padding-top: 10px !important;
}

.catalog-showcase .grid .card.product > img,
.grid .card.product > img {
  width: calc(100% - 18px) !important;
  height: auto !important;
  max-width: calc(100% - 18px) !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* WPO: keep below-the-fold sections cheap until the user reaches them */
.workflow-section,
.catalog-showcase,
.feedback-section,
.about-page,
.page-shell:not(:has(.contact-hero-premium)),
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.hero-shot,
.hero-shot-brands,
.page-shell:has(.contact-hero-premium) {
  content-visibility: visible;
}

/* Final hero safety: keep both columns inside viewport */
.hero,
.hero-shot {
  box-sizing: border-box !important;
  max-width: calc(100vw - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
}

.hero-shot-copy,
.hero-shot-stage {
  transform: none !important;
  min-width: 0 !important;
}

.hero-shot-copy {
  max-width: 100% !important;
}

.hero-shot-title {
  max-width: 100% !important;
}

@media (min-width: 1180px) {
  .hero-shot {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    gap: clamp(26px, 2.8vw, 48px) !important;
  }

  .hero-shot-title {
    font-size: clamp(3rem, 4vw, 4.65rem) !important;
  }
}

@media (max-width: 1179px) {
  .hero,
  .hero-shot {
    max-width: calc(100vw - 28px) !important;
  }

  .hero-shot {
    grid-template-columns: 1fr !important;
  }

  .hero-shot-title-line {
    white-space: normal !important;
  }
}

/* Final feedback balance: smaller heading, larger reviews */
.feedback-section {
  padding-top: 22px !important;
  padding-bottom: 34px !important;
}

.feedback-head {
  gap: 7px !important;
  margin-bottom: 18px !important;
}

.feedback-head .eyebrow {
  padding: 5px 13px !important;
  font-size: 0.72rem !important;
}

.feedback-head h2 {
  font-size: clamp(1.75rem, 2.75vw, 2.95rem) !important;
  line-height: 1 !important;
}

.feedback-head h2::after {
  margin-top: 10px !important;
}

.feedback-head p:last-child {
  font-size: 0.88rem !important;
  line-height: 1.35 !important;
}

.feedback-slider {
  grid-template-columns: 46px minmax(0, 1fr) 46px !important;
  gap: 14px !important;
}

.feedback-track {
  gap: 16px !important;
}

.feedback-card {
  min-height: 188px !important;
  padding: 22px !important;
  gap: 12px !important;
}

.feedback-person {
  grid-template-columns: 44px minmax(0, 1fr) !important;
}

.feedback-avatar {
  width: 44px !important;
  height: 44px !important;
}

.feedback-person strong {
  font-size: 1.04rem !important;
}

.feedback-person span:not(.feedback-avatar) {
  font-size: 0.84rem !important;
}

.feedback-stars {
  font-size: 1rem !important;
}

.feedback-card p {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

/* Mobile feedback final fix */
@media (max-width: 700px) {
  .feedback-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 28px 0 !important;
    padding: 18px 12px 20px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .feedback-head {
    max-width: 100% !important;
    margin: 0 auto 12px !important;
    gap: 6px !important;
  }

  .feedback-head h2 {
    max-width: 12ch !important;
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
    line-height: 1.02 !important;
    text-align: center !important;
  }

  .feedback-head p:last-child {
    max-width: 28ch !important;
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .feedback-trust {
    justify-content: center !important;
    gap: 5px !important;
    margin: 0 auto 12px !important;
  }

  .feedback-trust div {
    padding: 5px 8px !important;
  }

  .feedback-trust strong,
  .feedback-trust span {
    font-size: 0.68rem !important;
  }

  .feedback-slider {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .feedback-window {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 36px !important;
  }

  .feedback-track {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .feedback-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 172px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    gap: 9px !important;
  }

  .feedback-card:nth-child(n + 2) {
    display: none !important;
  }

  .feedback-person {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .feedback-avatar {
    width: 40px !important;
    height: 40px !important;
  }

  .feedback-person strong {
    font-size: 0.96rem !important;
  }

  .feedback-person span:not(.feedback-avatar) {
    font-size: 0.76rem !important;
  }

  .feedback-stars {
    font-size: 0.92rem !important;
  }

  .feedback-card p {
    font-size: 0.9rem !important;
    line-height: 1.42 !important;
  }

  .feedback-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 3 !important;
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    transform: translateY(-50%) !important;
  }

  .feedback-prev {
    left: 2px !important;
  }

  .feedback-next {
    right: 2px !important;
  }

  .feedback-dots {
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 5px !important;
    overflow: hidden !important;
    margin-top: 12px !important;
  }

  .feedback-dot {
    flex: 0 0 7px !important;
    width: 7px !important;
    height: 7px !important;
  }

  .feedback-dot.active {
    flex-basis: 18px !important;
    width: 18px !important;
  }
}

/* Topbar scroll artifact fix */
.topbar {
  overflow: hidden !important;
  isolation: isolate !important;
}

.topbar::before {
  display: none !important;
}

body.topbar-scrolled .topbar::before {
  display: none !important;
  opacity: 0 !important;
  animation: none !important;
}

/* Final compact currency selector */
.currency-switch {
  min-height: 34px !important;
  width: 74px !important;
  padding: 0 5px !important;
  gap: 0 !important;
  justify-content: center !important;
}

.currency-switch span {
  display: none !important;
}

.currency-switch select {
  width: 62px !important;
  min-height: 26px !important;
  padding: 0 18px 0 9px !important;
  font-size: 0.82rem !important;
  text-align: center !important;
}

/* Final hero carousel media size */
.hero-shot-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
}

.hero-shot-product-card {
  min-width: 0 !important;
  width: 100% !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
}

.hero-shot-product-art {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 3 / 2 !important;
}

.hero-shot-product-art img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 6px !important;
}

@media (min-width: 1180px) and (max-width: 1320px) {
  .hero-shot {
    grid-template-columns: minmax(430px, 0.78fr) minmax(620px, 1.22fr) !important;
  }
}

@media (max-width: 1180px) {
  .hero-shot-product-art { aspect-ratio: 3 / 2 !important; }
}

@media (max-width: 760px) {
  .hero-shot-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .hero-shot-product-art { aspect-ratio: 3 / 2 !important; }
}

/* Final responsive hero clamp: prevents the left headline from clipping */
.hero-shot-copy {
  margin-left: 0 !important;
  overflow: visible !important;
}

.hero-shot-title {
  width: auto !important;
  transform: scaleX(0.92) !important;
  transform-origin: left center !important;
}

@media (max-width: 1179px) {
  .hero-shot {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
  }

  .hero-shot-copy,
  .hero-shot-stage,
  .hero-shot-title,
  .hero-shot-text,
  .hero-shot-actions,
  .hero-shot-stats {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
  }

  .hero-shot-title-line {
    white-space: normal !important;
  }
}

@media (max-width: 760px) {
  .hero-shot {
    width: min(100%, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    gap: 18px !important;
  }

  .hero-shot-title {
    font-size: clamp(2.1rem, 10.2vw, 3rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.02em !important;
  }

  .hero-shot-text {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  .hero-shot-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .hero-shot-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero-shot-stats div {
    padding: 12px 10px !important;
  }
}

@media (max-width: 430px) {
  .hero-shot-title {
    font-size: clamp(1.95rem, 9.8vw, 2.55rem) !important;
  }

  .hero-shot-actions {
    grid-template-columns: 1fr !important;
  }

  .hero-shot-stats {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 1180px) {
  .hero-shot {
    grid-template-columns: minmax(620px, 0.9fr) minmax(760px, 1fr) !important;
    gap: clamp(42px, 5vw, 86px) !important;
    max-width: min(1760px, calc(100vw - 92px)) !important;
    width: min(1760px, calc(100vw - 92px)) !important;
  }

  .hero-shot-copy {
    transform: translateX(-36px) !important;
    max-width: 760px !important;
  }

  .hero-shot-title {
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    transform-origin: left center !important;
  }

  .hero-shot-text,
  .hero-shot-actions,
  .hero-shot-stats {
    max-width: 650px !important;
  }

  .hero-shot-text {
    max-width: 620px !important;
  }

  .hero-shot-actions {
    width: fit-content !important;
  }

  .hero-shot-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .hero-shot-stage {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) 52px !important;
    align-items: center !important;
    position: relative !important;
    width: 100% !important;
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
  }

  .hero-shot-frame {
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .hero-shot-arrow {
    position: absolute !important;
    top: 52% !important;
    transform: translateY(-50%) !important;
    z-index: 8 !important;
    align-self: center !important;
  }

  .hero-shot-arrow-left {
    left: 3px !important;
    margin-right: 0 !important;
  }

  .hero-shot-arrow-right {
    right: 3px !important;
    margin-left: 0 !important;
  }

  .hero-shot-arrow-left:hover {
    transform: translateY(-50%) translateX(4px) scale(1.05) !important;
  }

  .hero-shot-arrow-right:hover {
    transform: translateY(-50%) translateX(-4px) scale(1.05) !important;
  }
}

@media (min-width: 1180px) and (max-width: 1450px) {
  .hero-shot {
    grid-template-columns: minmax(560px, 0.88fr) minmax(620px, 1fr) !important;
    gap: clamp(28px, 3vw, 48px) !important;
  }

  .hero-shot-stage {
    display: grid !important;
    width: 100% !important;
    max-width: 850px !important;
    margin-left: 0 !important;
  }

  .hero-shot-frame {
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .hero-shot-frame {
    padding: 18px 0 24px !important;
  }

  .hero-shot-main {
    width: 100% !important;
    margin-top: 18px !important;
    min-height: 430px !important;
    padding: 22px 34px 20px !important;
  }

  .hero-shot-card-grid {
    gap: 12px !important;
  }

  .hero-shot-product-card {
    min-height: 286px !important;
    grid-template-rows: 124px minmax(0, 1fr) !important;
  }
}

@media (min-width: 1180px) {
  .topbar {
    position: sticky !important;
  }

  .topbar nav {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 1.04rem !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: max-content !important;
    max-width: calc(100% - 420px) !important;
  }
}

/* Mobile navigation: keep main sections available */
@media (max-width: 760px) {
  .topbar {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 10px 9px !important;
  }

  .topbar .brand {
    grid-column: 1 !important;
    width: 48px !important;
    height: 48px !important;
  }

  .topbar .top-actions {
    grid-column: 2 !important;
    justify-content: end !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  .topbar nav {
    grid-column: 1 / -1 !important;
    order: 3 !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 7px !important;
    padding: 4px 1px 2px !important;
    margin: 0 !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
  }

  .topbar nav::-webkit-scrollbar {
    display: none !important;
  }

  .topbar nav a {
    flex: 0 0 auto !important;
    min-height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    color: #dfe7ff !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    background: rgba(16, 22, 48, 0.78) !important;
    border: 1px solid rgba(126, 143, 255, 0.18) !important;
  }

  .topbar nav a::after {
    display: none !important;
  }

  .top-actions .cart-button,
  .top-actions #authButton {
    min-height: 34px !important;
    padding: 7px 10px !important;
    font-size: 0.78rem !important;
  }

  .top-actions #cartCount {
    min-width: 20px !important;
    height: 20px !important;
    font-size: 0.68rem !important;
  }
}

/* Profile mobile final layout */
@media (max-width: 700px) {
  .profile.profile-premium {
    width: 100% !important;
    max-width: 100% !important;
    margin: 14px auto 28px !important;
    padding: 0 10px !important;
    overflow: visible !important;
  }

  .profile-premium .profile-header {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .profile-premium .profile-header-top {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .profile-premium .profile-avatar-group {
    width: 76px !important;
    min-width: 76px !important;
  }

  .profile-premium .profile-avatar-wrapper {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
  }

  .profile-premium .profile-avatar-large {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    font-size: 1.7rem !important;
    line-height: 1 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
  }

  .profile-premium .profile-avatar-large img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .profile-premium .profile-avatar-edit {
    right: -4px !important;
    bottom: -3px !important;
    min-width: 42px !important;
    height: 24px !important;
    padding: 0 7px !important;
    font-size: 0.62rem !important;
  }

  .profile-premium .profile-identity {
    min-width: 0 !important;
    display: grid !important;
    gap: 6px !important;
  }

  .profile-premium .profile-eyebrow {
    margin: 0 !important;
    padding: 5px 8px !important;
    font-size: 0.62rem !important;
  }

  .profile-premium .profile-name-input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-size: clamp(1.35rem, 8vw, 2rem) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .profile-premium .profile-identity .muted {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 0.78rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .profile-premium .profile-mini-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
  }

  .profile-premium .profile-mini-tags span {
    padding: 5px 7px !important;
    font-size: 0.62rem !important;
    line-height: 1 !important;
  }

  .profile-premium .profile-header-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .profile-premium .profile-header-stats div,
  .profile-premium .profile-highlight-card {
    min-height: 0 !important;
    padding: 12px 13px !important;
    border-radius: 15px !important;
  }

  .profile-premium .profile-header-stats span,
  .profile-premium .profile-highlight-card span {
    font-size: 0.78rem !important;
  }

  .profile-premium .profile-header-stats strong,
  .profile-premium .profile-highlight-card strong {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
  }

  .profile-premium .profile-highlight-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .profile-premium .profile-highlight-card p {
    margin: 5px 0 0 !important;
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .profile-premium .profile-header-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .profile-premium .profile-header-actions .primary,
  .profile-premium .profile-header-actions .secondary {
    width: 100% !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    border-radius: 13px !important;
  }

  .profile-premium .profile-summary-note {
    margin: 10px 0 0 !important;
    font-size: 0.78rem !important;
  }

  .profile-premium .profile-body,
  .profile-premium .profile-sidebar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .profile-premium .profile-body {
    margin-top: 12px !important;
  }

  .profile-premium .help-card,
  .profile-premium .profile-side-card,
  .profile-premium .review-submit-card,
  .profile-premium .orders-panel,
  .profile-premium .profile-orders-premium {
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .profile-action-card h2,
  .profile-security-card h2,
  .review-submit-card h2,
  .profile-orders-premium .panel-header h2 {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
  }

  .profile-premium p,
  .profile-premium .muted {
    font-size: 0.86rem !important;
    line-height: 1.42 !important;
  }

  .profile-side-metrics {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .profile-security-status {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .profile-security-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .profile-premium .review-star-picker {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 5px !important;
    border-radius: 14px !important;
  }

  .profile-premium .review-star {
    width: 100% !important;
    height: 34px !important;
    min-width: 0 !important;
  }

  .profile-orders-premium .panel-header {
    display: grid !important;
    gap: 4px !important;
  }

  .profile-orders-premium .order-card {
    padding: 13px !important;
    border-radius: 16px !important;
  }

  .profile-orders-premium .order-card-header,
  .profile-orders-premium .order-card-summary,
  .profile-orders-premium .order-item {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-items: start !important;
  }

  .profile-orders-premium .order-badge {
    width: fit-content !important;
  }

  .profile-orders-premium .order-timeline {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .profile-orders-premium .order-timeline-step {
    min-width: 0 !important;
  }

  .profile-orders-premium .order-actions,
  .profile-orders-premium .whatsapp-button,
  .profile-orders-premium .delivery-locked {
    width: 100% !important;
  }
}

/* Mobile catalog: two rows with horizontal browsing */
@media (max-width: 700px) {
  .catalog-showcase {
    position: relative !important;
    overflow: hidden !important;
  }

  .catalog-showcase::before {
    content: ">" !important;
    position: absolute !important;
    right: 10px !important;
    top: 58% !important;
    z-index: 4 !important;
    width: 34px !important;
    height: 58px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    color: rgba(235, 242, 255, 0.86) !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    background:
      radial-gradient(circle at center, rgba(92, 169, 255, 0.22), transparent 62%),
      linear-gradient(90deg, rgba(8, 10, 24, 0.08), rgba(8, 10, 24, 0.72)) !important;
    border: 1px solid rgba(126, 184, 255, 0.14) !important;
    box-shadow: 0 0 22px rgba(92, 169, 255, 0.14) !important;
    pointer-events: none !important;
    transform: translateY(-50%) !important;
    animation: mobileScrollHint 1.6s ease-in-out infinite !important;
  }

  @keyframes mobileScrollHint {
    0%, 100% {
      opacity: 0.45;
      transform: translateY(-50%) translateX(0);
    }
    50% {
      opacity: 0.95;
      transform: translateY(-50%) translateX(4px);
    }
  }

  .catalog-showcase #productGrid.grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-rows: repeat(2, minmax(0, auto)) !important;
    grid-auto-columns: minmax(168px, 47vw) !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    width: calc(100% + 24px) !important;
    max-width: none !important;
    margin: 0 -12px !important;
    padding: 4px 12px 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-inline: contain !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .catalog-showcase #productGrid.grid::-webkit-scrollbar {
    display: none !important;
  }

  .catalog-showcase #productGrid.grid .card.product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 340px !important;
    height: 340px !important;
    display: grid !important;
    grid-template-rows: 96px minmax(0, 1fr) !important;
    align-items: stretch !important;
    padding: 8px !important;
    gap: 0 !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
  }

  .catalog-showcase #productGrid.grid .card.product > img {
    width: 100% !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
    margin: 0 auto !important;
    padding: 4px !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 11px !important;
    background:
      radial-gradient(circle at 50% 0, rgba(92, 169, 255, 0.08), transparent 48%),
      rgba(4, 6, 18, 0.48) !important;
  }

  .catalog-showcase #productGrid.grid .card.product > .card-body {
    width: 100% !important;
    min-width: 0 !important;
    padding: 8px 4px 2px !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr auto !important;
    gap: 6px !important;
    align-content: stretch !important;
  }

  .catalog-showcase #productGrid.grid .card.product .product-badges {
    min-height: 16px !important;
    gap: 3px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .badge {
    padding: 2px 5px !important;
    font-size: 0.56rem !important;
    line-height: 1.05 !important;
  }

  .catalog-showcase #productGrid.grid .card.product h3 {
    min-height: 2.15em !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.08 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .catalog-showcase #productGrid.grid .card.product .purchase-panel {
    gap: 5px !important;
    align-self: end !important;
  }

  .catalog-showcase #productGrid.grid .card.product .duration-picker {
    gap: 3px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .duration-picker::before {
    font-size: 0.56rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .duration-picker select {
    min-height: 30px !important;
    height: 30px !important;
    padding: 0 22px 0 8px !important;
    font-size: 0.75rem !important;
    border-radius: 10px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .annual-saving-note {
    max-width: 100% !important;
    padding: 3px 6px 3px 15px !important;
    font-size: 0.56rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 6px !important;
    align-items: center !important;
    margin-top: 0 !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .price {
    min-width: 0 !important;
    padding: 6px 8px !important;
    font-size: 0.82rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .primary {
    width: 100% !important;
    min-height: 34px !important;
    padding: 0 8px !important;
    border-radius: 10px !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
  }

  .catalog-showcase #productGrid.grid::after {
    content: "" !important;
    width: 2px !important;
  }
}

/* Contact page polish */
.contact-hero-premium {
  border-color: rgba(126, 207, 255, 0.28) !important;
  background:
    radial-gradient(circle at 12% 16%, rgba(85, 178, 255, 0.2), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(151, 71, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(10, 18, 39, 0.96), rgba(22, 12, 43, 0.94)) !important;
}

.contact-hero-premium::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent 44%);
  opacity: 0.85;
}

.contact-hero-copy .eyebrow {
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(126, 207, 255, 0.32);
  border-radius: 999px;
  background: rgba(37, 110, 180, 0.16);
  color: #83d9ff;
}

.contact-hero-copy h1 {
  max-width: 21ch !important;
  font-size: clamp(2.2rem, 3.65vw, 3.8rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.03em !important;
  overflow-wrap: normal !important;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 64ch !important;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem) !important;
  line-height: 1.6 !important;
}

.contact-trust-row,
.contact-mini-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-trust-row span,
.contact-mini-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(126, 207, 255, 0.18);
  background: rgba(11, 20, 45, 0.55);
  color: #d8e7ff;
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-status-card {
  background:
    radial-gradient(circle at 16% 14%, rgba(48, 240, 141, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(15, 25, 58, 0.9), rgba(10, 12, 34, 0.86)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 54px rgba(0,0,0,0.22) !important;
}

.contact-grid {
  gap: 14px !important;
  margin-top: 16px !important;
}

.contact-card-premium {
  min-height: 164px !important;
  padding: 18px !important;
  border-radius: 20px !important;
  border-color: rgba(126, 143, 255, 0.18) !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(74, 155, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(17, 22, 42, 0.92), rgba(8, 10, 26, 0.94)) !important;
}

.contact-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(71, 127, 255, 0.42), rgba(151, 71, 255, 0.24)) !important;
}

.contact-card-premium h2 {
  font-size: 1.04rem !important;
}

.contact-card-premium p {
  font-size: 0.92rem !important;
  line-height: 1.48 !important;
}

@media (max-width: 700px) {
  .contact-hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
  }

  .contact-trust-row {
    gap: 6px;
  }

  .contact-trust-row span,
  .contact-mini-steps span {
    font-size: 0.72rem;
    min-height: 25px;
    padding: 0 9px;
  }
}

/* Contact final alignment */
.page-shell:has(.contact-hero-premium) {
  max-width: 1180px !important;
}

.contact-hero-premium {
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.75fr) !important;
  align-items: center !important;
  gap: clamp(28px, 4vw, 56px) !important;
  padding: clamp(24px, 3vw, 34px) !important;
}

.contact-hero-copy {
  align-content: center !important;
  justify-items: start !important;
  text-align: left !important;
  gap: 12px !important;
}

.contact-hero-copy h1 {
  max-width: 25.8ch !important;
  font-size: clamp(2.7rem, 3.75vw, 3.85rem) !important;
  line-height: 1.02 !important;
  text-wrap: balance !important;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 62ch !important;
  line-height: 1.45 !important;
}

.contact-hero-copy p:not(.eyebrow),
.contact-status-card p,
.contact-card-premium p {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.contact-actions,
.contact-trust-row {
  align-items: center !important;
}

.contact-actions .primary,
.contact-actions .secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
}

.contact-status-card {
  justify-self: stretch !important;
  align-self: center !important;
  min-height: 250px !important;
  padding: 24px !important;
  align-content: center !important;
  justify-items: start !important;
}

.contact-status-card p {
  max-width: 30ch !important;
}

.contact-status-card a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.contact-mini-steps {
  align-items: center !important;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.contact-card-premium {
  display: grid !important;
  grid-template-rows: 40px auto 1fr auto !important;
  align-items: start !important;
  padding: 18px !important;
}

.contact-card-premium > div {
  display: grid !important;
  gap: 4px !important;
}

.contact-card-premium h2,
.contact-card-premium p,
.contact-card-premium a,
.contact-card-note {
  text-align: left !important;
}

.contact-card-premium p {
  max-width: 28ch !important;
}

@media (max-width: 1100px) {
  .contact-hero-premium {
    grid-template-columns: 1fr !important;
  }

  .contact-status-card {
    min-height: 0 !important;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-hero-copy h1 {
    max-width: 18ch !important;
    font-size: clamp(2.35rem, 7vw, 3.2rem) !important;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Desktop catalog cover alignment */
@media (min-width: 900px) {
  .catalog-showcase #productGrid.grid .card.product {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    min-height: 328px !important;
    padding: 10px 10px 12px !important;
    gap: 0 !important;
  }

  .catalog-showcase #productGrid.grid .card.product > img {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 116px !important;
    min-height: 116px !important;
    max-height: 116px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    align-self: center !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 10px !important;
  }

  .catalog-showcase #productGrid.grid .card.product > .card-body {
    flex: 1 1 auto !important;
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 11px 4px 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
    justify-items: stretch !important;
    align-items: start !important;
  }

  .catalog-showcase #productGrid.grid .card.product .product-badges,
  .catalog-showcase #productGrid.grid .card.product h3,
  .catalog-showcase #productGrid.grid .card.product .purchase-panel,
  .catalog-showcase #productGrid.grid .card.product .duration-picker,
  .catalog-showcase #productGrid.grid .card.product .price-row {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-self: stretch !important;
    text-align: left !important;
  }

  .catalog-showcase #productGrid.grid .card.product .purchase-panel {
    align-self: end !important;
    display: grid !important;
    gap: 7px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .duration-picker select {
    width: 100% !important;
  }

  .catalog-showcase #productGrid.grid .card.product .annual-saving-note {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row {
    display: grid !important;
    grid-template-columns: minmax(70px, 0.82fr) minmax(92px, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .price,
  .catalog-showcase #productGrid.grid .card.product .price-row .primary {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Mobile nav final compact drawer */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  .topbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: calc(100% - 14px);
    margin-top: 8px;
    padding: 6px 8px;
    border-radius: 15px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    order: 2;
    margin-left: 2px;
    margin-right: 0;
    border-radius: 11px;
    position: relative;
    z-index: 5;
  }

  .mobile-nav-toggle span {
    width: 16px;
  }

  .topbar .brand {
    order: 1;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
  }

  .topbar nav#siteNav {
    position: absolute;
    top: calc(100% + 8px);
    left: 7px;
    right: 7px;
    display: none !important;
    width: 100%;
    padding: 10px;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 16px;
    background: rgba(7, 10, 24, 0.98);
    border: 1px solid rgba(126, 143, 255, 0.2);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    z-index: 25;
  }

  .topbar.mobile-nav-open nav#siteNav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mobile-nav-open .topbar nav#siteNav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar nav#siteNav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 10px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(23, 31, 64, 0.98), rgba(12, 16, 36, 0.98));
    border: 1px solid rgba(126, 143, 255, 0.22);
    color: #edf3ff;
    font-weight: 800;
    font-size: 0.74rem;
    text-align: center;
  }

  .topbar .top-actions {
    order: 3;
    min-width: 0;
    margin-left: auto;
    gap: 5px;
  }

  .topbar .currency-switch {
    min-height: 28px;
    padding: 0 3px 0 5px;
  }

  .topbar .currency-switch span {
    display: none;
  }

  .topbar .currency-switch select {
    width: 42px;
    min-height: 22px;
    padding: 0 9px 0 3px;
    font-size: 0.62rem;
  }

  .topbar .cart-button,
  .topbar #authButton {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .topbar #cartCount {
    min-width: 17px;
    height: 17px;
    font-size: 0.6rem;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    width: calc(100% - 10px) !important;
    min-height: 58px !important;
    margin-top: 8px !important;
    padding: 7px 10px !important;
    border-radius: 17px !important;
  }

  .topbar .brand {
    flex: 0 0 auto !important;
    width: 46px !important;
    height: 46px !important;
  }

  .topbar .brand-logo {
    width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    object-fit: contain !important;
  }

  .topbar .mobile-nav-toggle {
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 3px 0 0 !important;
    border-radius: 14px !important;
  }

  .topbar .mobile-nav-toggle span {
    width: 20px !important;
    height: 2px !important;
  }

  .topbar .top-actions {
    flex: 0 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }

  .topbar .currency-switch {
    min-height: 34px !important;
    padding: 0 5px 0 7px !important;
  }

  .topbar .currency-switch select {
    width: 50px !important;
    min-height: 26px !important;
    padding: 0 13px 0 3px !important;
    font-size: 0.7rem !important;
  }

  .topbar .cart-button,
  .topbar #authButton {
    min-height: 34px !important;
    padding: 7px 10px !important;
    font-size: 0.72rem !important;
  }

  .topbar #cartCount {
    min-width: 18px !important;
    height: 18px !important;
    font-size: 0.62rem !important;
  }

  .topbar nav#siteNav {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 5px !important;
    right: 5px !important;
    display: none !important;
    width: auto !important;
    padding: 10px !important;
    gap: 7px !important;
    border-radius: 16px !important;
    background: rgba(7, 10, 24, 0.98) !important;
    border: 1px solid rgba(126, 143, 255, 0.2) !important;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34) !important;
    backdrop-filter: blur(18px) !important;
    z-index: 25 !important;
  }

  .topbar.mobile-nav-open nav#siteNav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Final carousel arrow alignment: keeps both controls visually centered on mobile */
.hero-shot-stage {
  position: relative !important;
}

.hero-shot-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .hero-shot-stage {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .hero-shot-arrow {
    position: absolute !important;
    top: 50% !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    transform: translateY(-50%) !important;
    z-index: 12 !important;
  }

  .hero-shot-arrow-left {
    left: -14px !important;
    right: auto !important;
  }

  .hero-shot-arrow-right {
    right: -14px !important;
    left: auto !important;
  }

  .hero-shot-arrow-left:hover,
  .hero-shot-arrow-right:hover {
    transform: translateY(-50%) scale(1.04) !important;
  }
}

@media (min-width: 761px) {
  .topbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    position: sticky !important;
    width: min(1480px, calc(100% - 64px)) !important;
    margin: 32px auto 0 !important;
    padding: 14px 24px !important;
    border-radius: 22px !important;
    min-height: 0 !important;
    position: sticky !important;
  }

  .topbar .brand {
    order: 0 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    justify-self: start !important;
  }

  .topbar .brand-logo {
    width: 74px !important;
    max-width: 74px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .mobile-nav-toggle {
    display: none !important;
  }

  .topbar nav#siteNav {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 28px !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    z-index: 2 !important;
  }

  .topbar nav#siteNav a {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 0.98rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .topbar .top-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    white-space: nowrap !important;
    margin-left: auto !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .topbar .currency-switch {
    min-height: 32px !important;
    padding: 0 4px 0 7px !important;
  }

  .topbar .currency-switch span {
    display: inline !important;
    font-size: 0.78rem !important;
  }

  .topbar .currency-switch select {
    width: 46px !important;
    min-height: 23px !important;
    padding: 0 13px 0 3px !important;
    font-size: 0.68rem !important;
  }

  .topbar .cart-button,
  .topbar #authButton {
    min-height: 36px !important;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }

  .hero {
    width: min(1740px, calc(100% - 64px)) !important;
    margin: 34px auto 0 !important;
  }

  .hero-shot {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    gap: clamp(26px, 2.8vw, 48px) !important;
  }

  .hero-shot-title {
    font-size: clamp(3rem, 4vw, 4.65rem) !important;
  }

  .hero-shot-title-line {
    white-space: nowrap !important;
  }

  .hero-shot-stage {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) 52px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .hero-shot-frame {
    width: 100% !important;
    transform: none !important;
  }

  .hero-shot-arrow {
    position: static !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    transform: none !important;
  }

  .hero-shot-arrow-left {
    margin-right: -30px !important;
    transform: translateX(12px) !important;
  }

  .hero-shot-arrow-right {
    margin-left: -18px !important;
  }
}

/* Remove the oversized decorative oval inside the hero product carousel */
.hero-shot-frame::before {
  border-radius: 32px !important;
  background:
    linear-gradient(180deg, rgba(20, 16, 48, 0.98), rgba(8, 9, 27, 0.98)) !important;
}

@media (max-width: 760px) {
  .hero-shot-title {
    font-size: clamp(1.6rem, 7vw, 1.88rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.04em !important;
    max-width: 100% !important;
  }

  .hero-shot-title-line {
    display: inline !important;
    white-space: normal !important;
  }

  .hero-shot-title-line::after {
    content: " " !important;
  }

  .hero-shot-title-line:last-child::after {
    content: "" !important;
  }

  .floating-tips {
    left: 6px !important;
    bottom: 8px !important;
    width: auto !important;
    min-width: 104px !important;
    max-width: 132px !important;
    padding: 4px 6px 4px 8px !important;
  }

  .floating-tips.is-collapsed {
    min-width: 104px !important;
    min-height: 32px !important;
    padding: 4px 6px 4px 8px !important;
  }

  .floating-tips.is-collapsed .floating-tips-head {
    min-height: 32px !important;
    padding: 0 !important;
    gap: 4px !important;
  }

  .floating-tips.is-collapsed .floating-tips-head strong {
    display: none !important;
  }

  .floating-tips.is-collapsed .floating-tips-head span {
    font-size: 0.56rem !important;
    letter-spacing: 0.06em !important;
  }

  .floating-tips.is-collapsed .floating-tips-toggle {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    margin-left: 2px !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 430px) {
  .hero-shot-title {
    font-size: clamp(1.52rem, 6.6vw, 1.76rem) !important;
  }
}

/* Catalog final repair: stable controls, cards and empty states */
.catalog-showcase .catalog-controlbar {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.7fr) minmax(142px, 170px) !important;
  align-items: center !important;
  gap: 10px !important;
}

.catalog-showcase .catalog-search-shell,
.catalog-showcase .catalog-search-shell input,
.catalog-showcase .toolbar-filters select {
  height: 38px !important;
  min-height: 38px !important;
}

.catalog-showcase .category-shortcuts,
.catalog-showcase .shortcut-list {
  min-width: 0 !important;
}

.catalog-showcase .category-shortcuts {
  margin: 0 !important;
  align-self: center !important;
}

.catalog-showcase .catalog-search-shell,
.catalog-showcase .toolbar-filters {
  align-self: center !important;
  margin: 0 !important;
}

.catalog-showcase .catalog-search-shell {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.catalog-showcase .catalog-search-label {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  font-size: 0 !important;
  line-height: 1 !important;
  color: transparent !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.catalog-showcase .catalog-search-label::before {
  content: "" !important;
  position: absolute !important;
  left: 1px !important;
  top: 1px !important;
  width: 8px !important;
  height: 8px !important;
  border: 2px solid rgba(142, 197, 255, 0.82) !important;
  border-radius: 999px !important;
}

.catalog-showcase .catalog-search-label::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 1px !important;
  width: 6px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: rgba(142, 197, 255, 0.82) !important;
  transform: rotate(45deg) !important;
  transform-origin: center !important;
}

.catalog-showcase .catalog-search-shell input {
  width: 100% !important;
  padding-left: 40px !important;
}

.catalog-showcase .shortcut-list {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  overflow-x: auto !important;
  padding: 0 !important;
  scrollbar-width: none !important;
}

.catalog-showcase .shortcut-list::-webkit-scrollbar {
  display: none !important;
}

.catalog-showcase .category-shortcut {
  height: 38px !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 0 14px !important;
  border-radius: 13px !important;
  white-space: nowrap !important;
}

.catalog-showcase .shortcut-icon,
.catalog-showcase .shortcut-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.catalog-showcase .shortcut-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 16px !important;
  color: #cfe5ff !important;
}

.catalog-showcase .category-shortcut.active .shortcut-icon {
  color: #ffffff !important;
}

.catalog-showcase .toolbar-filters {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

.catalog-showcase .catalog-hidden-category-select {
  display: none !important;
}

.catalog-showcase .toolbar-filters select {
  border-radius: 13px !important;
  color: #f6f8ff !important;
  background: #111733 !important;
}

.catalog-showcase #productGrid.grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.catalog-showcase #productGrid.grid .card.product {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 326px !important;
  height: auto !important;
  display: grid !important;
  grid-template-rows: 118px 1fr !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.catalog-showcase #productGrid.grid .card.product > img {
  width: calc(100% - 20px) !important;
  height: 106px !important;
  min-height: 106px !important;
  max-height: 106px !important;
  margin: 10px auto 2px !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 12px !important;
  display: block !important;
  background: rgba(4, 6, 18, 0.42) !important;
}

.catalog-showcase #productGrid.grid .card.product > .card-body {
  width: 100% !important;
  padding: 10px 14px 14px !important;
  display: grid !important;
  grid-template-rows: auto auto 1fr !important;
  gap: 8px !important;
  min-width: 0 !important;
}

.catalog-showcase #productGrid.grid .card.product .product-badges,
.catalog-showcase #productGrid.grid .card.product h3,
.catalog-showcase #productGrid.grid .card.product .purchase-panel {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.catalog-showcase #productGrid.grid .card.product h3 {
  font-size: 0.98rem !important;
  line-height: 1.14 !important;
  min-height: 2.28em !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker::before {
  content: "Duracion" !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker::after {
  content: "v" !important;
  right: 12px !important;
  color: #bfe9ff !important;
}

.catalog-showcase #productGrid.grid .card.product .duration-picker select {
  width: 100% !important;
  min-height: 34px !important;
  height: 34px !important;
  padding: 0 30px 0 10px !important;
  font-size: 0.8rem !important;
}

.catalog-showcase #productGrid.grid .card.product .annual-saving-note {
  width: 100% !important;
  max-width: 100% !important;
  padding: 4px 7px !important;
  font-size: 0.64rem !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(82px, 1fr) !important;
  gap: 8px !important;
  align-items: center !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row .price,
.catalog-showcase #productGrid.grid .card.product .price-row .primary {
  min-width: 0 !important;
  width: 100% !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row .primary {
  min-height: 36px !important;
  padding: 0 8px !important;
  font-size: 0.8rem !important;
  border-radius: 11px !important;
}

.catalog-showcase .catalog-empty {
  grid-column: 1 / -1 !important;
  min-height: 150px !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
  padding: 22px !important;
}

.catalog-showcase .catalog-pagination-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 18px !important;
}

.catalog-showcase .catalog-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 auto 2px !important;
  padding: 8px !important;
  border: 1px solid rgba(126, 148, 255, 0.22) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(25, 31, 66, 0.82), rgba(8, 10, 27, 0.9)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.22) !important;
}

.catalog-showcase .catalog-page-btn {
  min-width: 104px !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  border: 1px solid rgba(103, 190, 255, 0.24) !important;
  border-radius: 13px !important;
  color: #f7fbff !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(95, 187, 255, 0.34), transparent 58%),
    linear-gradient(135deg, rgba(30, 56, 103, 0.92), rgba(71, 47, 171, 0.88)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(53, 123, 255, 0.18) !important;
  cursor: pointer !important;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease !important;
}

.catalog-showcase .catalog-page-btn:hover:not(:disabled),
.catalog-showcase .catalog-page-btn:focus-visible:not(:disabled) {
  transform: translateY(-1px) !important;
  border-color: rgba(119, 209, 255, 0.56) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 30px rgba(83, 146, 255, 0.28) !important;
}

.catalog-showcase .catalog-page-btn:disabled {
  opacity: 0.42 !important;
  cursor: not-allowed !important;
  transform: none !important;
  background: rgba(20, 24, 48, 0.78) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.catalog-showcase .catalog-page-status {
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  border: 1px solid rgba(151, 111, 255, 0.2) !important;
  border-radius: 999px !important;
  color: #cfd9ff !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  background: rgba(11, 14, 34, 0.68) !important;
}

@media (max-width: 700px) {
  .catalog-showcase .catalog-controlbar {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  .catalog-showcase .toolbar-filters {
    justify-content: stretch !important;
  }

  .catalog-showcase .toolbar-filters select {
    width: 100% !important;
    max-width: none !important;
  }

  .catalog-showcase #productGrid.grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-rows: repeat(2, minmax(0, auto)) !important;
    grid-auto-columns: minmax(176px, 46vw) !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity !important;
    padding: 4px 4px 14px !important;
    scrollbar-width: none !important;
  }

  .catalog-showcase #productGrid.grid::-webkit-scrollbar {
    display: none !important;
  }

  .catalog-showcase #productGrid.grid .card.product {
    min-height: 338px !important;
    height: 338px !important;
    grid-template-rows: 94px 1fr !important;
    scroll-snap-align: start !important;
  }

  .catalog-showcase #productGrid.grid .card.product > img {
    width: calc(100% - 14px) !important;
    height: 84px !important;
    min-height: 84px !important;
    max-height: 84px !important;
    margin: 7px auto 0 !important;
  }

  .catalog-showcase #productGrid.grid .card.product > .card-body {
    padding: 8px 10px 10px !important;
    gap: 6px !important;
  }

  .catalog-showcase #productGrid.grid .card.product h3 {
    font-size: 0.88rem !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row {
    grid-template-columns: minmax(0, 0.78fr) minmax(72px, 1fr) !important;
    gap: 6px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .primary {
    min-height: 32px !important;
    font-size: 0.74rem !important;
  }

  .catalog-showcase .catalog-pagination {
    width: min(100%, 260px) !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    gap: 8px !important;
    margin: 0 auto !important;
    padding: 6px !important;
    border-radius: 999px !important;
  }

  .catalog-showcase .catalog-page-btn {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .catalog-showcase .catalog-page-btn::before {
    display: block !important;
    color: inherit !important;
    font-size: 1.35rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="prev"]::before {
    content: "<" !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="next"]::before {
    content: ">" !important;
  }

  .catalog-showcase .catalog-page-status {
    width: 100% !important;
    min-height: 30px !important;
    padding: 0 8px !important;
    font-size: 0.66rem !important;
    text-align: center !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .catalog-showcase .catalog-pagination-wrap {
    margin-top: 10px !important;
    padding-bottom: 2px !important;
  }
}

/* Final hard override: no floating catalog hint/oval, swipe handles mobile paging. */
.catalog-showcase::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none !important;
  pointer-events: none !important;
}

@media (max-width: 700px) {
  .catalog-showcase::before {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="prev"]::before {
    content: "<" !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="next"]::before {
    content: ">" !important;
  }
}

/* Production stability pass: final responsive/layout authority. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-shot::before,
.hero-shot::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.topbar {
  min-height: 72px;
}

.topbar #siteNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  min-width: 0;
  flex: 1 1 auto;
}

.topbar #siteNav a {
  line-height: 1;
}

.top-actions {
  flex: 0 0 auto;
}

.hero-shot-stage {
  isolation: isolate;
}

.hero-shot-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  z-index: 5 !important;
}

.hero-shot-arrow::before {
  display: block !important;
  line-height: 1 !important;
}

.hero-shot-grid .hero-product-card,
.hero-product-card {
  min-width: 0;
}

.hero-product-cover,
.hero-product-card img,
.card.product > img {
  object-fit: cover;
  object-position: center;
}

.card.product {
  overflow: hidden;
}

.card.product > img {
  display: block;
  width: calc(100% - 24px);
  height: 118px;
  margin: 12px auto 0;
  border-radius: 9px;
}

.card.product .price-row {
  width: 100%;
  min-width: 0;
}

.card.product .price-row .primary {
  min-width: 0;
  white-space: nowrap;
}

.floating-tips,
.assistant-shell,
.floating-whatsapp {
  z-index: 9999 !important;
}

@media (max-width: 1100px) {
  .hero-shot {
    grid-template-columns: 1fr !important;
  }

  .hero-shot-copy {
    max-width: min(760px, 100%) !important;
  }

  .hero-shot-stage {
    max-width: min(780px, 100%) !important;
  }
}

@media (max-width: 760px) {
  body {
    min-width: 0 !important;
  }

  .topbar {
    min-height: 58px !important;
    width: calc(100% - 12px) !important;
    margin: 8px auto 0 !important;
    padding: 6px 8px !important;
    display: grid !important;
    grid-template-columns: auto auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .topbar .brand {
    grid-column: 1;
  }

  .topbar .mobile-nav-toggle {
    grid-column: 2;
  }

  .topbar .top-actions {
    grid-column: 3;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 5px !important;
    min-width: 0 !important;
  }

  .topbar #siteNav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 8px !important;
    right: 8px !important;
    z-index: 100 !important;
    display: none !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 10px !important;
    border: 1px solid rgba(126, 148, 255, 0.26) !important;
    border-radius: 16px !important;
    background: rgba(8, 11, 28, 0.96) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42) !important;
    backdrop-filter: blur(18px) !important;
  }

  .topbar.mobile-nav-open #siteNav,
  body.mobile-nav-open .topbar #siteNav {
    display: grid !important;
  }

  .topbar #siteNav a {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    background: rgba(23, 29, 59, 0.82) !important;
    border: 1px solid rgba(126, 148, 255, 0.18) !important;
  }

  .currency-switch {
    width: 72px !important;
    min-width: 72px !important;
    height: 34px !important;
    padding: 0 6px !important;
    gap: 3px !important;
  }

  .currency-switch select {
    font-size: 0.72rem !important;
  }

  .cart-button,
  #authButton {
    min-height: 34px !important;
    padding: 0 8px !important;
    font-size: 0.72rem !important;
  }

  .hero-shot {
    width: min(100% - 20px, 520px) !important;
    margin-inline: auto !important;
    gap: 18px !important;
  }

  .hero-shot-title {
    max-width: 100% !important;
    font-size: clamp(2rem, 8.3vw, 2.3rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    text-wrap: balance !important;
  }

  .hero-shot-title-line {
    display: inline !important;
    white-space: normal !important;
  }

  .hero-shot-stage {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) 34px !important;
    gap: 0 !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .hero-shot-frame {
    width: 100% !important;
    min-width: 0 !important;
    padding: 18px 16px 20px !important;
    border-radius: 22px !important;
  }

  .hero-shot-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hero-product-card {
    min-height: 250px !important;
    padding: 8px !important;
  }

  .hero-product-card img,
  .hero-product-cover {
    width: 100% !important;
    height: 94px !important;
    border-radius: 8px !important;
  }

  .hero-shot-arrow {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    position: static !important;
    margin: 0 !important;
    transform: none !important;
  }

  .hero-shot-arrow-left {
    justify-self: start !important;
    transform: translateX(-8px) !important;
  }

  .hero-shot-arrow-right {
    justify-self: end !important;
    transform: translateX(8px) !important;
  }

  .hero-shot-brands {
    width: min(100% - 28px, 520px) !important;
    margin-inline: auto !important;
  }

  .catalog-showcase {
    width: min(100% - 20px, 520px) !important;
    margin-inline: auto !important;
    padding: 18px 14px !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="prev"]::before {
    content: "<" !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="next"]::before {
    content: ">" !important;
  }

  .product-modal {
    align-items: flex-start !important;
    overflow-y: auto !important;
    padding: 10px !important;
  }

  .product-modal .modal-content,
  .product-modal-card,
  .product-detail-modal {
    width: min(100%, 430px) !important;
    max-height: none !important;
    display: block !important;
    overflow: visible !important;
  }

  .product-modal img,
  .product-modal .product-detail-cover {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-height: 210px !important;
    object-fit: contain !important;
    margin: 0 auto 12px !important;
  }

  .drawer {
    width: min(100vw, 430px) !important;
    max-width: 100vw !important;
    inset: 0 0 0 auto !important;
    overflow-y: auto !important;
  }

  .drawer .cart-item,
  .cart-item {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
    padding: 12px !important;
    min-height: auto !important;
  }

  .feedback-section {
    width: min(100% - 20px, 520px) !important;
    margin-inline: auto !important;
    overflow: hidden !important;
  }

  .feedback-track,
  .feedback-cards {
    min-width: 0 !important;
  }

  .floating-tips {
    left: 8px !important;
    bottom: 8px !important;
    max-width: 120px !important;
    min-width: 96px !important;
  }
}

/* Final release guardrails: keep desktop/mobile stable after older overrides. */
.hero-shot::before,
.hero-shot::after,
.hero-shot-frame::before,
.hero-shot-frame::after,
.hero-shot-stage::before,
.hero-shot-stage::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.topbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.topbar #siteNav {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(18px, 2vw, 34px) !important;
  margin-inline: auto !important;
}

.topbar #siteNav a[data-admin][hidden] {
  display: none !important;
}

.currency-switch span {
  display: none !important;
}

.currency-switch {
  width: 76px !important;
  min-width: 76px !important;
  justify-content: center !important;
}

.hero-shot-stage {
  overflow: visible !important;
}

.hero-shot-frame {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
}

.hero-shot-frame::before,
.hero-shot-frame::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
  animation: none !important;
}

.hero-shot-card-grid {
  align-items: stretch !important;
}

.hero-shot-arrow {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-shot-arrow-left {
  left: -28px !important;
}

.hero-shot-arrow-right {
  right: -28px !important;
}

.hero-product-card,
.catalog-showcase #productGrid.grid .card.product {
  box-sizing: border-box !important;
}

.hero-product-card img,
.hero-product-cover {
  object-fit: cover !important;
  object-position: center !important;
}

.catalog-showcase #productGrid.grid .card.product > img {
  display: block !important;
  width: calc(100% - 24px) !important;
  height: 118px !important;
  min-height: 118px !important;
  max-height: 118px !important;
  margin: 12px auto 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 9px !important;
}

.catalog-showcase #productGrid.grid .card.product > .card-body {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(74px, 86px) !important;
  align-items: center !important;
  gap: 8px !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row .price {
  min-width: 0 !important;
}

.catalog-showcase #productGrid.grid .card.product .price-row .primary {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 86px !important;
  padding-inline: 10px !important;
  justify-self: end !important;
  white-space: nowrap !important;
}

.floating-tips,
.assistant-shell,
.floating-whatsapp {
  position: fixed !important;
  z-index: 2147483000 !important;
}

@media (min-width: 761px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: grid !important;
    grid-template-columns: auto auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 54px !important;
  }

  .topbar .brand {
    grid-column: 1 !important;
  }

  .topbar .mobile-nav-toggle {
    grid-column: 2 !important;
    display: inline-flex !important;
  }

  .topbar .top-actions {
    grid-column: 3 !important;
  }

  .topbar #siteNav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 8px !important;
    right: 8px !important;
    display: none !important;
    grid-template-columns: 1fr 1fr !important;
    margin: 0 !important;
  }

  .topbar.mobile-nav-open #siteNav,
  body.mobile-nav-open .topbar #siteNav {
    display: grid !important;
  }

  .topbar #siteNav a[data-admin][hidden] {
    display: none !important;
  }

  .currency-switch {
    width: 62px !important;
    min-width: 62px !important;
    height: 32px !important;
  }

  .hero-shot-title {
    font-size: clamp(2.18rem, 10.4vw, 3.05rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  .hero-shot-stage {
    grid-template-columns: 28px minmax(0, 1fr) 28px !important;
    overflow: visible !important;
  }

  .hero-shot-arrow {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    position: static !important;
  }

  .hero-shot-arrow-left {
    transform: translateX(-12px) !important;
  }

  .hero-shot-arrow-right {
    transform: translateX(12px) !important;
  }

  .hero-shot-frame {
    padding: 18px 16px 20px !important;
    overflow: hidden !important;
  }

  .hero-shot-grid,
  .hero-shot-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-product-card {
    min-height: 286px !important;
  }

  .hero-product-card img,
  .hero-product-cover {
    height: 106px !important;
  }

  .catalog-showcase .catalog-pagination {
    width: min(100%, 220px) !important;
    border-radius: 18px !important;
    background: rgba(10, 14, 34, 0.72) !important;
  }

  .catalog-showcase .catalog-page-btn {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    font-size: 0 !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="prev"]::before {
    content: "<" !important;
  }

  .catalog-showcase .catalog-page-btn[data-catalog-page="next"]::before {
    content: ">" !important;
  }

  .catalog-showcase #productGrid.grid {
    grid-auto-columns: minmax(178px, 46vw) !important;
  }

  .catalog-showcase #productGrid.grid::after {
    content: none !important;
    display: none !important;
  }

  .catalog-showcase #productGrid.grid .card.product > img {
    height: 86px !important;
    min-height: 86px !important;
    max-height: 86px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row {
    grid-template-columns: minmax(0, 1fr) 74px !important;
    gap: 6px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .price-row .primary {
    max-width: 74px !important;
    min-height: 32px !important;
    padding-inline: 8px !important;
    font-size: 0.72rem !important;
  }

  .floating-tips {
    left: 6px !important;
    bottom: 6px !important;
    width: auto !important;
    min-width: 86px !important;
    max-width: 108px !important;
  }

  .floating-tips.is-collapsed .floating-tips-head {
    min-height: 34px !important;
    padding: 6px 8px !important;
    gap: 6px !important;
  }

  .floating-tips.is-collapsed .floating-tips-head strong {
    font-size: 0.66rem !important;
  }

  .floating-tips.is-collapsed .floating-tips-toggle {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
  }
}

/* Final responsive stability layer */
.catalog-showcase::before,
.catalog-showcase::after {
  content: none !important;
  display: none !important;
}

.topbar #siteNav {
  text-align: center !important;
}

.catalog-showcase #productGrid.grid .card.product {
  align-items: stretch !important;
}

.catalog-showcase #productGrid.grid .card.product > img {
  aspect-ratio: 16 / 9 !important;
}

@media (min-width: 761px) {
  .topbar {
    padding-inline: clamp(24px, 4vw, 56px) !important;
  }

  .topbar #siteNav {
    position: static !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden !important;
  }

  .topbar {
    width: calc(100% - 16px) !important;
    min-height: 58px !important;
    padding: 7px 8px !important;
    grid-template-columns: auto auto minmax(0, 1fr) !important;
  }

  .topbar .brand-logo {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
  }

  .topbar .top-actions {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  .topbar .top-actions > * {
    flex: 0 0 auto !important;
  }

  .topbar #siteNav {
    z-index: 2147482990 !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: rgba(9, 13, 31, 0.98) !important;
    border: 1px solid rgba(126, 143, 255, 0.24) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42) !important;
  }

  .topbar #siteNav a {
    display: flex !important;
    min-height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    background: rgba(20, 27, 58, 0.72) !important;
  }

  .hero-shot-title {
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .hero-shot-stage {
    display: grid !important;
    grid-template-columns: 0 minmax(0, 1fr) 0 !important;
    align-items: center !important;
  }

  .hero-shot-arrow {
    z-index: 5 !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-shot-arrow-left {
    transform: translateX(-22px) !important;
  }

  .hero-shot-arrow-right {
    transform: translateX(-20px) !important;
  }

  .product-modal {
    padding: 8px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  .product-modal-card {
    width: min(100%, 420px) !important;
    max-height: calc(100vh - 16px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
    padding: 16px !important;
    gap: 14px !important;
  }

  .product-modal-copy,
  .product-modal-buy-panel {
    width: 100% !important;
    min-width: 0 !important;
  }

  .product-modal-media {
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .product-modal-media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 190px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  .product-modal-description {
    white-space: pre-line !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .product-modal-durations {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cart-drawer,
  .cart-panel,
  .cart-sidebar {
    width: min(100vw, 430px) !important;
    max-width: 100vw !important;
  }

  .feedback-section {
    overflow: hidden !important;
  }

  .feedback-track {
    width: 100% !important;
  }

  .feedback-card {
    min-width: 0 !important;
  }

  .catalog-showcase #productGrid.grid {
    grid-auto-columns: minmax(176px, 47vw) !important;
    scroll-snap-type: x mandatory !important;
  }
}

/* Mobile catalog cleanup: never leak helper text or off-page cards. */
.catalog-showcase,
.catalog-showcase #productGrid.grid {
  overflow-x: hidden !important;
}

.catalog-showcase #productGrid.grid::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 700px) {
  .catalog-showcase {
    overflow: hidden !important;
  }

  .catalog-showcase #productGrid.grid {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
}

/* Desktop hero carousel scale: make the product showcase more present without touching mobile. */
@media (min-width: 1001px) {
  .hero-shot-stage {
    width: clamp(720px, 47vw, 900px) !important;
    min-height: 580px !important;
    justify-self: end !important;
    display: block !important;
    padding: 0 !important;
    position: relative !important;
  }

  .hero-shot-frame {
    position: relative !important;
    width: 100% !important;
    min-height: 580px !important;
    padding: 42px 28px 32px !important;
    background: linear-gradient(145deg, rgba(22, 20, 57, 0.94), rgba(9, 13, 35, 0.98)) !important;
    border: 1px solid rgba(148, 76, 255, 0.95) !important;
    border-radius: 30px !important;
    box-shadow: 0 26px 70px rgba(2, 4, 18, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
    overflow: visible !important;
  }

  .hero-shot-frame::before {
    content: "" !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    z-index: 0 !important;
    pointer-events: none !important;
    width: 112% !important;
    height: 100% !important;
    left: -6% !important;
    top: 0 !important;
    border: 1px solid rgba(107, 119, 196, 0.28) !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hero-shot-main {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    min-height: 470px !important;
    padding: 30px 26px 24px !important;
    background: rgba(12, 16, 43, 0.78) !important;
    border: 1px solid rgba(100, 117, 196, 0.3) !important;
    border-radius: 25px !important;
  }

  .hero-shot-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .hero-shot-product-card {
    min-height: 360px !important;
    padding: 11px 12px 15px !important;
  }

  .hero-shot-product-art {
    width: 100% !important;
    height: 118px !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .hero-shot-product-copy h3 {
    font-size: 1.05rem !important;
    line-height: 1.08 !important;
  }

  .hero-shot-arrow {
    position: absolute !important;
    z-index: 4 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .hero-shot-arrow-left {
    left: -28px !important;
  }

  .hero-shot-arrow-right {
    right: -28px !important;
  }
}

/* Mobile hero arrows: symmetric, circular and fully visible. */
@media (max-width: 760px) {
  .hero-shot-stage {
    position: relative !important;
    display: block !important;
    overflow: visible !important;
  }

  .hero-shot-frame {
    position: relative !important;
    overflow: visible !important;
  }

  .hero-shot-arrow {
    position: absolute !important;
    z-index: 20 !important;
    top: 50% !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-shot-arrow-left {
    left: 4px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .hero-shot-arrow-right {
    right: 4px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
  }
}

/* Mobile carousel controls: final authoritative positioning. */
@media (max-width: 760px) {
  .hero-shot-stage {
    position: relative !important;
    overflow: visible !important;
  }

  .hero-shot-stage > .hero-shot-arrow {
    position: absolute !important;
    top: 50% !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    z-index: 30 !important;
  }

  .hero-shot-stage > .hero-shot-arrow-left {
    left: 8px !important;
    right: auto !important;
  }

  .hero-shot-stage > .hero-shot-arrow-right {
    right: 8px !important;
    left: auto !important;
  }
}




/* Final authority for the floating WhatsApp and assistant controls. */
html body > a.floating-whatsapp,
html body > section.assistant-shell {
  position: fixed !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  z-index: 2147483000 !important;
  box-sizing: border-box !important;
}

html body > a.floating-whatsapp {
  bottom: max(20px, env(safe-area-inset-bottom)) !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(75, 255, 151, 0.42) !important;
  border-radius: 50% !important;
  background: rgba(5, 24, 15, 0.96) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 18px rgba(37, 211, 102, 0.22) !important;
  isolation: isolate !important;
}

html body > a.floating-whatsapp > img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 50% !important;
  clip-path: circle(50%) !important;
  transform: scale(1.43) !important;
}

html body > section.assistant-shell {
  bottom: calc(max(20px, env(safe-area-inset-bottom)) + 64px) !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

html body > section.assistant-shell > button.assistant-toggle,
html body > section.assistant-shell.open > button.assistant-toggle {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 1px solid rgba(110, 190, 255, 0.48) !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg, #7257ff, #2b91ef) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 20px rgba(83, 136, 255, 0.28) !important;
}

html body > section.assistant-shell > button.assistant-toggle .assistant-toggle-glyph {
  width: 29px !important;
  height: 23px !important;
  margin: 0 !important;
  transform: none !important;
}

html body > section.assistant-shell > button.assistant-toggle .assistant-toggle-status {
  right: 1px !important;
  bottom: 1px !important;
}

@media (max-width: 760px) {
  html body > a.floating-whatsapp,
  html body > section.assistant-shell {
    right: max(12px, env(safe-area-inset-right)) !important;
  }

  html body > a.floating-whatsapp {
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
  }

  html body > a.floating-whatsapp > img {
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.43) !important;
  }

  html body > section.assistant-shell {
    bottom: calc(max(12px, env(safe-area-inset-bottom)) + 57px) !important;
  }

  html body > section.assistant-shell > button.assistant-toggle,
  html body > section.assistant-shell.open > button.assistant-toggle {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  html body > section.assistant-shell > button.assistant-toggle .assistant-toggle-glyph {
    width: 26px !important;
    height: 21px !important;
  }
}

/* Catalog cards: compact vertical rhythm without artificial empty space. */
.catalog-showcase #productGrid.grid .card.product {
  min-height: 292px !important;
  grid-template-rows: 118px auto !important;
}

.catalog-showcase #productGrid.grid .card.product > .card-body {
  grid-template-rows: auto minmax(2.28em, auto) auto !important;
  align-content: start !important;
  gap: 6px !important;
  padding: 8px 12px 12px !important;
}

.catalog-showcase #productGrid.grid .card.product .purchase-panel {
  align-self: auto !important;
  margin-top: 2px !important;
  gap: 5px !important;
}

@media (max-width: 760px) {
  .catalog-showcase #productGrid.grid .card.product {
    height: 300px !important;
    min-height: 300px !important;
    grid-template-rows: 92px minmax(0, 1fr) !important;
  }

  .catalog-showcase #productGrid.grid .card.product > .card-body {
    grid-template-rows: auto minmax(2.15em, auto) auto !important;
    align-content: start !important;
    gap: 4px !important;
    padding: 6px 4px 4px !important;
  }

  .catalog-showcase #productGrid.grid .card.product .purchase-panel {
    align-self: auto !important;
    margin-top: 1px !important;
    gap: 4px !important;
  }
}
/* Refined catalog heading */
.catalog-showcase .catalog-showcase-head {
  position: relative !important;
  display: block !important;
  margin: 0 0 22px !important;
  padding: 2px 0 0 18px !important;
  border-left: 2px solid rgba(101, 171, 255, 0.72) !important;
}

.catalog-showcase .catalog-heading-copy {
  display: grid !important;
  gap: 7px !important;
  max-width: 760px !important;
}

.catalog-showcase .catalog-kicker {
  margin: 0 !important;
  color: #8fcaff !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.catalog-showcase .catalog-showcase-head h2 {
  max-width: none !important;
  margin: 0 !important;
  color: #f7f8ff !important;
  font-size: clamp(1.85rem, 2.25vw, 2.65rem) !important;
  line-height: 1.08 !important;
  font-weight: 750 !important;
  text-wrap: balance !important;
}

.catalog-showcase .catalog-showcase-head h2::after {
  display: none !important;
}

.catalog-showcase .catalog-heading-lead {
  margin: 0 !important;
  color: rgba(205, 211, 232, 0.78) !important;
  font-size: 0.96rem !important;
  line-height: 1.45 !important;
}

@media (max-width: 700px) {
  .catalog-showcase .catalog-showcase-head {
    margin-bottom: 16px !important;
    padding-left: 13px !important;
  }

  .catalog-showcase .catalog-showcase-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.05rem) !important;
  }

  .catalog-showcase .catalog-heading-lead {
    max-width: 32ch !important;
    font-size: 0.88rem !important;
  }
}

/* Final sticky navigation authority */
html,
body {
  overflow-x: clip !important;
}

header.topbar {
  position: sticky !important;
  top: 14px !important;
  z-index: 2147483000 !important;
  align-self: start !important;
}

@media (max-width: 760px) {
  header.topbar {
    top: 8px !important;
  }
}

/* Final cross-viewport component alignment */
.catalog-showcase #productGrid.grid .card.product .annual-saving-note {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 4px 7px !important;
  line-height: 1.1 !important;
}

.catalog-showcase #productGrid.grid .card.product .annual-saving-note::before {
  position: static !important;
  flex: 0 0 6px !important;
  width: 6px !important;
  height: 6px !important;
  margin: 0 !important;
  transform: none !important;
}

.social-links a[aria-label="Instagram"] > img {
  transform: scale(1.62) !important;
  transform-origin: center !important;
}

.social-links a[aria-label="WhatsApp"] > img {
  transform: scale(1.22) !important;
  transform-origin: center !important;
}
.transfer-details[hidden] { display: none !important; }
.transfer-details {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(76, 201, 240, .28);
  border-radius: 8px;
  background: rgba(10, 21, 42, .72);
}
.transfer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  color: #aebbd2;
  font-size: .78rem;
}
.transfer-summary strong { color: #42f5a7; font-size: 1.08rem; white-space: nowrap; }
.transfer-account-details { display: grid; gap: 4px; padding-top: 6px; }
.transfer-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #aebbd2;
  font-size: .74rem;
}
.transfer-row strong { color: #f4f7ff; overflow-wrap: anywhere; }
.transfer-copy {
  min-width: 50px;
  min-height: 26px;
  padding: 4px 7px;
  border: 1px solid rgba(93, 170, 255, .3);
  border-radius: 6px;
  background: rgba(32, 67, 112, .38);
  color: #dceaff;
  font: inherit;
  cursor: pointer;
}
.transfer-copy:hover { border-color: #64c8ff; background: rgba(42, 104, 168, .48); }
.transfer-help, .transfer-loading, .transfer-error { display: block; margin: 6px 0 0; color: #9eabc1; font-size: .7rem; line-height: 1.35; }
.transfer-error { color: #ffb7c2; }
@media (max-width: 520px) {
  .transfer-details { padding: 8px; }
  .transfer-row { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 5px; }
  .transfer-copy { min-width: 44px; padding-inline: 5px; }
}

/* Mobile navigation: final conflict-free state */
@media (max-width: 760px) {
  .topbar { overflow: visible !important; }
  .topbar .mobile-nav-toggle {
    display: inline-flex !important;
    position: relative !important;
    z-index: 2147482992 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }
  .topbar #siteNav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .topbar.mobile-nav-open #siteNav,
  body.mobile-nav-open .topbar #siteNav {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
