:root {
  --bg: #06070d;
  --panel: #101321;
  --panel-soft: #171a2b;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f7ff;
  --muted: #a9afcb;
  --primary: #7166ff;
  --primary-strong: #5a4cff;
  --cyan: #19d3ff;
  --green: #12d985;
  --danger: #ff5d73;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 8%, rgba(113, 102, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 15% 20%, rgba(25, 211, 255, 0.12), transparent 24rem),
    var(--bg);
  color: var(--text);
}

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

button,
input,
select {
  font: inherit;
}

button,
a.button,
.filter-chip,
.cart-button,
.icon-button,
.add-button,
.options-button,
.remove-button {
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

button:active,
a.button:active,
.filter-chip:active,
.cart-button:active,
.icon-button:active,
.add-button:active,
.options-button:active,
.remove-button:active {
  transform: translateY(1px) scale(0.98);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 64px;
  padding: 0.65rem clamp(0.85rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(8, 10, 20, 0.96), rgba(5, 6, 14, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand img,
.site-footer img {
  display: block;
  width: 154px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: none;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-console-nav {
  display: none;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.is-active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.side-drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.side-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  width: min(320px, 88vw);
  height: 100%;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(10, 12, 22, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.side-drawer.is-open .side-panel {
  transform: translateX(0);
}

.side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.side-head img {
  width: 150px;
  height: 34px;
  object-fit: contain;
}

.drawer-nav {
  display: grid;
  gap: 0.35rem;
}

.drawer-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
}

.drawer-nav a:hover,
.drawer-nav a:focus,
.drawer-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.icon-button,
.cart-button,
.filter-title button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0 0.72rem 0 0.82rem;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.cart-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  color: #050711;
  background: var(--green);
  font-size: 0.86rem;
  line-height: 1;
}

.search-toggle {
  font-size: 1.08rem;
}

.search-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  min-height: clamp(390px, 60vh, 640px);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(113, 102, 255, 0.16), rgba(25, 211, 255, 0.12));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 78% 30%, rgba(25, 211, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(6, 7, 13, 0.94) 0%, rgba(6, 7, 13, 0.78) 42%, rgba(6, 7, 13, 0.24) 100%),
    linear-gradient(180deg, rgba(6, 7, 13, 0.08), rgba(6, 7, 13, 0.84));
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: var(--hero-focus, center right);
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.hero-backdrop.is-active {
  opacity: 0.96;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-backdrop {
    transition: none;
  }
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
}

.hero-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 30rem);
  margin: 0 0 0.8rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(11, 13, 24, 0.58);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-featured:hover,
.hero-featured:focus-visible {
  border-color: rgba(34, 211, 238, 0.62);
  background: rgba(15, 18, 34, 0.76);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 950;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.hero p:not(.eyebrow),
.split-section p {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 12px 28px rgba(90, 76, 255, 0.28);
}

.secondary,
.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.discount-note {
  max-width: 28rem;
  margin: 0.85rem 0 0;
  color: #17f0a4;
  font-size: 0.96rem;
  font-weight: 800;
}

.whatsapp-discount {
  gap: 0.55rem;
}

.whatsapp-discount small {
  display: inline-grid;
  min-height: 22px;
  place-items: center;
  padding: 0 0.45rem;
  border-radius: 999px;
  color: #04130d;
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.how-section {
  padding-block: 1.55rem;
  background:
    linear-gradient(180deg, rgba(16, 19, 33, 0.72), rgba(8, 10, 18, 0.54));
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.how-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.38rem 0.62rem;
  align-items: start;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.how-card span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #04100c;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 0.86rem;
  font-weight: 950;
}

.how-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.08;
}

.how-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.benefits {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
}

.benefits article,
.product-card,
.filters,
.plan-card,
.cart-panel,
.options-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 33, 0.9);
  box-shadow: var(--shadow);
}

.benefits article {
  padding: 1.25rem;
}

.benefits span {
  color: var(--primary);
  font-size: 1.6rem;
}

.benefits h2 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1rem;
}

.benefits p,
.product-meta,
.empty-state,
.site-footer,
.cart-empty {
  color: var(--muted);
}

.cart-empty {
  display: grid;
  gap: 0.9rem;
  place-items: center;
  min-height: 48vh;
  padding: 1.5rem;
  text-align: center;
}

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

.section,
.catalog-layout {
  padding: 3rem clamp(1rem, 5vw, 5rem);
}

.section-heading,
.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.product-strip,
.product-grid,
.plans {
  display: grid;
  gap: 1rem;
}

.product-strip {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.home-section {
  padding-block: 2.25rem;
}

.home-section + .home-section {
  padding-top: 0.75rem;
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(113, 102, 255, 0.18), rgba(25, 211, 255, 0.09));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-cta p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-cta h2 {
  margin-bottom: 0.55rem;
}

.product-carousel,
.plus-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 240px);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0.15rem 0.9rem;
  scroll-snap-type: x proximity;
}

