    /* Cuadrícula profesional para productos */
    #grid1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      align-items: stretch;
      margin-bottom: 2rem;
    }
    .product1 {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(63,164,235,0.09);
      padding: 1.1rem 1rem 1.3rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      transition: box-shadow 0.2s, transform 0.2s;
      min-height: 340px;
    }
    .product1:hover {
      box-shadow: 0 6px 24px rgba(63,164,235,0.18);
      transform: translateY(-2px) scale(1.02);
    }
    .image-container1 {
      width: 100%;
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      background: #fff;
      border-radius: 16px 16px 0 0;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(63,164,235,0.07);
      border: none;
    }
    .product-img {
      width: 90%;
      height: 90%;
      max-width: 160px;
      max-height: 160px;
      object-fit: contain;
      border-radius: 8px;
      background: #f5f5f5;
      transition: transform 0.3s cubic-bezier(.4,0,.2,1);
      display: block;
      margin: 0 auto;
    }
    .product1:hover .product-img {
      transform: scale(1.08) rotate(-2deg);
    }
    .product-nombre {
      text-align: center;
      font-size: 1.18rem;
      font-weight: 600;
      color: #222;
      margin: 0.7rem 0 0.2rem 0;
      letter-spacing: 0.3px;
      min-height: 48px;
      line-height: 1.2;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      text-decoration: none;
    }
    .product-precio {
      text-align: center;
      font-size: 1.22rem;
      font-weight: bold;
      color: #3fa4eb;
      margin: 0.3rem 0 0.7rem 0;
      letter-spacing: 0.2px;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      text-decoration: none;
    }
    .product1 a {
      text-decoration: none !important;
      color: inherit !important;
    }
    .boton1 {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.7em;
      margin-top: 1.3rem;
      background: linear-gradient(90deg, #3fa4eb 60%, #217dbb 100%);
      color: #fff;
      /* Usar misma fuente que el título del producto, pero un poco más gruesa */
      font-family: 'Cabin', sans-serif;
      font-weight: 600;
      padding: 0.7rem 2.2rem;
      border: none;
      border-radius: 10px;
      font-size: 1.13rem;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      box-shadow: 0 2px 10px rgba(63,164,235,0.13);
      letter-spacing: 0.7px;
      cursor: pointer;
      /* font-family definido arriba para coincidir con el título */
    }
    .boton1:hover {
      background: linear-gradient(90deg, #217dbb 60%, #3fa4eb 100%);
      box-shadow: 0 6px 20px rgba(63,164,235,0.18);
      transform: scale(1.06);
    }
    .carousel-container {
      width: 100%;
      max-width: 900px;
      margin: 0 auto 2rem auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      position: relative;
      min-height: 220px;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(.4,0,.2,1);
      width: 100%;
    }
    .carousel-slide {
      min-width: 100%;
      box-sizing: border-box;
      flex-shrink: 0;
    }
    .carousel-slide img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 0;
      display: block;
    }
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.8);
      border: none;
      font-size: 2rem;
      cursor: pointer;
      z-index: 2;
      padding: 0 10px;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: background 0.2s;
    }
    .carousel-arrow.left { left: 10px; }
    .carousel-arrow.right { right: 10px; }
    .carousel-arrow:hover { background: #e3f0fa; }
    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
      gap: 8px;
    }
    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #c0d8ee;
      cursor: pointer;
      transition: background 0.2s;
      display: inline-block;
    }
    .carousel-dot.active {
      background: #3fa4eb;
    }
    .image-container1 {
      width: 180px;
      height: 180px;
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.7rem auto;
      background: #fff;
      border-radius: 14px 14px 0 0;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(63,164,235,0.07);
      border: 1px solid #eaeaea;
    }
    .image-container1 {
      width: 100%;
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      background: #fff;
      border-radius: 16px 16px 0 0;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(63,164,235,0.07);
      border: 1px solid #eaeaea;
    }
    .image-container1 .product-img {
      width: 90%;
      height: 90%;
      max-width: 160px;
      max-height: 160px;
      object-fit: contain;
      border-radius: 0;
      background: #f5f5f5;
      transition: transform 0.3s cubic-bezier(.4,0,.2,1);
      display: block;
      margin: 0 auto;
    }
    .product1:hover .image-container1 img {
      transform: scale(1.07) rotate(-2deg);
    }
    .boton1 {
      display: inline-block;
      margin-top: 1.2rem;
      background: linear-gradient(90deg, #3fa4eb 60%, #217dbb 100%);
      color: #fff;
      /* misma fuente y peso que el título, un poco más gruesa */
      font-family: 'Cabin', sans-serif;
      font-weight: 600;
      padding: 0.6rem 2rem;
      border: none;
      border-radius: 8px;
      font-size: 1.08rem;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      box-shadow: 0 1.5px 6px rgba(63,164,235,0.10);
      letter-spacing: 0.5px;
    }
    .boton1:hover {
      background: linear-gradient(90deg, #217dbb 60%, #3fa4eb 100%);
      box-shadow: 0 4px 16px rgba(63,164,235,0.18);
      transform: scale(1.04);
    }
    .text-red-5001 {
      color: #e53935;
      font-weight: bold;
      margin: 0.5rem 0 0 0;
      font-size: 1.02rem;
      letter-spacing: 0.2px;
    }
    .line-through1 {
      text-decoration: line-through;
      color: #888;
      font-size: 1.01rem;
    }

    /* Clases para título de producto y precio "Antes" (misma fuente y tamaño que el título) */
    .productitem--title {
      font-family: Cabin, sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: .9375rem;
      margin: .625rem 0 0;
      line-height: 1.3125;
      letter-spacing: normal;
      text-transform: none;
      white-space: normal;
      text-align: center;
    }

    .productitem--oldprice {
      font-family: Cabin, sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: .9375rem;
      color: #c53030; /* rojo */
      margin: 0.25rem 0 0;
      text-align: center;
      text-decoration: line-through; /* tachado para todo el elemento 'Antes' */
    }

    .productitem--oldprice .productitem--oldprice-amount {
      color: inherit;
      text-decoration: inherit;
    }
