.swz-page {
  --swz-bg: #050816;
  --swz-bg-2: #0a0d25;
  --swz-card: rgba(13, 17, 48, 0.88);
  --swz-text: #f8faff;
  --swz-muted: #aeb8d6;
  --swz-cyan: #20e6ff;
  --swz-pink: #f34bd8;
  --swz-purple: #8b4dff;
  --swz-green: #1affb0;

  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--swz-text);
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--swz-bg);
  isolation: isolate;
}

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

.swz-container {
  position: relative;
  z-index: 2;
  width: min(1250px, calc(100% - 30px));
  margin: 0 auto;
}

/* =========================================================
       DECORACION GENERAL
    ========================================================== */

.swz-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.swz-bubbles span {
  position: absolute;
  bottom: -100px;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.2),
    rgba(100, 100, 255, 0.05) 60%,
    transparent
  );
  box-shadow: 0 0 25px rgba(150, 90, 255, 0.12);
  animation: swzBubbleFloat 20s linear infinite;
}

.swz-bubbles span:nth-child(1) {
  left: 5%;
  width: 45px;
  height: 45px;
  animation-duration: 18s;
}

.swz-bubbles span:nth-child(2) {
  left: 18%;
  width: 18px;
  height: 18px;
  animation-duration: 25s;
  animation-delay: 3s;
}

.swz-bubbles span:nth-child(3) {
  left: 32%;
  width: 65px;
  height: 65px;
  animation-duration: 28s;
  animation-delay: 5s;
}

.swz-bubbles span:nth-child(4) {
  left: 48%;
  width: 25px;
  height: 25px;
  animation-duration: 19s;
  animation-delay: 1s;
}

.swz-bubbles span:nth-child(5) {
  left: 65%;
  width: 48px;
  height: 48px;
  animation-duration: 24s;
  animation-delay: 6s;
}

.swz-bubbles span:nth-child(6) {
  left: 78%;
  width: 20px;
  height: 20px;
  animation-duration: 21s;
  animation-delay: 2s;
}

.swz-bubbles span:nth-child(7) {
  left: 90%;
  width: 70px;
  height: 70px;
  animation-duration: 30s;
  animation-delay: 8s;
}

.swz-bubbles span:nth-child(8) {
  left: 55%;
  width: 15px;
  height: 15px;
  animation-duration: 22s;
  animation-delay: 10s;
}

@keyframes swzBubbleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.55;
  }

  50% {
    transform: translateY(-50vh) translateX(35px);
  }

  100% {
    transform: translateY(-115vh) translateX(-25px);
    opacity: 0;
  }
}

/* =========================================================
       PORTADA PROMOCIONAL
    ========================================================== */

.swz-promo {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(22, 4, 11, 0.96) 0%,
      rgba(30, 7, 17, 0.78) 48%,
      rgba(78, 8, 25, 0.156) 100%
    ),
    url("https://img.magnific.com/fotos-premium/diseno-futurista-codigo-qr-brillante-fondo-digital-cuadricula-resaltes-azules-neon-fondo-papel-pared-movil_754208-6738.jpg?semt=ais_hybrid&w=740&q=80");

  background-size: cover;
  background-position: center;
}

.swz-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(243, 75, 216, 0.3),
      transparent 28%
    ),
    radial-gradient(circle at 85% 75%, rgba(255, 32, 121, 0.2), transparent 28%);
  pointer-events: none;
}

.swz-promo-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  padding: 85px 0;
}

.swz-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  backdrop-filter: blur(12px);
}

.swz-promo-badge i {
  color: #ffd95a;
}

.swz-promo h1 {
  margin: 0;
  max-width: 750px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -2.5px;
  font-weight: 800;
}

.swz-promo h1 span {
  display: block;
  background: linear-gradient(90deg, #ffe36e, #ff9d5c, #ff55d9, #6deaff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swz-promo-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: #d6dcf3;
  font-size: 1rem;
  line-height: 1.8;
}

.swz-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.swz-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.swz-promo-btn-primary {
  background: linear-gradient(100deg, #ffcb52, #ff55d9);
  color: #170b20;
  box-shadow: 0 12px 35px rgba(255, 75, 216, 0.2);
}

.swz-promo-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(10px);
}

.swz-promo-btn:hover {
  transform: translateY(-3px);
}

.swz-promo-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.swz-promo-info span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #bfc9e8;
  font-size: 0.64rem;
}

/* =========================================================
       TITULOS DE SECCION
    ========================================================== */

.swz-section-title {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.swz-section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--swz-cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.swz-section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -1.3px;
  font-weight: 800;
}

