/** Shopify CDN: Minification failed

Line 10:21 Expected identifier but found whitespace
Line 10:23 Unexpected "{"
Line 10:32 Expected ":"

**/
 /* Estilos Generales de la Sección */
  .pcl-section {
    background-color: {{ section.settings.bg_color }};
    padding: 60px 0;
    overflow: hidden;
  }

  /* Cabecera */
  .pcl-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .pcl-title {
    font-size: 32px;
    color: #660A29;
    font-weight: 600;
    margin: 0;
  }

  /* Estilos de la Tarjeta */
  .pcl-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra suave */
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
  }

  .pcl-card:hover {
    transform: translateY(-5px);
  }

  /* Logo superior */
  .pcl-card-logo {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 120px;
    height: auto;
    object-fit: contain;
  }

  /* Imagen del producto */
  .pcl-product-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .pcl-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  /* Contenido Texto */
  .pcl-product-title {
    font-size: 24px;
    color: #6D182E;
    margin: 0 0 10px 0;
    font-weight: 500;
    text-decoration: none;
    font-family: "GillSansMT", sans-serif;
    line-height: 32px;
  }

  .pcl-product-desc {
    font-size: 14px;
    color: #666;
    line-height: 18px;
    margin-bottom: 15px;
    flex-grow: 1; /* Empuja los botones abajo */
    font-family: 'Proxima Nova', sans-serif;
  }

  /* Login / Precio */
  .pcl-price-area {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .pcl-login-link {
    color: #6d182e;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  
  .pcl-login-link:hover {
    color: #6D182E;
    border-color: #6D182E;
  }

  .pcl-price {
    color: #333;
    font-weight: bold;
  }

  /* Botón See More */
  .pcl-see-more {
    display: inline-flex;
    align-items: center;
    color: #6D182E;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: gap 0.2s;
  }

  .pcl-see-more:hover {
    gap: 5px; /* Efecto flecha */
  }

  .pcl-arrow {
    margin-left: 5px;
  }

  /* Navegación Swiper (Flechas abajo) */
  .pcl-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
  }

  .swiper-button-prev-pcl, .swiper-button-next-pcl {
    color: #6D182E;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
  }

  .swiper.myProductSwiper {
    padding-bottom: 5rem;
  }

