/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 71:20 Unexpected "{"
Line 71:29 Expected ":"

**/


/* CSS from section stylesheet tags */
/*
#shopify-section-{{ section.id }} .image-carousel-container{
  padding-left: 7%;
  padding-right: 7%;
}
*/

#shopify-section-{{ section.id }} .mezcalum-section .section-header{
  margin-bottom: 20px;
  row-gap: 0px;
  column-gap: 30px;
}

/* Texto y botón */
.section-content {
  background-color: white;
  border-radius: 0 0 20px 20px;
  
}

.section-title {
  font-size: calc(calc(16 + (60 - 44)) * calc((100vw - 520px) / 680));
  font-size: min(max(44px, 4vw), 60px);
  line-height: 100%;
  margin-bottom: 0;
}

.see-recipe-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e67e22; /* Naranja */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease; /* Efecto hover */
}

.see-recipe-button:hover {
  background-color: #d35400; /* Naranja más oscuro */
}

.mobile-see-all{
  display: none;
}

@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 44px;
  }
  .cocktel-see-all{
    display: none;
  }
  .mobile-see-all{
    display: block;
  }
  .mobile-see-all a{
    width: 100%;
    text-align: center;
  }
  #shopify-section-{{ section.id }} .mobile-see-all .link-container{
    margin-top: 20px;
  }
}