:root {
  color-scheme: dark;
  --bg: #020409;
  --bg-soft: #070b12;
  --surface: #0b111b;
  --surface-glass: rgba(4, 12, 25, 0.91);
  --text: #f5f7fa;
  --text-soft: #a8b3c2;
  --text-muted: #7f8da0;
  --border: rgba(0, 153, 255, 0.22);
  --border-strong: rgba(0, 174, 255, 0.58);
  --accent: #0099ff;
  --accent-strong: #0074d9;
  --success: #19dc55;
  --price: #15ed42;
  --danger: #ff3b54;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  --header-height: 132px;
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fb;
  --bg-soft: #eef2f8;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.94);
  --text: #101828;
  --text-soft: #344054;
  --text-muted: #667085;
  --border: rgba(0, 116, 217, 0.2);
  --border-strong: rgba(0, 116, 217, 0.55);
  --accent: #006fcf;
  --accent-strong: #0059a8;
  --success: #118a3b;
  --price: #079a32;
  --danger: #d92d43;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text-soft);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

body.menu-open {
  overflow: hidden;
}

button,
select,
input {
  font: inherit;
}

button,
a,
select,
input[type="range"] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  margin-top: 0;
}

a {
  color: var(--text);
  text-decoration: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--surface-glass);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-main-bar {
  width: min(100%, 1480px);
  min-width: 0;
  margin: 0 auto;
  padding: 10px 20px 8px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  align-items: center;
  gap: 12px;
}

.header-left-elements,
.top-bar-right-elements {
  display: flex;
  align-items: center;
}

.header-left-elements {
  justify-content: flex-start;
}

.top-bar-right-elements {
  justify-content: flex-end;
}

.header-logo-container {
  display: flex;
  align-items: center;
}

#logo,
.menu-header img {
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 15px color-mix(in srgb, var(--accent) 25%, transparent);
}

#logo {
  width: 44px;
  height: 44px;
}