.swz-section-title h2 span {
  background: linear-gradient(90deg, #f27cff, #a8a0ff, #26e8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swz-section-title p {
  margin: 17px auto 0;
  color: var(--swz-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* =========================================================
       SELECTOR DE QR
    ========================================================== */

.swz-qr-section {
  position: relative;
  padding: 85px 0 65px;
  background:
    radial-gradient(
      ellipse at 10% 20%,
      rgba(139, 77, 255, 0.15),
      transparent 38%
    ),
    linear-gradient(180deg, #080a1e, #060817);
}

.swz-selected-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 35px auto 22px;
  padding: 14px 17px;
  border: 1px solid rgba(32, 230, 255, 0.18);
  border-radius: 16px;
  background: rgba(32, 230, 255, 0.055);
  box-shadow: inset 0 0 30px rgba(32, 230, 255, 0.025);
}

.swz-selected-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.swz-selected-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(32, 230, 255, 0.1);
  color: var(--swz-cyan);
}

.swz-selected-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.swz-selected-text small {
  color: #8390b4;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.swz-selected-text strong {
  color: #fff;
  font-size: 0.76rem;
}

.swz-selected-status {
  color: #8491b6;
  font-size: 0.62rem;
  text-align: right;
}

.swz-qr-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.swz-qr-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(137, 149, 206, 0.16);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(19, 23, 57, 0.96),
    rgba(7, 11, 31, 0.98)
  );
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.swz-qr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 230, 255, 0.45);
}

.swz-qr-card.swz-selected {
  border-color: var(--swz-green);
  box-shadow:
    0 0 0 1px rgba(26, 255, 176, 0.25),
    0 15px 45px rgba(26, 255, 176, 0.08);
}

.swz-qr-card.swz-selected::before {
  content: "SELECCIONADO";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 5px 7px;
  border-radius: 10px;
  background: rgba(26, 255, 176, 0.92);
  color: #04241a;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.swz-qr-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 20px;
  background: radial-gradient(
    circle at center,
    rgba(139, 77, 255, 0.2),
    transparent 65%
  );
}

.swz-qr-image-select {
  width: 125px;
  height: 125px;
  padding: 8px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.swz-qr-image-select:hover {
  transform: scale(1.04);
}

.swz-qr-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.swz-qr-data {
  padding: 16px;
}

.swz-qr-data small {
  display: block;
  margin-bottom: 5px;
  color: var(--swz-cyan);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.swz-qr-data h3 {
  margin: 0;
  font-size: 0.9rem;
}

.swz-qr-data p {
  margin: 7px 0 14px;
  color: #8f9abb;
  font-size: 0.6rem;
  line-height: 1.5;
}

.swz-select-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(32, 230, 255, 0.28);
  border-radius: 20px;
  background: rgba(32, 230, 255, 0.06);
  color: #dffaff;
  font: inherit;
  font-size: 0.61rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.swz-select-qr:hover {
  background: rgba(32, 230, 255, 0.14);
}

.swz-qr-card.swz-selected .swz-select-qr {
  border-color: rgba(26, 255, 176, 0.45);
  background: rgba(26, 255, 176, 0.09);
  color: #8dffd8;
}

/* =========================================================
       CATALOGO
    ========================================================== */

.swz-catalog {
  position: relative;
  padding: 75px 0 90px;
  background:
    radial-gradient(
      ellipse at 100% 20%,
      rgba(0, 190, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(135deg, #050816, #101035 50%, #070b24);
}

.swz-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0 35px;
}

.swz-filter-btn {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(32, 230, 255, 0.3);
  border-radius: 25px;
  background: rgba(10, 17, 49, 0.7);
  color: #dce8ff;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.swz-filter-btn:hover,
.swz-filter-btn.active {
  border-color: transparent;
  background: linear-gradient(100deg, #f04bd9, #814dff);
  color: #fff;
  transform: translateY(-2px);
}

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

.swz-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(48, 201, 255, 0.25);
  border-radius: 23px;
  background: linear-gradient(
    145deg,
    rgba(27, 20, 73, 0.95),
    rgba(4, 13, 39, 0.98)
  );
  box-shadow: 0 15px 55px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.swz-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 124, 255, 0.65);
}

/* =========================================================
       PREVIEW CELULAR
    ========================================================== */

.swz-product-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 310px;
  padding: 25px 15px 22px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(105, 55, 190, 0.35),
    transparent 70%
  );
}

.swz-phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.swz-phone {
  position: relative;
  width: 145px;
  height: 265px;
  padding: 6px;
  flex-shrink: 0;
  border: 2px solid #a5a0ff;
  border-radius: 24px;
  background: #090b18;
  box-shadow:
    0 0 0 2px rgba(32, 230, 255, 0.15),
    0 0 30px rgba(126, 77, 255, 0.35);
}

.swz-phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 4;
  width: 45px;
  height: 13px;
  border-radius: 12px;
  background: #03040c;
  transform: translateX(-50%);
}

.swz-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #11152b;
}

