/** Shopify CDN: Minification failed

Line 81:18 Expected identifier but found whitespace
Line 81:20 Unexpected "{"
Line 81:29 Expected ":"
Line 81:57 Expected ":"
Line 98:18 Expected identifier but found whitespace
Line 98:20 Unexpected "{"
Line 98:29 Expected ":"
Line 98:57 Expected ":"
Line 143:20 Expected identifier but found whitespace
Line 143:22 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
@media screen and (max-width: 768px) {
    .mobile-icons-section {
      display: flex;
      justify-content: space-between;
      gap: 9px;
      padding: 15px;
      max-width: 100%;
      overflow-x: auto;
      background-color: #F7F7F7;
    }

    .mobile-icon-item {
      flex: 1;
      text-align: center;
      max-width: 64px;
    }

    .mobile-icon-item a {
      text-decoration: none; /* Elimina subrayado */
      display: inline-block;
    }

    .mobile-icon-image {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
      margin-bottom: 0px;
    }

    .mobile-icon-text {
      font-size: 12px;
      color: #333;
    }
  }

  @media screen and (min-width: 769px) {
    .mobile-icons-section {
      display: none;
    }
  }
.popup-container {
    display: none; /* Inicia oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semi-transparente */
    z-index: 100;
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    position: relative;
    max-width: 500px;
    width: 80%;
    background: white;
    padding: 0px;
    text-align: center;
    border-radius: {{ section.settings.border_radius }}px; /* Asigna el borde redondeado configurado */
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .desktop-image, .mobile-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: {{ section.settings.border_radius }}px; /* Aplica borde redondeado a las imágenes */
  }

  @media only screen and (min-width: 769px) {
    .mobile-image {
      display: none;
    }
  }

  @media only screen and (max-width: 768px) {
    .desktop-image {
      display: none;
    }
  }
.sliders-section-container {
      position: relative;
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
      margin: auto;
      text-align: center;
    }

    .sliders-section-slide-link {
      display: block;
      text-decoration: none;
    }

    .sliders-section-slides {
      display: flex;
      width: 100%;
      transition: transform 1s ease-in-out;
      white-space: nowrap;
    }

    .sliders-section-slide {
      min-width: 100%;
      box-sizing: border-box;
      display: flex;
    }

    .sliders-section-desktop-image, .sliders-section-mobile-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: {{ section.settings.border_radius }}px; /* Aplica el borde redondeado */
    }

    /* Mostrar solo la imagen de escritorio en dispositivos grandes */
    @media only screen and (min-width: 769px) {
      .sliders-section-mobile-image {
        display: none;
      }
    }

    /* Mostrar solo la imagen móvil en dispositivos pequeños con proporción 9:16 */
    @media only screen and (max-width: 768px) {
    .sliders-section-desktop-image {
      display: none;
    }

    .sliders-section-mobile-image {
      width: 90%;
      height: auto;
      display: block;
      object-fit: contain; /* Evita que la imagen se estire */
      margin: auto;
    }
  }