/** Shopify CDN: Minification failed

Line 64:0 All "@import" rules must come first
Line 173:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.custom-collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
    padding: 20px;
  }

  .custom-collage-grid .bloque-imagen {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #f6f6f6;
    text-align: left;
    padding: 10px;
    transition: transform 0.3s ease;
  }

  .custom-collage-grid .bloque-imagen:hover {
    transform: scale(1.02);
  }

  .custom-collage-grid .bloque-imagen img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .custom-collage-grid .bloque-imagen.pequeño {
    grid-row: span 1;
  }
  .custom-collage-grid .bloque-imagen.mediano {
    grid-row: span 2;
  }
  .custom-collage-grid .bloque-imagen.grande {
    grid-row: span 3;
  }

  .custom-collage-grid .bloque-imagen h3 {
    margin-top: 10px;
    margin-bottom: 4px;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .custom-collage-grid .bloque-imagen p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
  }
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Quicksand:wght@400;600&display=swap');

  .destacado-sabore {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to right, #ffffff, #f3f3f3);
    padding: 40px 20px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }

  .destacado-imagen {
    flex: 1 1 300px;
    max-width: 500px;
    text-align: center;
  }

  .destacado-imagen img {
    width: 100%;
    border-radius: 25px;
    object-fit: contain;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .destacado-info {
    flex: 1 1 300px;
    max-width: 600px;
    padding: 10px;
    text-align: left;
  }

  .destacado-info h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: #388e3c;
    margin-bottom: 10px;
  }

  .destacado-info p.descripcion {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    color: #5e5e5e;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .destacado-info .precio {
    font-size: 26px;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px dashed #e91e63;
    padding-bottom: 5px;
  }

  .destacado-info .boton-compra {
    background-color: #4caf50;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
  }

  .destacado-info .boton-compra:hover {
    background-color: #388e3c;
    transform: scale(1.05);
  }

  /* 🟢 Responsivo para móviles */
  @media (max-width: 768px) {
    .destacado-sabore {
      flex-direction: column;
      padding: 30px 15px;
      text-align: center;
    }

    .destacado-info {
      text-align: center;
    }

    .destacado-info h2 {
      font-size: 34px;
    }

    .destacado-info .precio {
      font-size: 22px;
    }

    .destacado-info p.descripcion {
      font-size: 16px;
    }

    .destacado-info .boton-compra {
      font-size: 15px;
      padding: 12px 28px;
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;1,500&family=Quicksand:wght@400;500&display=swap');

  .texto-sabore {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2c2c2c;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }

  .texto-sabore strong {
    font-weight: 600;
    color: #388e3c;
  }

  @media (max-width: 768px) {
    .texto-sabore {
      font-size: 18px;
      padding: 20px;
    }
  }