/** Shopify CDN: Minification failed

Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:77 Expected ":"
Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 20:83 Expected ":"
... and 12 more hidden warnings

**/

 
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.8 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.8 | round: 0 }}px;
  }
  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }

    
  }

  @media screen and (max-width: 749px) {
    .grid.product-grid {
      grid-auto-flow: row;
    }
    
    .section-{{ section.id }} .card-product--image {
     height: 200px !important; /* Altura fija en píxeles */
  }
  }

  .grid.product-grid {
    grid-auto-flow: dense;
  }

  li.marca-block {
    grid-column: span 1;
  }
  @media screen and (min-width: 750px) {
    li.marca-block.double-width {
      grid-column: span 2;
    }
  }

  .marca-block {
    overflow: hidden;
    /*height: 400px;*/
  }

  .marca-block-content {
    display: flex;
    height: 100%;
  }
  .marca-block-content.has-image {
    flex-direction: row;
  }
  .marca-block-content.no-image {
    flex-direction: column;
  }

  
  @media screen and (max-width: 749px) {
    .marca-block-content.has-image {
      flex-direction: column;
    }
    .marca-block-content.has-image.mobile-top {
      flex-direction: column-reverse;
    }
  }

  @media screen and (min-width: 750px) {
    .marca-block-content.has-image .marca-block-text,
    .marca-block-content.has-image .marca-block-image {
      width: 50%;
    }
  }

  .marca-block-text,
  .marca-block-image {
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
  }

  @media screen and (min-width: 750px) {
    .marca-block-image {
      height: 100%;
    }
  }
  @media screen and (max-width: 749px) {
    .marca-block-image {
      height: 200px;
    }
  }

  .marca-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
  }

  .marca-block-image .desktop-img,
  .marca-block-image .mobile-img {
    display: none;
  }
  @media screen and (min-width: 750px) {
    .marca-block-image .desktop-img {
      display: block;
    }
  }
  @media screen and (max-width: 749px) {
    .marca-block-image .mobile-img {
      display: block;
    }
  }

  .marca-block-text {
    margin: 15px;
    max-height: 100%; 
    overflow: hidden;
  }
  .marca-title {
    margin-bottom: 10px;
    margin-left: 15px;
    margin-right: 15px;
    white-space: normal;
    overflow: visible;
  }
  .marca-text {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 10px;
    white-space: normal;
    overflow: hidden;
    max-height: 200px; 
  }

  .marca-button {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.2;
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
  }
  .marca-button--black {
    background-color: #000;
    color: #fff !important;
    border: none;
  }
  .marca-button--white {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
  }
  @media screen and (max-width: 749px) {
    li.marca-block {
      grid-column: span 2 !important;
    }
  }
