/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 284:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  /* ===============================
     CONTENEDOR GENERAL DE LA SECCIÓN
     =============================== */
  .featured-carousel {
    padding: 8px 0 18px;
  }

  /* ===============================
     CABECERA + TÍTULO DEL CARRUSEL
     =============================== */
  .featured-carousel__head {
    padding: 0 20px;
  }

  .featured-carousel__title {
    font-size: 2rem !important;   /* título un poco más grande */
    font-weight: 540;
    color: #0A1753;
    margin: 0 0 18px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
  }

  .featured-carousel__title .fc-icon {
    font-size: 2.55rem;
    line-height: 1;
    display: flex;
    align-items: center;
  }

  /* ===============================
     WRAPPER DEL CARRUSEL
     =============================== */
  .featured-carousel .carousel-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;              /* aire lateral */
  }

  .featured-carousel .carousel-outer::-webkit-scrollbar {
    display: none;
  }

  .featured-carousel .carousel-wrapper {
    display: flex;
    scroll-snap-type: x mandatory;
    gap: 16px;
    /*       top   right bottom left  */
    padding: 0.5rem 20px 1rem 0;
    scroll-behavior: smooth;
  }

  .carousel-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* ===============================
     TARJETA DE PRODUCTO
     =============================== */
  .featured-carousel .carousel-item {
    flex: 0 0 auto;
    min-width: 240px;
    max-width: 240px;
    scroll-snap-align: start;
    background: #FEF6F0 !important;
    border-radius: 16px !important;
    box-shadow: 0 3px 10px rgba(15,23,42,0.06) !important;
    padding: 14px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .featured-carousel .carousel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(15,23,42,0.10) !important;
  }

  /* ===============================
     IMAGEN DE PRODUCTO
     =============================== */
  .featured-carousel .carousel-item img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 10px;
    display: block;
    object-fit: cover;
  }

  /* ===============================
     TÍTULO DEL PRODUCTO
     =============================== */
  .featured-carousel .carousel-item h3 {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #0a1753 !important;
    margin: 6px 0 6px !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
  }

  .featured-carousel .carousel-item h3:hover {
    color: #385391 !important;
  }
/* ===============================
   ELIMINAR SUBRAYADO DEL LINK
   SOLO EN CARRUSEL DESTACADOS
   =============================== */
.featured-carousel .carousel-item a {
  text-decoration: none !important;
  color: inherit;
}

.featured-carousel .carousel-item a:hover {
  text-decoration: none !important;
}
.featured-carousel .carousel-item:hover h3 {
  color: #385391 !important;
}

  /* ===============================
     PRECIO
     =============================== */
  .featured-carousel .price {
    font-size: 14px !important;
    font-weight: 540 !important;
    color: #fe7400 !important;
    text-align: left !important;
  }

  /* ===============================
     BADGE “AGOTADO”
     =============================== */
  .featured-carousel .sold-out {
    color: #fff;
    background-color:rgb(24, 41, 80);
    font-size: 1rem;
    padding: 2px 7px;
    border-radius: 999px;
    display: inline-block;
    margin-left: 8px;
  }

  /* ===============================
     TEXTO GUIA “DESLIZA…”
     =============================== */
  .featured-carousel__hint {
    margin: 0;
    padding: 0 20px 4px;
    font-size: 1.45rem;
    color: #0a1753;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .featured-carousel__hint-icon {
    font-size: 1.5rem;
  }

  /* ===============================
     TARJETA CTA FINAL
     =============================== */
  .featured-carousel .carousel-item--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fdf5ec !important;
    border: 1px dashed #e5d3c0 !important;
    margin-right: 18px; /* colchón visual base */
  }

  .featured-carousel__cta-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0A1753;
  }

  .featured-carousel__cta-icon {
    font-size: 3rem;
    line-height: 1;
  }

  .featured-carousel__cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0A1753;
  }

  .featured-carousel__cta-text {
    font-size: 1.5rem;
    color: #4b5563;
  }

  /* Botón interno CTA */
  .featured-carousel__cta-btn {
    margin-top: 4px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #22c55f;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 540;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(15,23,42,0.18);
    border: none;
  }

  .featured-carousel__cta-link:hover .featured-carousel__cta-btn {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15,23,42,0.22);
  }

  /* ===============================
     ESPACIADOR FINAL
     =============================== */
  .featured-carousel .carousel-spacer {
    flex: 0 0 24px; /* colchón fijo al final del carrusel */
  }

  /* ===============================
     RESPONSIVE
     =============================== */
  @media (min-width: 768px) {
    .featured-carousel {
      padding: 12px 0 22px;
    }

    .featured-carousel .carousel-outer {
      padding: 0 32px;
    }

    .featured-carousel .carousel-item {
      min-width: 260px;
      max-width: 260px;
    }

    .featured-carousel__title {
      font-size: 2rem !important;
    }

    .featured-carousel__hint {
      padding: 0 32px 6px;
    }
  }

  /* Mejora extra de separación en mobile para la tarjeta CTA */
  @media (max-width: 749px) {
    .carousel-item--cta {
      margin-right: 24px; /* más espacio en pantallas pequeñas */
    }

    .featured-carousel__cta-icon {
      font-size: 3rem;
    }

    .featured-carousel__cta-title {
      font-size: 2rem;
    }

    .featured-carousel__cta-text {
      font-size: 1.3rem;
    }
  }
</style>