.swz-phone-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.swz-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 65%);
  color: #fff;
  text-align: center;
  transition: opacity 0.25s ease;
}

.swz-video-overlay span {
  max-width: 110px;
  font-size: 0.55rem;
  line-height: 1.4;
}

.swz-play-btn {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.swz-phone-home {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 38px;
  height: 3px;
  border-radius: 10px;
  background: #c5c8dc;
  transform: translateX(-50%);
}

.swz-phone-caption {
  color: #9ca9cc;
  font-size: 0.55rem;
}

/* =========================================================
       QR DE TARJETA
    ========================================================== */

.swz-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.swz-qr-label {
  max-width: 90px;
  color: #bceaff;
  font-size: 0.53rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.6px;
}

.swz-qr-image {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  padding: 7px;
  border: 1px solid #d55aff;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 0 25px rgba(213, 90, 255, 0.25);
}

.swz-qr-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swz-qr-caption {
  max-width: 100px;
  color: #d3c8f5;
  font-size: 0.58rem;
  line-height: 1.4;
}

/* =========================================================
       CONTENIDO DEL PRODUCTO
    ========================================================== */

.swz-product-content {
  padding: 22px 22px 24px;
}

.swz-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.swz-product-category {
  color: var(--swz-cyan);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.swz-product-code {
  padding: 4px 9px;
  border: 1px solid rgba(150, 130, 255, 0.5);
  border-radius: 20px;
  background: rgba(115, 76, 255, 0.15);
  color: #d7cfff;
  font-size: 0.6rem;
  font-weight: 800;
}

.swz-product-content h2 {
  margin: 0 0 9px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.swz-product-content p {
  min-height: 100px;
  margin: 0;
  color: var(--swz-muted);
  font-size: 0.73rem;
  line-height: 1.75;
}

.swz-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 17px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(151, 162, 212, 0.13);
}

.swz-features span {
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #d2dafa;
  font-size: 0.58rem;
}

/* =========================================================
       ACCIONES DEL PRODUCTO
    ========================================================== */

.swz-product-actions {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 9px;
  padding-top: 15px;
  border-top: 1px solid rgba(151, 162, 212, 0.13);
}

.swz-video-large-btn,
.swz-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 10px;
  border-radius: 25px;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.swz-video-large-btn {
  border: 1px solid rgba(155, 139, 255, 0.45);
  background: rgba(139, 77, 255, 0.09);
  color: #e5ddff;
}

.swz-video-large-btn:hover {
  border-color: #a995ff;
  background: rgba(139, 77, 255, 0.18);
  transform: translateY(-2px);
}

.swz-whatsapp-btn {
  border: 0;
  background: linear-gradient(100deg, #1affb0, #20e6ff);
  color: #041b24;
  box-shadow: 0 8px 25px rgba(26, 255, 176, 0.08);
}

.swz-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 255, 176, 0.18);
}

/* =========================================================
       MODAL VIDEO
    ========================================================== */

.swz-video-modal,
.swz-image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(1, 3, 12, 0.88);
  backdrop-filter: blur(14px);
}

.swz-video-modal.swz-open,
.swz-image-modal.swz-open {
  display: flex;
  animation: swzModalIn 0.22s ease;
}

@keyframes swzModalIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.swz-modal-box {
  position: relative;
  width: min(850px, 100%);
  max-height: 90vh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: #050816;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.55);
}

.swz-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 35, 0.96);
}

.swz-modal-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.swz-modal-title small {
  color: var(--swz-cyan);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.swz-modal-title strong {
  color: #fff;
  font-size: 0.82rem;
}

.swz-modal-close {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.swz-modal-close:hover {
  background: rgba(243, 75, 216, 0.18);
  transform: rotate(90deg);
}

.swz-modal-video-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(90vh - 70px);
  padding: 20px;
  background: radial-gradient(
    circle at center,
    rgba(139, 77, 255, 0.13),
    transparent 60%
  );
}

.swz-modal-video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 110px);
  border-radius: 14px;
  background: #000;
  object-fit: contain;
}

/* =========================================================
       MODAL QR
    ========================================================== */

.swz-image-modal .swz-modal-box {
  width: min(500px, 100%);
}

.swz-modal-image-wrap {
  display: grid;
  place-items: center;
  padding: 35px;
  background: radial-gradient(
    circle at center,
    rgba(139, 77, 255, 0.2),
    transparent 65%
  );
}

.swz-modal-image {
  display: block;
  width: min(360px, 100%);
  max-height: 65vh;
  padding: 15px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
}

/* =========================================================
       AVISO DE SELECCION
    ========================================================== */

