/** Shopify CDN: Minification failed

Line 36:0 All "@import" rules must come first
Line 180:0 All "@import" rules must come first
Line 219:0 All "@import" rules must come first
Line 476:0 All "@import" rules must come first
Line 571:0 All "@import" rules must come first
Line 686:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.header-localization {
    max-height: 34px;
  }
  .utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999999 !important;
  }
  .utility-bar__grid.utility-bar__grid--3-col {
    padding: 0 2% !important;
    margin: 0 0 !important;
  }
  .page-width {
    max-width: 100% !important;
    width: 100% !important;
  }
  #AnnouncementLanguageLabel {
    font-size: 12px;
    font-weight: 400;
  }
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
  font-family: 'Rubik', sans-serif !important;
}

.custom-footer {
  background-color: #193d52;
  color: #e5e5e5;
  width: 100%;
  padding: 8rem 2rem 2rem;
}

.footer-icons-row p,
.footer-column h4,
.footer-column a,
.footer-copy {
  text-transform: uppercase;
}

/* --- Primera fila --- */
.footer-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
  text-align: center;
  margin-bottom: 8rem;
}

.footer-icon-item i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-icon-item p {
  font-size: 0.9rem;
  color: white;
  font-weight: 300;
  margin: 0;
}

/* --- Segunda fila: columnas de enlaces --- */
.footer-links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;

  width: 100%;
  max-width: 75%;
  margin: 0 auto;
}

.icon-extra-text {
  color: white;
  margin-top: 0.5rem;
}

.icon-subtitle {
  font-size: 0.85rem;
  color: white;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.icon-info {
  font-size: 0.75rem;
  color: white;
  font-weight: 300;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.icon-info:hover {
  color: #fff;
}

.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 650;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: white;
  font-size: 9px;
  font-weight: 50;
  text-decoration: none;
  white-space: nowrap;
}

.footer-column li {
    line-height: 1;
}

/* --- Tercera fila --- */
.footer-bottom {
  text-align: center;
}

.footer-logo {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 auto 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: white;
  font-weight: 300;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-links-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-icons-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-links-row {
    grid-template-columns: 1fr;
  }
  .footer-logo {
    width: 100%;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
  font-family: 'Rubik', sans-serif !important;
}

.full-width-hero {
  width: 100vw;
  height: 87.5vh; /* 95% de la altura de la ventana */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  text-align: center;
}

.hero-button {
  background-color: rgba(0, 0, 0, 0.6); /* gris oscuro semitransparente */
  color: #fff;
  padding: 1.5rem 3rem; /* más grande */
  text-decoration: none;
  font-weight: 700; /* tipo título */
  font-size: 1.5rem; /* tamaño mediano/grande */
  text-transform: uppercase; /* mayúsculas */
  letter-spacing: 2px; /* separación entre letras */
  border: 2px solid #fff; /* borde blanco que se note */
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-button:hover {
  background-color: #ff69b4; /* rosa */
  color: #fff;
}
@import url('https://fonts.googleapis.com/css2?family=Zen+Antique+Soft&display=swap');

/* === SECCIÓN GENERAL === */
.under-construction-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #193D52;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.05);
  font-family: 'Zen Antique Soft', serif; /* 🔥 Fuente personalizada */
}

/* === LOGO === */
.uc-logo {
  width: 750px;
  height: auto;
  margin-bottom: 1.5rem; 
  animation: fadeInDown 1s ease forwards;
}

/* === TEXTO PRINCIPAL === */
.uc-text {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease forwards;
}

/* === FORMULARIO === */
.newsletter-form {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
  animation: fadeInUp 1.8s ease forwards;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 450px;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}

.input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 1rem;
  background: transparent;
  padding: 1.2rem;
  font-size: 1.1rem;
  color: #fff; /* 🔥 Texto del input blanco */
  outline: none;
  transition: all 0.2s ease;
}

.input::placeholder {
  color: rgba(255,255,255,0.7); /* 🔥 Placeholder blanco tenue */
}

.input:focus {
  border-color: #fff;
  background-color: rgba(255,255,255,0.05);
}

.user-label {
  position: absolute;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  pointer-events: none;
  transition: 0.2s ease;
}

.input:focus ~ .user-label,
.input:valid ~ .user-label {
  top: -0.6rem;
  left: 0.9rem;
  font-size: 0.8rem;
  background-color: #193D52;
  padding: 0 0.4rem;
  color: #fff;
}

/* === BOTÓN "ENVIAR" CON ANIMACIÓN === */
.mail-submit-btn {
  display: inline-block;
  padding: 1.2rem 1.8rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  background-color: transparent;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 1;
}

.mail-submit-btn:hover {
  background-color: rgba(255, 255, 255, 0.77);
  color: #193D52;
  border-color: #193D52;
  transform: scale(1.05);
}

.mail-submit-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 300%;
  height: 300%;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}

.mail-submit-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

/* === REDES SOCIALES CON ANIMACIONES === */
.uc-socials {
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  animation: fadeInUp 2s ease forwards;
}

.Btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  border-radius: 9px;
  cursor: pointer;
  transition: all .3s;
}

