/** Shopify CDN: Minification failed

Line 160:19 Expected ":"

**/
.bestsellers-tabs {
  position: relative;
}
bestsellers-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    /* gap: 32px; */
}
.bestsellers-tabs__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.collection_tabs__tabs {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}
.bestsellers_cta svg {
  width: 12px;
  height: 12px;
}
.collection_tabs__hidden {
    display: none;
}
.bestsellers-tabs__headline {
    margin: 0;
    padding: 0 16px;
    /* color: #fff; */
}
.collection_tabs__wrapper {
  width: 100%;
  overflow: scroll;
  scrollbar-width: none;
  padding: 0 16px;
}
.collection_tabs__tab {
    white-space: nowrap;
    width: fit-content;
    height: 24px;
    font-size: 12px;
    line-height: 24px;    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background-color: transparent;
    border: 1px solid var(--neutral-700);
    cursor: pointer;
    border-radius: var(--radius-32);
    transition: 0.3s ease;
    color: var(--text-secondary);    
}
.collection_tabs__tab.collection_tabs__tab-active {
    background-color: var(--warning-700);
    color: var(--neutral-100);
    border: 1px solid var(--warning-700);
}
.bestsellers-tabs__slider .bestsellers-tabs__arrows .splide__arrow:disabled {
    opacity: 0;
}

.bestsellers-tabs__slider-list .splide__slide {
  padding: 0 0 32px 0;
}

.bestseller-tab-hidden {
    display: none;
}
.bestsellers-tabs__decor {
  background: #F3F4FA;  
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 393px;
  margin: 0;
  border-bottom-left-radius: 192px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
.bestsellers-tabs__top a {
  width: fit-content;
}
.bestsellers-tabs__slider {
  padding: 0 16px; 
}
.bestsellers__view-all {
  width: 100%;
  background-color: #d25b40;
  justify-content: center;
  color: #fff;
  gap: 8px;
}

.bestsellers__view-all svg {  
  width: 12px;
  height: 12px;
}
.bestsellers__view-all-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.splide__arrows.bestsellers-tabs__arrows.splide__arrows--ltr {
  display: none;
}
.splide__pagination.splide__pagination--ltr {
  display: none;
}

@media screen and (min-width: 768px) {
  .bestsellers__view-all {
    max-width: 304px;
  }
}

.bf-logo {
  margin-bottom: 16px;
  padding: 0 16px;
}
.decor__image {
  width: 230px;
  height: 100px; 
  margin-bottom: 32px;
}

.decor__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-fit: bottom;
}
.bestsellers-tabs__top-info {
  flex-direction: column;
}

@media screen and (min-width: 768px) {
    .bestsellers-tabs__arrows .splide__arrow--next {
      right: 38px;
    }
    .bestsellers-tabs__arrows .splide__arrow--prev {
      left: 38px;
    }
    .decor__image {
      position: relative;
      left: 32px;
    }
    .bf-logo {
      margin-bottom 28px;
      padding: 0;
      left: 32px;
    }
    .splide.bestsellers-tabs__slider {
      visibility: visible;
    }
    .bestsellers-tabs__slider {
      padding: 0 48px;
    }
    .collection_tabs__wrapper {
      width: fit-content;
      padding: 0;
    }
    .bestsellers-tabs__decor {
      height: 550px;
      width: auto;
      left: 32px;
      right: 32px;
      border-bottom-right-radius: 24px;
      border-top-right-radius: 24px;
    }
    .bestsellers-tabs .product-card__headline .product-card__parent-title {
      font-size: 12px;
      color: var(--text-secondary);
    }
    .collection_tabs__tab {
      font-weight: 400;
      font-size: 16px;
      height: 40px;
    }
    .collection_tabs__tabs {
        height: 48px;
        padding: 4px;
        background-color: var(--neutral-100);
        gap: 9px;
        border-radius: var(--radius-32);
    }    
    .collection_tabs__tab:hover {
        background-color: var(--warning-700);
        color: #fff;
        border: 1px solid var(--warning-700);
    }
    .bestsellers-tabs__headline {
        font-size: 32px;
        line-height: 40px;
        padding: 0;
        max-width: 470px;
    }
    .bestsellers-tabs__top {
        padding: 0 64px;
        flex-direction: row;
        gap: unset;
        justify-content: space-between;
        width: 100%;
        align-items: end;
    }
    .bestsellers-tabs {
        max-width: 1440px;        
        margin: 0 auto;
    }
}