.swz-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 210, 92, 0.3);
  border-radius: 14px;
  background: rgba(18, 15, 28, 0.95);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1.45;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.swz-toast.swz-show {
  opacity: 1;
  transform: translateY(0);
}

.swz-toast i {
  color: #ffd35c;
  font-size: 1rem;
}

/* =========================================================
       SIN RESULTADOS
    ========================================================== */

.swz-no-results {
  padding: 55px 20px;
  text-align: center;
}

.swz-no-results h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.swz-no-results p {
  margin: 0;
  color: var(--swz-muted);
  font-size: 0.8rem;
}

/* =========================================================
       PIE
    ========================================================== */

.swz-details-footer {
  padding: 65px 20px 80px;
  text-align: center;
}

.swz-footer-symbol {
  margin-bottom: 13px;
  color: #f56de3;
  font-size: 2.4rem;
}

.swz-details-footer h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

.swz-details-footer h2 span {
  color: var(--swz-green);
}

.swz-details-footer p {
  margin: 13px 0 23px;
  color: #d1c6f0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.swz-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid rgba(32, 230, 255, 0.65);
  border-radius: 30px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.swz-footer-whatsapp:hover {
  background: rgba(32, 230, 255, 0.1);
  transform: translateY(-2px);
}

/* =========================================================
       RESPONSIVE TABLET
    ========================================================== */

@media (max-width: 1050px) {
  .swz-qr-list {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .swz-qr-card {
    min-width: 145px;
    scroll-snap-align: start;
  }

  .swz-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 850px;
    margin: 0 auto;
  }
}

/* =========================================================
       RESPONSIVE MOVIL
    ========================================================== */

@media (max-width: 680px) {
  .swz-container {
    width: min(100% - 22px, 1250px);
  }

  .swz-promo {
    min-height: 570px;
    background-position: 60% center;
  }

  .swz-promo-content {
    padding: 80px 0 60px;
  }

  .swz-promo h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    letter-spacing: -1.6px;
  }

  .swz-promo-text {
    font-size: 0.82rem;
  }

  .swz-promo-actions {
    flex-direction: column;
  }

  .swz-promo-btn {
    width: 100%;
  }

  .swz-promo-info {
    gap: 7px;
  }

  .swz-promo-info span {
    font-size: 0.55rem;
  }

  .swz-qr-section {
    padding: 65px 0 50px;
  }

  .swz-section-title h2 {
    font-size: 2rem;
  }

  .swz-section-title p {
    font-size: 0.76rem;
  }

  .swz-selected-banner {
    align-items: flex-start;
  }

  .swz-selected-status {
    max-width: 100px;
  }

  .swz-qr-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: thin;
  }

  .swz-qr-card {
    min-width: 165px;
    flex: 0 0 165px;
  }

  .swz-qr-visual {
    min-height: 165px;
  }

  .swz-qr-image-select {
    width: 112px;
    height: 112px;
  }

  .swz-catalog {
    padding: 60px 0 70px;
  }

  .swz-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 3px 2px 10px;
  }

  .swz-filter-btn {
    flex: 0 0 auto;
  }

  .swz-products-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .swz-product-preview {
    min-height: 300px;
  }

  .swz-phone {
    width: 150px;
    height: 275px;
  }

  .swz-qr-image {
    width: 118px;
    height: 118px;
  }

  .swz-product-content {
    padding: 21px 18px 22px;
  }

  .swz-product-content h2 {
    font-size: 1.4rem;
  }

  .swz-product-content p {
    min-height: auto;
  }

  .swz-product-actions {
    grid-template-columns: 1fr;
  }

  .swz-video-large-btn,
  .swz-whatsapp-btn {
    min-height: 49px;
  }

  .swz-modal-video-wrap {
    padding: 12px;
  }

  .swz-modal-box {
    border-radius: 17px;
  }

  .swz-modal-image-wrap {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .swz-product-preview {
    gap: 9px;
    padding: 20px 8px;
  }

  .swz-phone {
    width: 132px;
    height: 240px;
  }

  .swz-qr-image {
    width: 100px;
    height: 100px;
  }

  .swz-qr-label,
  .swz-qr-caption {
    font-size: 0.5rem;
  }
}

/* =========================================================
       REDUCIR ANIMACIONES
    ========================================================== */

@media (prefers-reduced-motion: reduce) {
  .swz-bubbles span,
  .swz-product-card,
  .swz-filter-btn,
  .swz-promo-btn,
  .swz-qr-card,
  .swz-select-qr,
  .swz-whatsapp-btn,
  .swz-video-large-btn {
    animation: none !important;
    transition: none !important;
  }
}

/* BLOQUEAR SCROLL CUANDO HAY MODAL */
body.swz-modal-active {
  overflow: hidden;
}