.product-carousel > *,
.plus-carousel > * {
  height: 100%;
  scroll-snap-align: start;
}

.plus-card {
  display: grid;
  grid-template-rows: 114px 1fr;
  align-content: stretch;
  gap: 0;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 33, 0.94);
  box-shadow: var(--shadow);
}

.plus-cover {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  overflow: hidden;
  min-height: 114px;
  padding: 0.85rem;
  background:
    linear-gradient(135deg, rgba(244, 196, 48, 0.14), transparent 55%),
    #0b0e18;
}

.plus-emblem {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  color: #151822;
  background: #f4c430;
  font-family: Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.plus-wordmark {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  color: #ffffff;
  line-height: 0.9;
}

.plus-wordmark small {
  color: #dce1ee;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.plus-wordmark strong {
  color: #f4c430;
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: 0;
}

.plus-info {
  display: grid;
  grid-template-rows: auto minmax(2.25em, auto) auto 1fr;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.85rem;
}

.plus-info .eyebrow {
  margin: 0;
}

.plus-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.05;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.plus-duration {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 0.7rem;
  border-radius: 8px;
  color: #090a10;
  background: #f5c542;
  font-weight: 950;
}

[data-page="ofertas"] .product-strip {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: start;
}

[data-page="ofertas"] .section-heading {
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.catalog-layout {
  display: block;
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid var(--line);
}

.filters {
  position: fixed;
  inset: 0;
  z-index: 42;
  width: min(320px, 88vw);
  max-width: 100%;
  overflow: auto;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(10, 12, 22, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.filters.is-open {
  transform: translateX(0);
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.catalog-controls {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.catalog-search {
  display: grid;
  gap: 0.4rem;
}

.catalog-search span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  overscroll-behavior-inline: contain;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.is-active {
  color: #04100c;
  border-color: transparent;
  background: var(--green);
}

.contact-whatsapp {
  margin-top: 1rem;
}

.filter-title button {
  min-height: 32px;
  padding: 0 0.65rem;
  border-radius: 6px;
  color: var(--muted);
}

.search-box {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.search-box span,
legend {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input[type="search"],
select,
textarea,
.contact-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 0.8rem;
}

select {
  color-scheme: dark;
  background-color: #111421;
}

select option {
  color: #f6f7ff;
  background: #111421;
}

select option:checked {
  color: #ffffff;
  background: #5b63ff;
}

textarea {
  min-height: 110px;
  padding-block: 0.75rem;
  resize: vertical;
}

fieldset {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 1rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

label {
  color: var(--muted);
}

input[type="checkbox"] {
  accent-color: var(--primary);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

output {
  color: var(--text);
  font-weight: 900;
}

.catalog-toolbar select {
  max-width: 190px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.cover {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #080a12;
  isolation: isolate;
}

.cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.badge {
  padding: 0.22rem 0.38rem;
  border-radius: 5px;
  background: rgba(113, 102, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 900;
}

.badge.offer {
  background: var(--green);
  color: #03130c;
}

.product-info {
  display: grid;
  grid-template-rows: auto minmax(2.4em, auto) 1fr;
  gap: 0.6rem;
  padding: 0.72rem;
}

.product-info h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 2.4em;
}

.card-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-self: end;
  align-items: end;
}

.from-price {
  color: var(--green);
  font-size: 0.96rem;
  line-height: 1.1;
}

.options-button {
  min-height: 36px;
  padding: 0 0.7rem;
  border: 0;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 8px 22px rgba(113, 102, 255, 0.22);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
}

.options-button:hover,
.add-button:hover,
.button:hover,
.cart-button:hover,
.icon-button:hover {
  border-color: rgba(25, 211, 255, 0.34);
  box-shadow: 0 10px 28px rgba(25, 211, 255, 0.16);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.82rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--green);
  font-size: 1.04rem;
  font-weight: 950;
}

.old-price {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: line-through;
}

.add-button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 8px 22px rgba(113, 102, 255, 0.2);
  font-weight: 900;
  cursor: pointer;
}

.add-button.is-added {
  color: #04100c;
  background: var(--green);
}

.variant-added {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
}

.variant-added > span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
}

.secondary-add {
  min-width: 108px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(25, 211, 255, 0.46);
  box-shadow: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 1.5rem;
  align-items: center;
}

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

.plan-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.plan-card strong {
  font-size: 1.25rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.options-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.options-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.options-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 21, 36, 0.98), rgba(8, 10, 18, 0.98));
  transform: translateY(110%);
  transition: transform 220ms ease;
}

.options-drawer.is-open .options-panel {
  transform: translateY(0);
}

.options-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}

.options-content {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-top: 0.2rem;
}

.option-cover {
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080a12;
}

.option-cover .cover-img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
}

.option-detail {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  padding-right: 2.6rem;
}

.options-content.is-compact-options {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
  margin-inline: auto;
}

.option-detail h2 {
  margin: 0;
  padding-right: 0.5rem;
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  line-height: 0.98;
}

.option-variant-list {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.25rem;
}

.option-variant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.option-variant strong {
  display: block;
  line-height: 1.1;
}

.option-price {
  min-width: 92px;
  text-align: right;
}

.option-price b {
  display: block;
  color: var(--green);
  font-size: 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 1.5rem;
  align-items: start;
  padding: 3rem clamp(1rem, 5vw, 5rem);
  background: linear-gradient(135deg, rgba(113, 102, 255, 0.16), rgba(25, 211, 255, 0.08));
  border-top: 1px solid var(--line);
}

.contact-section p {
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 33, 0.9);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(460px, 100vw);
  height: 100%;
  border-radius: 0;
  border-block: 0;
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 21, 36, 0.98), rgba(8, 10, 18, 0.98));
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head,
.cart-footer {
  padding: 1rem;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-size: 1.65rem;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  overflow: auto;
  padding: 0.9rem;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.cart-line h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  line-height: 1.15;
}