.svgContainer {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  transition: all .3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
  box-sizing: border-box;
  padding: 10px;
  margin: 0;
  color: #fff;  
}

.svgContainer svg {
  width: 50px;
  height: 50px;
  display: block;
  transition: transform 0.3s ease;
}

.BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 9px;
  pointer-events: none;
  transition: all .3s;
}

.Btn[aria-label="Instagram"] .BG {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.Btn[aria-label="TikTok"] .BG {
  background: rgba(27, 27, 27, 0.9);
}

.Btn:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.2);
}

.Btn:hover svg {
  transform: scale(1.1);
}

/* === FOOTER === */
.uc-footer {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  z-index: 2;
  position: relative;
  animation: fadeIn 2.3s ease forwards;
}

/* === ANIMACIONES KEYFRAMES === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 800px) {
  .uc-logo { width: 250px; }
  .uc-text { font-size: 1.2rem; }
  .input-group { max-width: 90%; gap: 1rem; }
  .input { padding: 1rem; font-size: 1rem; }
  .mail-submit-btn { padding: 1rem 1.5rem; font-size: 1rem; }
  .Btn, .svgContainer, .svgContainer svg { width: 45px; height: 45px; }
  .uc-footer { font-size: 0.9rem; }
}
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
  font-family: 'Rubik', sans-serif !important;
}

.upgraded-product-carousel {
  width: 100%;
  position: relative;
  padding: 0.2rem 0;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}

.carousel-item {
  flex: 0 0 calc(20% - 0.32rem); /* 5 productos visibles */
  display: flex;
  flex-direction: column;
  text-align: left;
  border-radius: 0;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.product-info {
  padding: 0.5rem;
}

.product-name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0.25rem 0;
  color: #333;
}

.product-price {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  margin: 0;
  color: #555;
}

/* Botones */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 0; /* estilo cuadrado como grid */
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Quitar scrollbar visual en Chrome/Edge/Safari */
.carousel-track::-webkit-scrollbar {
  display: none;
}
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
  font-family: 'Rubik', sans-serif !important;
}

.custom-carousel-section {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  z-index: 0;           /* contexto base del slider */
  isolation: isolate;   /* crea un stacking context propio */
}

/* Carrusel */
.custom-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-carousel .carousel-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.custom-carousel .carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.custom-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicators button {
  width: 12px;
  height: 12px; /* auto los hace _ planos */
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-indicators button.active {
  background: white;
}

/* Controles laterales */
.carousel-control {
  position: absolute;
  top: 0;
  width: 6.5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: clamp(3rem, 5vw, 5rem);
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  letter-spacing: -5px;
  cursor: pointer;
  z-index: 5;
  will-change: opacity, background-color;
  pointer-events: auto;  /* siguen siendo clicables dentro del slider */
  background-color: rgba(0, 0, 0, 0); /* invisible al inicio */
  opacity: 0; /* oculto al inicio */
  transition: opacity 0.4s ease, background-color 0.3s ease;
}

.custom-carousel-section:hover .carousel-control {
  opacity: 1; /* aparecen al pasar el ratón sobre el carrusel */
}

.carousel-control:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.carousel-control.prev {
  left: 0;
}

.carousel-control.next {
  right: 0;
}

/* Imagen vacía */
.carousel-placeholder {
  background: #ddd;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1.2rem;
}
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

* {
  font-family: 'Rubik', sans-serif !important;
}

.custom-video-hero {
  position: relative;
  width: 100vw; /* ancho completo del viewport */
  height: 100vh; /* altura deseada */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  border: none;
}

/* --- Texto superpuesto --- */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.overlay-text {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.localization-form {
        display: flex;
    }
    .localization-selector__toggle {
        cursor: pointer;
    }
  .field:after, .select:after, .customer .field:after, .customer select:after, .localization-form__select:after {
    box-shadow: none !important;
  }
  .disclosure__button.localization-form__select:hover span {
    text-decoration: underline;
  }
.password__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 10;
  text-align: center;
  color: white !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding-bottom: 10px;
}

.password__footer a,
.password__footer small {
  color: white !important;
  text-decoration: none;
}

.password__footer .footer-login-link:hover {
  text-decoration: underline;
}
.password-header {
    position: fixed;        /* 🔹 flotante sobre todo */
    top: 0;
    left: 15%;
    width: 100vw;           /* ocupa todo el ancho de la ventana */
    z-index: 1000;          /* suficiente para estar encima de tu sección custom */
    background: transparent !important;  /* fondo transparente */
    box-shadow: none !important;
    display: flex;          /* centra el contenido horizontalmente */
    justify-content: center;
    align-items: center;
    padding: 1rem;          /* separación interna opcional */
    box-sizing: border-box;
  }
  /* Asegura que los elementos internos también sean blancos */
  .password-header h1,
  .password-header .password-content,
  .password-header .password-link,
  .password-header .modal__toggle-open {
    color: white !important;
  }

/* CSS from snippet stylesheet tags */
.language-flag img {
    margin-right: 6px;
    vertical-align: middle;
  }