.header-center-area {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.radio-title-row {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-name {
  min-width: 0;
  max-width: 650px;
  overflow: hidden;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text-muted) 35%, transparent);
  color: var(--text-muted);
  background: var(--surface);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-badge.is-live {
  color: var(--success);
  border-color: color-mix(in srgb, var(--success) 45%, transparent);
}

.live-badge.is-loading {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.live-badge.is-error {
  color: var(--danger);
  border-color: color-mix(in srgb, var(--danger) 45%, transparent);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.live-badge.is-live .live-dot,
.live-badge.is-loading .live-dot {
  animation: radio-pulse 1.35s ease-out infinite;
}

@keyframes radio-pulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
  }
  70% {
    box-shadow: 0 0 0 5px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.music-bar {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.radio-controls {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.control-btn,
.icon-button,
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.control-btn {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.72rem;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 18%, transparent);
}

.control-btn.play-control {
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
}

.control-btn:hover,
.icon-button:hover,
.menu-close:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.control-btn:active,
.icon-button:active,
.menu-close:active {
  transform: scale(0.94);
}

.station-select-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.station-select {
  width: clamp(150px, 24vw, 260px);
  min-width: 0;
  height: 34px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  text-overflow: ellipsis;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.volume-control input {
  width: 74px;
  accent-color: var(--accent);
  cursor: pointer;
}

.radio-message {
  min-height: 15px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.69rem;
  text-align: center;
}

.icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  font-size: 1.25rem;
}

.theme-toggle {
  font-size: 1.38rem;
}

.menu-hamburguesa {
  display: none;
}

.hamburger-lines {
  width: 20px;
  display: grid;
  gap: 4px;
}

.hamburger-lines span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.header-bottom-bar {
  width: 100%;
  padding: 8px 20px;
  border-top: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.header-nav {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.menu-pc {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  list-style: none;
}

.menu-pc a {
  position: relative;
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.menu-pc a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.menu-pc a:hover,
.menu-pc a.active {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}

.menu-pc a:hover::after,
.menu-pc a.active::after {
  transform: scaleX(1);
}

.menu-mobile-ul,
.menu-overlay {
  display: none;
}

#main-content-wrapper {
  width: 100%;
  min-width: 0;
  flex: 1 0 auto;
  padding-top: var(--header-height);
}

.content-section {
  display: none;
  width: min(100%, 1240px);
  min-width: 0;
  min-height: 65vh;
  margin: 0 auto;
  padding: 48px 20px 58px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 45%, transparent);
  scroll-margin-top: var(--header-height);
}

.content-section.is-active {
  display: block;
}

.productos-grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: stretch;
  justify-items: center;
  padding: 22px 10px;
}

.producto {
  width: 100%;
  min-width: 0;
  max-width: 265px;
  min-height: 370px;
  padding: 13px 13px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 48%, transparent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.producto:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.producto img {
  width: 220px;
  height: 220px;
  flex: 0 0 auto;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 21px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.producto:hover img {
  transform: scale(1.035);
  border-color: var(--border-strong);
}

.product-type {
  min-height: 1.2em;
  margin: 4px 0 3px;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-rating {
  margin: 4px 0 8px;
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.producto h2 {
  margin: 8px 0;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.25;
}

.precio {
  margin: auto 0 14px;
  padding-top: 10px;
  color: var(--price);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
}

.producto button {
  width: 94%;
  min-height: 43px;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #0a1623 0%, #03070d 100%);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}

body[data-theme="light"] .producto button {
  background: linear-gradient(180deg, #087ccf 0%, #0063ad 100%);
}

.producto button:hover {
  border-color: var(--text);
  filter: brightness(1.12);
  transform: scale(1.025);
}

.producto button:active {
  transform: scale(0.97);
}

.bio-section,
.bio-sectiones {
  width: min(100%, 820px);
  margin: 20px auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: left;
}

.bio-text {
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.75;
}

.bio-content h4,
.bio-contentes h3 {
  margin: 0;
}

.bio-content h4 a,
.bio-contentes h3 a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent-strong);
  font-size: 0.88rem;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.bio-content h4 a:hover,
.bio-contentes h3 a:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

footer {
  width: 100%;
  margin-top: auto;
  padding: 22px 16px calc(22px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface);
  text-align: center;
}

footer p {
  margin: 0;
}

.footer-whatsapp {
  padding: 8px 18px;
  border: 1px solid color-mix(in srgb, var(--success) 55%, transparent);
  border-radius: 999px;
  color: var(--success);
  font-weight: 800;
}

@media (max-width: 767px) {
  :root {
    --header-height: 120px;
  }

  .header-main-bar {
    padding: calc(7px + env(safe-area-inset-top)) 8px 7px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 5px;
  }

  .menu-hamburguesa {
    display: block;
  }

  .header-logo-container,
  .header-bottom-bar {
    display: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .header-center-area {
    gap: 3px;
  }

  .radio-title-row {
    gap: 5px;
  }

  .site-name {
    max-width: calc(100vw - 175px);
    font-size: 0.78rem;
  }

  .live-badge {
    padding: 2px 5px;
    font-size: 0.53rem;
  }

  .radio-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 29px 34px 29px minmax(105px, 1fr);
    gap: 5px;
  }

  .control-btn {
    width: 29px;
    height: 29px;
    font-size: 0.65rem;
  }

  .control-btn.play-control {
    width: 34px;
    height: 34px;
  }

  .station-select {
    width: 100%;
    height: 32px;
    padding-left: 8px;
    font-size: 0.72rem;
  }

  .volume-control {
    display: none;
  }

  .radio-message {
    font-size: 0.61rem;
  }

  .menu-mobile-ul {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1201;
    width: min(88vw, 340px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(14px + env(safe-area-inset-top)) 10px
      calc(20px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    list-style: none;
    background: var(--surface);
    box-shadow: 16px 0 38px rgba(0, 0, 0, 0.42);
    transform: translateX(-105%);
    visibility: hidden;
    transition:
      transform 0.28s ease,
      visibility 0.28s;
  }

  .menu-mobile-ul.show {
    transform: translateX(0);
    visibility: visible;
  }

  .menu-mobile-ul > li:not(.menu-header) {
    flex: 0 0 auto;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-soft);
  }

  .menu-mobile-ul > li:not(.menu-header) a {
    display: block;
    width: 100%;
    padding: 15px 14px;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .menu-mobile-ul > li:not(.menu-header) a.active {
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 9%, transparent);
  }

  .menu-header {
    min-height: 66px;
    margin: 0 0 4px;
    padding: 6px 2px 12px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
  }

  .menu-header img {
    width: 54px;
    height: 54px;
  }

  .menu-header div {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .menu-header strong {
    overflow: hidden;
    color: var(--text);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-header span {
    color: var(--text-muted);
    font-size: 0.72rem;
  }

  .menu-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 10px;
    font-size: 1.55rem;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    width: 100%;
    height: 100%;
    padding: 0;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s;
  }

  .menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .content-section {
    padding: 24px 8px 38px;
    scroll-margin-top: var(--header-height);
  }

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

  .producto {
    max-width: none;
    min-height: 310px;
    padding: 13px 7px 12px;
    border-radius: 15px;
  }

  .producto img {
    width: clamp(74px, 24vw, 96px);
    height: clamp(74px, 24vw, 96px);
    margin-bottom: 10px;
    border-radius: 15px;
  }

  .product-type {
    min-height: 2.2em;
    margin: 2px 0;
    font-size: clamp(0.56rem, 2.2vw, 0.68rem);
    line-height: 1.1;
  }

  .product-rating {
    margin: 3px 0 5px;
    font-size: clamp(0.68rem, 2.5vw, 0.8rem);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .producto h2 {
    margin: 6px 0;
    font-size: clamp(0.82rem, 3.1vw, 1rem);
    line-height: 1.18;
  }

  .precio {
    margin-bottom: 10px;
    padding-top: 7px;
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    white-space: nowrap;
  }

  .producto button {
    width: 100%;
    min-height: 38px;
    padding: 8px 5px;
    font-size: clamp(0.64rem, 2.5vw, 0.77rem);
    letter-spacing: 0.035em;
  }

  .bio-section,
  .bio-sectiones {
    margin: 8px auto;
    padding: 23px 18px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .productos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .productos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .producto {
    padding-inline: 14px;
  }
}

@media (max-width: 365px) {
  .header-main-bar {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    padding-inline: 5px;
  }

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

  .site-name {
    max-width: 122px;
  }

  .producto {
    min-height: 292px;
  }
}

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


/* =================================
   SOPORTE PROFESIONAL
================================= */

.support-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 920px);
  margin: 8px auto;
  padding: clamp(26px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(0, 174, 255, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(0, 153, 255, 0.17),
      transparent 34%
    ),
    linear-gradient(145deg, #0c1625 0%, #08101c 55%, #07121a 100%);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.support-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -115px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.08);
}

body[data-theme="light"] .support-card {
  border-color: rgba(0, 116, 217, 0.24);
  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(0, 116, 217, 0.11),
      transparent 36%
    ),
    linear-gradient(145deg, #ffffff 0%, #f7faff 58%, #f3fbf7 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.support-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 174, 255, 0.34);
  border-radius: 17px;
  color: #36b6ff;
  background: linear-gradient(
    145deg,
    rgba(0, 153, 255, 0.18),
    rgba(0, 116, 217, 0.08)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.support-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.support-kicker {
  margin: 0 0 5px;
  color: #58c2ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.support-kicker span {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.13);
}

.support-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.support-intro {
  max-width: 760px;
  margin: 25px 0 22px;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.72;
}

.support-services {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.support-services li {
  min-width: 0;
  padding: 12px 13px 12px 39px;
  position: relative;
  border: 1px solid rgba(0, 153, 255, 0.16);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(0, 153, 255, 0.055);
  font-size: 0.79rem;
  font-weight: 750;
  line-height: 1.25;
}

.support-services li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120b;
  background: #25d366;
  font-size: 0.7rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.support-contact-box {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 17px;
  background: rgba(2, 8, 15, 0.46);
}

body[data-theme="light"] .support-contact-box {
  background: rgba(255, 255, 255, 0.7);
}

.support-contact-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-contact-copy > span {
  color: #25d366;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.support-contact-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.support-contact-copy small {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.whatsapp-support-button {
  min-height: 50px;
  flex: 0 0 auto;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #010430 0%, #f10202 100%);
  box-shadow: 0 12px 25px rgba(4, 231, 193, 0.349);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-support-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.whatsapp-support-button:hover {
  color: #ffffff;
  filter: brightness(1.07);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}

.whatsapp-support-button:active {
  transform: translateY(0) scale(0.98);
}

.support-arrow {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.whatsapp-support-button:hover .support-arrow {
  transform: translateX(3px);
}

/* Adaptación para celulares */

@media (max-width: 767px) {
  .support-card {
    margin: 0 auto;
    padding: 23px 16px 16px;
    border-radius: 19px;
  }

  .support-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .support-mark {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    border-radius: 14px;
  }

  .support-mark svg {
    width: 25px;
    height: 25px;
  }

  .support-kicker {
    margin-top: 1px;
    font-size: 0.59rem;
  }

  .support-heading h2 {
    font-size: clamp(1.23rem, 6vw, 1.65rem);
  }

  .support-intro {
    margin: 20px 0 18px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .support-services {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .support-services li {
    padding-block: 11px;
  }

  .support-contact-box {
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .whatsapp-support-button {
    width: 100%;
    min-height: 49px;
  }
}




















/* =================================
   SECCIÓN NOSOTROS
================================= */

.about-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 920px);
  margin: 8px auto;
  padding: clamp(26px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(98, 174, 255, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 96% 2%,
      rgba(101, 89, 255, 0.17),
      transparent 35%
    ),
    radial-gradient(
      circle at 3% 100%,
      rgba(0, 153, 255, 0.1),
      transparent 32%
    ),
    linear-gradient(145deg, #0c1625 0%, #09111e 55%, #0b1020 100%);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -125px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(114, 91, 255, 0.07);
}

body[data-theme="light"] .about-card {
  border-color: rgba(80, 96, 210, 0.22);
  background:
    radial-gradient(
      circle at 96% 2%,
      rgba(101, 89, 255, 0.1),
      transparent 36%
    ),
    linear-gradient(145deg, #ffffff 0%, #f8faff 58%, #f6f5ff 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.about-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  padding: 3px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 174, 255, 0.42);
  border-radius: 21px;
  background: linear-gradient(
    145deg,
    rgba(0, 153, 255, 0.18),
    rgba(101, 89, 255, 0.1)
  );
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-logo img {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: 17px;
}

.about-kicker {
  margin: 0 0 5px;
  color: #65c5ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.about-kicker span {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #806dff;
  box-shadow: 0 0 0 4px rgba(128, 109, 255, 0.14);
}

.about-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.about-intro {
  max-width: 790px;
  margin: 27px 0 25px;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.75;
}

.about-intro strong {
  color: var(--text);
  font-weight: 850;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.about-value {
  position: relative;
  min-width: 0;
  min-height: 145px;
  padding: 18px 17px;
  overflow: hidden;
  border: 1px solid rgba(0, 153, 255, 0.17);
  border-radius: 15px;
  background: rgba(0, 153, 255, 0.05);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.about-value:hover {
  border-color: rgba(0, 174, 255, 0.38);
  background: rgba(0, 153, 255, 0.09);
  transform: translateY(-2px);
}

.about-number {
  display: block;
  margin-bottom: 10px;
  color: #58c2ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-value h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 0.98rem;
}

.about-value p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.about-purpose {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(128, 109, 255, 0.24);
  border-radius: 17px;
  background: rgba(101, 89, 255, 0.07);
}

body[data-theme="light"] .about-purpose {
  background: rgba(101, 89, 255, 0.055);
}

.about-purpose-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #9b8cff;
  background: rgba(128, 109, 255, 0.13);
}

.about-purpose-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.about-purpose-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-purpose-copy span {
  color: #9b8cff;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-purpose-copy strong {
  color: var(--text);
  font-size: clamp(0.88rem, 2vw, 1rem);
  line-height: 1.4;
}

/* Adaptación para celulares */

@media (max-width: 767px) {
  .about-card {
    margin: 0 auto;
    padding: 23px 16px 16px;
    border-radius: 19px;
  }

  .about-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .about-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 15px;
  }

  .about-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .about-kicker {
    margin-top: 1px;
    font-size: 0.59rem;
  }

  .about-heading h2 {
    font-size: clamp(1.2rem, 5.7vw, 1.6rem);
  }

  .about-intro {
    margin: 20px 0 18px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .about-value {
    min-height: 0;
    padding: 14px;
  }

  .about-number {
    margin-bottom: 5px;
  }

  .about-purpose {
    padding: 14px;
    align-items: flex-start;
  }

  .about-purpose-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .about-purpose-icon svg {
    width: 22px;
    height: 22px;
  }
}





/* =================================
   PROGRAMA DE REVENDEDORES
================================= */

.reseller-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 980px);
  margin: 8px auto;
  padding: clamp(26px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(0, 174, 255, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 96% 2%,
      rgba(37, 211, 102, 0.12),
      transparent 31%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(0, 153, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(145deg, #0c1625 0%, #08111d 52%, #07151a 100%);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reseller-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -135px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.06);
}

body[data-theme="light"] .reseller-card {
  border-color: rgba(0, 116, 217, 0.23);
  background:
    radial-gradient(
      circle at 96% 2%,
      rgba(37, 211, 102, 0.09),
      transparent 32%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(0, 116, 217, 0.08),
      transparent 35%
    ),
    linear-gradient(145deg, #ffffff 0%, #f7faff 55%, #f4fbf7 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.reseller-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reseller-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 174, 255, 0.36);
  border-radius: 17px;
  color: #43bbff;
  background: linear-gradient(
    145deg,
    rgba(0, 153, 255, 0.18),
    rgba(37, 211, 102, 0.08)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reseller-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reseller-kicker {
  margin: 0 0 5px;
  color: #58c2ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.reseller-kicker span {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.13);
}

.reseller-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.reseller-intro {
  max-width: 780px;
  margin: 25px 0 28px;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.72;
}

.reseller-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  align-items: stretch;
  gap: 16px;
}

.reseller-information {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.reseller-rule {
  position: relative;
  min-height: 190px;
  padding: 24px 80px 24px 21px;
  overflow: hidden;
  border: 1px solid rgba(37, 211, 102, 0.23);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(37, 211, 102, 0.09),
      rgba(0, 153, 255, 0.045)
    );
}

.reseller-rule::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #25d366, #0099ff);
}

.reseller-rule::after {
  content: "3+";
  position: absolute;
  top: 21px;
  right: 18px;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 15px;
  color: #25d366;
  background: rgba(37, 211, 102, 0.09);
  font-size: 1rem;
  font-weight: 950;
}

.reseller-rule-label {
  display: block;
  margin-bottom: 10px;
  color: #25d366;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.reseller-rule strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  line-height: 1.35;
}

.reseller-rule p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.reseller-benefits {
  margin: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 17px;
  background: rgba(0, 153, 255, 0.04);
  list-style: none;
}

.reseller-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.reseller-benefits li span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07120b;
  background: #25d366;
  font-size: 0.68rem;
  font-weight: 950;
}

.reseller-form {
  min-width: 0;
  padding: 23px;
  border: 1px solid rgba(0, 153, 255, 0.18);
  border-radius: 19px;
  background: rgba(2, 8, 15, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body[data-theme="light"] .reseller-form {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055);
}

.reseller-form-heading {
  margin-bottom: 20px;
}

.reseller-form-heading > span {
  display: block;
  margin-bottom: 4px;
  color: #58c2ff;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.reseller-form-heading h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1.18rem;
}

.reseller-form-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

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

.reseller-phone-field {
  grid-column: 1 / -1;
}

.reseller-field {
  min-width: 0;
}

.reseller-field label {
  display: block;
  margin: 0 0 6px;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.reseller-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

body[data-theme="light"] .reseller-field input {
  background: #ffffff;
}

.reseller-field input::placeholder {
  color: var(--text-muted);
  opacity: 0.72;
}

.reseller-field input:hover {
  border-color: rgba(0, 174, 255, 0.4);
}

.reseller-field input:focus {
  outline: none;
  border-color: #0099ff;
  background: rgba(0, 153, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.11);
}

.reseller-phone-input {
  position: relative;
}

.reseller-phone-input > span {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  color: #25d366;
  font-size: 1rem;
  font-weight: 900;
  transform: translateY(-50%);
  pointer-events: none;
}

.reseller-phone-input input {
  padding-left: 32px;
}

.reseller-condition {
  margin-top: 15px;
  padding: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(37, 211, 102, 0.16);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(37, 211, 102, 0.045);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.45;
}

.reseller-condition input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: #25d366;
  cursor: pointer;
}

.reseller-condition strong {
  color: var(--text);
}

.reseller-form-message {
  min-height: 19px;
  margin: 9px 0 7px;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.reseller-form-message.is-error {
  color: #ff6678;
}

.reseller-form-message.is-success {
  color: #25d366;
}

.reseller-submit {
  width: 100%;
  min-height: 50px;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #0099ff 0%, #0071d1 100%);
  box-shadow: 0 12px 25px rgba(0, 153, 255, 0.19);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.reseller-submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 15px 30px rgba(0, 153, 255, 0.27);
  transform: translateY(-2px);
}

.reseller-submit:active {
  transform: translateY(0) scale(0.985);
}

.reseller-submit span:last-child {
  font-size: 1.15rem;
}

.reseller-prices-link {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 13px;
  color: #25d366;
  background: rgba(37, 211, 102, 0.055);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.reseller-prices-link:hover {
  color: #ffffff;
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.18);
  transform: translateY(-1px);
}

body[data-theme="light"] .reseller-prices-link:hover {
  color: #08752f;
}

.reseller-privacy {
  display: block;
  margin-top: 11px;
  color: var(--text-muted);
  font-size: 0.65rem;
  line-height: 1.45;
  text-align: center;
}

/* Tabletas */

@media (max-width: 850px) {
  .reseller-layout {
    grid-template-columns: 1fr;
  }

  .reseller-rule {
    min-height: 0;
  }
}

/* Celulares */

@media (max-width: 767px) {
  .reseller-card {
    margin: 0 auto;
    padding: 23px 16px 16px;
    border-radius: 19px;
  }

  .reseller-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .reseller-mark {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    border-radius: 14px;
  }

  .reseller-mark svg {
    width: 25px;
    height: 25px;
  }

  .reseller-kicker {
    margin-top: 1px;
    font-size: 0.58rem;
  }

  .reseller-heading h2 {
    font-size: clamp(1.2rem, 5.8vw, 1.65rem);
  }

  .reseller-intro {
    margin: 20px 0 18px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .reseller-rule {
    padding: 20px 71px 20px 17px;
    border-radius: 15px;
  }

  .reseller-rule::after {
    top: 17px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .reseller-form {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .reseller-fields {
    grid-template-columns: 1fr;
  }

  .reseller-phone-field {
    grid-column: auto;
  }

  .reseller-field input {
    height: 47px;
    font-size: 16px;
  }

  .reseller-submit,
  .reseller-prices-link {
    width: 100%;
  }
}

@media (max-width: 365px) {
  .reseller-rule {
    padding-right: 17px;
    padding-top: 78px;
  }

  .reseller-rule::after {
    left: 17px;
    right: auto;
  }
}

.reseller-field input[aria-invalid="true"] {
  border-color: #ff5268;
  background: rgba(255, 82, 104, 0.055);
  box-shadow: 0 0 0 4px rgba(255, 82, 104, 0.1);
}





.reseller-phone-input {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 8px;
}

.reseller-country-select {
  width: 100%;
  height: 46px;
  padding: 0 30px 0 11px;
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.reseller-country-select:hover {
  border-color: rgba(0, 174, 255, 0.4);
}

.reseller-country-select:focus {
  outline: none;
  border-color: #0099ff;
  background: rgba(0, 153, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.11);
}

.reseller-country-select option {
  color: var(--text);
  background: var(--surface);
}

body[data-theme="light"] .reseller-country-select {
  background: #ffffff;
}

.reseller-phone-input input {
  min-width: 0;
  padding-left: 13px;
}

@media (max-width: 365px) {
  .reseller-phone-input {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 6px;
  }

  .reseller-country-select {
    padding-left: 8px;
    font-size: 0.84rem;
  }
}