/** Shopify CDN: Minification failed

Line 19:31 Unexpected "{"
Line 19:40 Expected ":"
Line 19:47 Unexpected "{"
Line 25:33 Unexpected "{"
Line 25:42 Expected ":"
Line 31:33 Unexpected "{"
Line 31:42 Expected ":"
Line 38:33 Unexpected "{"
Line 38:42 Expected ":"
Line 45:33 Unexpected "{"
... and 25 more hidden warnings

**/


/* CSS from section stylesheet tags */
.best-sellers-section.section-{{ section.id }} {
    background: var(--section-bg);
    padding: 30px 20px 50px;
    font-family: var(--font-body-family);
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__inner {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__heading {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px;
  }

@media (min-width: 769px) {
  .best-sellers-section.section-{{ section.id }} .best-sellers__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centers the last row */
    gap: 24px;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__item {
    /* 4 columns with 24px gap => 3 gaps per row = 72px */
    flex: 0 1 calc((100% - 72px) / 4);
  }
}


  @media (max-width: 768px) {
    .best-sellers-section.section-{{ section.id }} .best-sellers__heading {
      font-size: 22px;
    }

    .best-sellers-section.section-{{ section.id }} .best-sellers__grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 14px;
      padding-bottom: 10px;
    }

    .best-sellers-section.section-{{ section.id }} .best-sellers__item {
      flex: 0 0 75%;
      max-width: 75%;
      scroll-snap-align: center;
      margin-left: 12px;
    }
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__item {
    background: var(--block-bg);
    border-radius: var(--block-radius);
    box-shadow: var(--block-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__content {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.3;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__price-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--button-bg);
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__compare {
    font-size: 14px;
    color: var(--compare-color);
    opacity: 0.7;
    text-decoration: line-through;
  }

  .best-sellers-section.section-{{ section.id }} .best-sellers__button {
    display: inline-block;
    background: var(--button-bg);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    margin-top: auto;
    transition: transform 0.2s ease, background 0.2s ease;
    width: 100%;
    white-space: nowrap;
  }

  @media (hover: hover) {
    .best-sellers-section.section-{{ section.id }} .best-sellers__button:hover {
      background: var(--button-hover);
      transform: translateY(-1px);
    }
  }