/** Shopify CDN: Minification failed

Line 42:14 Expected identifier but found whitespace
Line 42:16 Unexpected "{"
Line 42:25 Expected ":"
Line 42:54 Expected ":"
Line 47:14 Expected identifier but found whitespace
Line 47:16 Unexpected "{"
Line 47:25 Expected ":"
Line 47:53 Expected ":"

**/
.bs-section {
    width: 95%;
    margin: 0 auto;
    text-align: center;
  }

  .bs-section__title {
    font-size: 32px !important;
    margin-bottom: 2px;
    color: #E8834A;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    letter-spacing: 0;
    margin-top: 5px;
  }

  .bs-section__desc {
    color: #777;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 20px;
    margin-top: 4px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
  }
  .bs-section__desc-desktop {
    font-size: {{ section.settings.desk_font_size }}px;
    max-width: 85%;
  }
  .bs-section__desc-mobile {
    display: none;
    font-size: {{ section.settings.mob_font_size }}px;
    max-width: 92%;
  }

  /* ----- PRODUCT GRID ----- */
  .bs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  /* ----- PRODUCT CARD ----- */
  .bs-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    flex: 0 0 calc(25% - 15px);
    overflow: hidden;
  }

  .bs-card__link {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
  }

  /* Image */
  .bs-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fafafa;
  }
  .bs-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Sale badge — smaller, top-left corner */
  .bs-card__badge {
    position: absolute;
    top: 6px;
    left: 6px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
  }

  /* Card body */
  .bs-card__body {
    padding: 8px 10px 6px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 2px;
    text-align: left;
  }

  .bs-card__title {
    font-size: 13.5px !important;
    text-transform: inherit;
    letter-spacing: 0.01em;
    font-weight: 600;
    margin: 0;
    text-align: left;
    padding: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #332D2A;
  }

  .bs-card__subtitle {
    margin: 1px 0 0;
    line-height: 1.3;
    font-weight: 400;
    font-size: 11px;
    text-align: left;
  }

  .bs-card__reviews {
    font-size: 10px;
    margin: 2px 0 0;
    min-height: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  /* Custom fallback review display */
  .bs-card__reviews-fallback {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #8A8480;
  }
  .bs-card__reviews-stars {
    color: #F2C812;
    font-size: 11px;
    letter-spacing: -1px;
  }
  .bs-card__reviews-divider {
    color: #D0CCC8;
    margin: 0 1px;
  }
  .bs-card__reviews-count {
    color: #8A8480;
    font-size: 9.5px;
  }

  /* Price row — left aligned, single row */
  .bs-card__price {
    font-size: 14px;
    color: #332D2A;
    margin: 3px 0 4px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
  }
  .bs-card__price-current {
    font-weight: 500;
    font-size: 14px;
    color: #332D2A;
  }
  .bs-card__price-compare {
    color: #8A8480;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 12px;
  }
  .bs-card__price-save {
    background: #F2C812;
    color: #332D2A;
    font-weight: 600;
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 3px;
    line-height: 1.5;
  }

  /* ATC — plain form, cart drawer global handler will intercept */
  .bs-card__atc-wrap {
    margin-top: auto;
  }
  .bs-card__atc {
    display: block;
    width: 100%;
    background-color: #E8834A;
    color: #ffffff;
    border: none;
    padding: 11px 16px;
    cursor: pointer;
    border-radius: 0 0 10px 10px;
    line-height: 1.42;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    -webkit-appearance: none;
  }
  .bs-card__atc:hover {
    background-color: #D66B30;
  }

  /* ================================================================ */
  /* RESPONSIVE                                                        */
  /* ================================================================ */
  @media screen and (max-width: 768px) {
    .bs-card {
      flex: 0 0 calc(50% - 8px);
    }
    .bs-grid {
      gap: 10px;
      justify-content: center;
    }
    .bs-card__atc {
      padding: 10px 8px;
      font-size: 12px;
      letter-spacing: 0.1em;
    }
    .bs-section__desc-desktop {
      display: none;
    }
    .bs-section__desc-mobile {
      display: block;
    }
    #bestsell-sec {
      padding: 0 !important;
    }
  }

  @media screen and (max-width: 480px) {
    .bs-card {
      flex: 0 0 calc(50% - 6px);
    }
    .bs-card__body {
      padding: 6px 8px 4px;
    }
    .bs-card__title {
      font-size: 12.5px !important;
      letter-spacing: 0.01em;
    }
    .bs-card__subtitle {
      font-size: 10px;
    }
    .bs-card__price {
      font-size: 13px;
    }
    .bs-card__price-current {
      font-size: 13px;
    }
    .bs-card__price-compare {
      font-size: 11px;
    }
    .bs-card__badge {
      font-size: 9px;
      padding: 2px 5px;
    }
  }
/* ============================================
   COLLECTION PAGE GRID — Override Dawn's flex grid
   ============================================ */

/* Override Dawn's grid spacing */
ul.product-grid.grid {
  column-gap: 10px !important;
  row-gap: 14px !important;
  padding: 0 10px !important;
  margin: 0 !important;
}

/* Force 2-column on mobile — override Dawn's width calc */
ul.product-grid .grid__item {
  width: calc(50% - 5px) !important;
  max-width: calc(50% - 5px) !important;
  flex-grow: 0 !important;
}

/* Force cards to fill their grid item */
ul.product-grid .grid__item .bs-card {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}
ul.product-grid .grid__item .bs-card .bs-card__link {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
ul.product-grid .grid__item .bs-card .bs-card__img-wrap {
  width: 100% !important;
}
ul.product-grid .grid__item .bs-card .bs-card__img-wrap img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
ul.product-grid .grid__item .bs-card .bs-card__body {
  flex: 1 !important;
}

/* Tablet: 3 columns */
@media screen and (min-width: 750px) {
  ul.product-grid.grid {
    column-gap: 16px !important;
    row-gap: 18px !important;
    padding: 0 !important;
  }
  ul.product-grid .grid__item {
    width: calc(33.33% - 11px) !important;
    max-width: calc(33.33% - 11px) !important;
  }
}

/* Desktop: 4 columns */
@media screen and (min-width: 990px) {
  ul.product-grid.grid {
    column-gap: 20px !important;
    row-gap: 20px !important;
  }
  ul.product-grid .grid__item {
    width: calc(25% - 15px) !important;
    max-width: calc(25% - 15px) !important;
  }
}

/* Small phone */
@media screen and (max-width: 375px) {
  ul.product-grid.grid {
    column-gap: 8px !important;
    row-gap: 10px !important;
    padding: 0 8px !important;
  }
  ul.product-grid .grid__item {
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
  }
}

/* end of bs-card styles */