.cart-line .product-meta {
  margin-bottom: 0.45rem;
}

.cart-line strong {
  color: var(--green);
  font-size: 1rem;
}

.cart-line-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px minmax(34px, auto) 34px;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.quantity-control button {
  width: 34px;
  height: 36px;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  background: rgba(113, 102, 255, 0.26);
}

.quantity-control span {
  min-width: 34px;
  color: var(--text);
  text-align: center;
  font-weight: 900;
}

.cart-price {
  display: grid;
  justify-items: end;
  gap: 0.12rem;
}

.cart-price small {
  color: var(--muted);
  font-size: 0.72rem;
}

.remove-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--danger);
  background: rgba(255, 93, 115, 0.08);
  font-weight: 950;
  cursor: pointer;
}

.cart-footer {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(6, 7, 13, 0.94);
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.28);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.cart-total strong {
  color: var(--green);
  font-size: 1.15rem;
}

.cart-discount {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(23, 240, 164, 0.22);
  border-radius: 8px;
  color: #17f0a4;
  background: rgba(23, 240, 164, 0.07);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.cart-customer-name {
  display: grid;
  gap: 0.35rem;
}

.cart-customer-name span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.cart-customer-name em {
  color: inherit;
  font-style: normal;
  font-weight: 500;
}

.cart-customer-name input {
  min-height: 44px;
  width: 100%;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.cart-customer-name input:focus {
  outline: 2px solid rgba(25, 211, 255, 0.48);
  outline-offset: 1px;
}

.cart-close {
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 70;
  transform: translate(-50%, 18px);
  min-width: min(280px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 217, 133, 0.36);
  border-radius: 8px;
  color: var(--text);
  background: rgba(9, 14, 19, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.full {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.empty-state {
  display: none;
  margin: 2rem 0;
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

@media (min-width: 821px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .product-grid,
  .product-strip {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 86px;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem 0.6rem;
  }

  .menu-toggle {
    display: none;
  }

  .brand {
    justify-self: start;
    min-width: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .main-nav {
    display: none;
  }

  .mobile-console-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
  }

  .mobile-console-nav a {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    border: 1px solid rgba(113, 102, 255, 0.28);
    border-radius: 7px;
    color: rgba(246, 247, 255, 0.86);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
      rgba(8, 9, 16, 0.92);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 8px 18px rgba(113, 102, 255, 0.12);
    font-size: 0.92rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-console-nav a.is-active,
  .mobile-console-nav a:hover,
  .mobile-console-nav a:focus {
    border-color: rgba(25, 211, 255, 0.42);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(25, 211, 255, 0.08), 0 10px 22px rgba(25, 211, 255, 0.12);
  }

  .mobile-console-nav .plus-link {
    color: #f7d65a;
    letter-spacing: 0.04em;
  }

  .mobile-console-nav .plus-link span {
    color: #ffd137;
    font-size: 1.02rem;
    line-height: 1;
  }

  .catalog-layout,
  .split-section,
  .contact-section,
  .hero {
    grid-template-columns: 1fr;
  }

  .filters {
    position: fixed;
  }

  .product-grid,
  .product-strip,
  .plans {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(138px, 36vw);
    height: 30px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .cart-button {
    min-height: 40px;
    padding-inline: 0.64rem 0.56rem;
  }

  .cart-button span {
    display: inline;
    font-size: 0.82rem;
  }

  .cart-button strong {
    min-width: 25px;
    height: 25px;
  }

  .cart-drawer {
    align-items: end;
    justify-items: center;
    padding: 0.6rem;
  }

  .cart-panel {
    width: 100%;
    height: min(92vh, 760px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(110%);
  }

  .cart-drawer.is-open .cart-panel {
    transform: translateY(0);
  }

  .cart-head,
  .cart-footer {
    padding: 0.85rem;
  }

  .cart-items {
    padding: 0.75rem;
  }

  .search-toggle {
    display: none;
  }

  .hero {
    min-height: 420px;
    padding-top: 2.1rem;
    padding-bottom: 1.65rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 7, 13, 0.44) 0%, rgba(6, 7, 13, 0.78) 62%, rgba(6, 7, 13, 0.96) 100%),
      linear-gradient(90deg, rgba(6, 7, 13, 0.76) 0%, rgba(6, 7, 13, 0.44) 58%, rgba(6, 7, 13, 0.18) 100%);
  }

  .hero-backdrop {
    background-position: var(--hero-focus, 62% center);
    background-size: auto 100%;
    background-repeat: no-repeat;
    opacity: 0;
    filter: saturate(1.08) contrast(1.03);
  }

  .hero-backdrop.is-active {
    opacity: 0.96;
  }

  .hero-shader {
    opacity: 0.12;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-featured {
    max-width: 100%;
    margin-bottom: 0.62rem;
    padding: 0.42rem 0.58rem;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 8.7ch;
    margin-bottom: 0.72rem;
    font-size: clamp(2.45rem, 13.5vw, 3.65rem);
    line-height: 0.9;
  }

  .hero p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1rem;
  }

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

  .catalog-cta {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.7rem);
  }

  .benefits,
  .plans {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .product-carousel {
    grid-auto-columns: minmax(148px, 46vw);
    gap: 0.7rem;
    margin-inline: -0.15rem;
  }

  .plus-carousel {
    grid-auto-columns: minmax(230px, 74vw);
    gap: 0.75rem;
  }

  .home-section {
    padding-block: 1.45rem;
  }

  .catalog-layout,
  .section,
  .contact-section {
    padding-inline: 0.85rem;
  }

  .cover {
    aspect-ratio: 1 / 1.16;
  }

  .cover-img {
    width: 100%;
    height: 100%;
  }

  .section-heading,
  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .toolbar-actions {
    width: 100%;
  }

  .catalog-toolbar select {
    max-width: none;
    width: 100%;
  }

  .catalog-search input {
    min-height: 44px;
  }

  .quick-filters {
    margin-inline: -0.85rem;
    padding-inline: 0.85rem;
  }

  .filter-chip {
    min-height: 34px;
    padding-inline: 0.72rem;
    font-size: 0.86rem;
  }

  .product-info {
    gap: 0.48rem;
    padding: 0.58rem;
  }

  .product-info h3 {
    font-size: 0.9rem;
  }

  .badges {
    gap: 0.25rem;
  }

  .badge {
    font-size: 0.65rem;
  }

  .card-action-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .from-price {
    font-size: 0.84rem;
  }

  .options-button {
    width: 100%;
    min-height: 34px;
    padding-inline: 0.45rem;
    font-size: 0.82rem;
  }

  .options-drawer {
    padding: 0.6rem;
  }

  .options-panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 8px;
    padding: 0.85rem;
  }

  .options-content {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .option-cover {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .option-cover .cover-img {
    max-height: 280px;
  }

  .option-detail {
    padding-right: 0;
  }

  .option-detail h2 {
    padding-right: 2.8rem;
  }

  .option-variant {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .option-price {
    min-width: 0;
    text-align: left;
  }
}

@media (max-width: 390px) {
  .hero-backdrop {
    background-size: cover;
  }
}
