/** Shopify CDN: Minification failed

Line 16:20 Unexpected "{"
Line 16:29 Expected ":"
Line 16:36 Unexpected "{"
Line 17:15 Expected identifier but found whitespace
Line 17:17 Unexpected "{"
Line 17:26 Expected ":"
Line 17:71 Expected ":"
Line 18:18 Expected identifier but found whitespace
Line 18:20 Unexpected "{"
Line 18:29 Expected ":"
... and 12 more hidden warnings

**/
  #shopify-section-{{ section.id }} {
    margin-top: {{ section.settings.margin | times: 0.5 | round: 0 }}px;
    margin-bottom: {{ section.settings.margin | times: 0.5 | round: 0 }}px;
  }
  @media(min-width: 769px) {
    #shopify-section-{{ section.id }} {
      margin-top: {{ section.settings.margin }}px;
      margin-bottom: {{ section.settings.margin }}px;
    }
  }

  .buy-more-save {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .buy-more-save__title {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Bebas Neue';
    color: var(--block-block-title-color, #000);
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 40px !important;
  }

  .buy-more-save__title::before {
    content: "";
    flex-grow: 1;
    height: 2px;
    background-color: var(--bar-border-color, rgba(0, 0, 0, .3));
  }

  .buy-more-save__title::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background-color: var(--bar-border-color, rgba(0, 0, 0, .3));
}

  .buy-more-save__item {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 15px;
    border: 1px solid var(--Colors-Border-border-primary, #d0d5dd);
    text-decoration: none;
  }
  .buy-more-save__item:last-child {
    margin-bottom: 0;
  }

  .buy-more-save__image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .buy-more-save__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .buy-more-save__content {
    flex: 1;
    margin-right: 15px;
  }

  .buy-more-save__product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 7px;
    font-family: Assistant,sans-serif;
    color: #333;
  }

  .buy-more-save__prices {
    display: flex;
    align-items: center;
    line-height: 100%;
    gap: 10px;
  }

  .buy-more-save__price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-family: Assistant,sans-serif;
  }

  .buy-more-save__price-new {
    font-size: 18px;
    font-family: Assistant,sans-serif;
    color: #e74c3c;
  }

  .buy-more-save__button {
    background-color: #0c111d;
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    border: 1px solid #002d5d;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: Bebas Neue;
  }

  .buy-more-save__button:hover {
    background-color: #555;
    color: white;
  }

  @media (max-width: 500px) {
    .buy-more-save__title {
      font-size: 26px;
    }
    .buy-more-save__image {
      width: 50px;
      height: 50px;
      margin-right: 15px;
    }
    .buy-more-save__price-old, .buy-more-save__price-new {
      font-size: 14px;
    }
    .buy-more-save__product-title {
      font-family: Assistant, sans-serif;
      font-size: 16px;
      line-height: 20px !important;
    }
    .buy-more-save__content {
      margin-right: 15px;
    }
  }