/** Shopify CDN: Minification failed

Line 333:2 Unexpected "}"

**/
    /* ================================================
   HA Best Seller Section Styles
   ================================================ */

.ha-best-seller {
    width: 100%;
    overflow: hidden;
    padding-left: 70px;
}

.ha-best-seller__container {
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* ================================================
   Header Styles
   ================================================ */

.ha-best-seller__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-right: 40px;
    font-size: 18px !important;
}

.ha-best-seller__heading {
  font-size: 48px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
}

.ha-best-seller__shop-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ha-best-seller__shop-all:hover {
  opacity: 0.7;
}

.ha-best-seller__shop-all svg {
  transition: transform 0.3s ease;
}

.ha-best-seller__shop-all:hover svg {
  transform: translateX(4px);
}

/* ================================================
   Slider Wrapper Styles
   ================================================ */

.ha-best-seller__slider-wrapper {
    position: relative;
    /* padding: 0 50px; */
    
}

.ha-best-seller__slider {
  overflow: hidden;
}

.ha-best-seller__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.ha-best-seller__track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.ha-best-seller__track:active {
  cursor: grabbing;
}

/* ================================================
   Navigation Buttons
   ================================================ */

.ha-best-seller__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.ha-best-seller__nav:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.ha-best-seller__nav--prev {
  left: 0;
}

.ha-best-seller__nav--next {
  right: 0;
}

/* ================================================
   Product Card Styles
   ================================================ */

.ha-best-seller__card {
    flex: 0 0 256px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.ha-best-seller__card:hover {
  transform: translateY(-5px);
}

.ha-best-seller__badge-wrapper {
    position: absolute;
    top: 16px;
    z-index: 5;
    right: 9px;
}

.ha-best-seller__badge {
    display: inline-block;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    color: #fff;
}

.ha-best-seller__badge--bestseller {
  background:rgb(255, 115, 94);
}

.ha-best-seller__badge--new {
  background:rgb(255, 115, 94);
}

.ha-best-seller__image-wrapper {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #f0f0f0;
}

.ha-best-seller__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: white;
}

.ha-best-seller__info {
    padding: 20px 0px;
}


.ha-best-seller__title-link {
  text-decoration: none;
  color: inherit;
}

.ha-best-seller__title {
    font-size: 22px;
    font-weight: 300;
    margin: 0 0 12px 0;
    line-height: 1.4;
    color: #000;
    text-align: left;
    transition: color 0.3s ease;
}

.ha-best-seller__title-link:hover .ha-best-seller__title {
  color: #666;
}

.ha-best-seller__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ha-best-seller__price-current {
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.ha-best-seller__price-compare {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.ha-best-seller__variant {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    text-align: center;
}

/* ================================================
   Responsive Styles
   ================================================ */

@media screen and (max-width: 1024px) {
  .ha-best-seller__card {
    flex: 0 0 240px;
  }
}

@media screen and (max-width: 768px) {
  /* .ha-best-seller__container {
    padding-: 0 16px;
  } */

  .ha-best-seller__header {
    margin-bottom: 24px;
  }
.ha-best-seller {
    padding-left: 30px;
    padding-right: 30px;
}
  .ha-best-seller__heading {
    font-size: 28px;
  }

  .ha-best-seller__shop-all {
    font-size: 14px;
  }

  .ha-best-seller__slider-wrapper {
    padding: 0;
  }

  .ha-best-seller__nav {
    display: none;
  }

  .ha-best-seller__card {
    flex: 0 0 220px;
  }

  .ha-best-seller__track {
    gap: 12px;
    padding: 0 4px;
  }
}

@media screen and (max-width: 430px) {
.ha-best-seller__card {
    flex: 0 0 169px !important;
}
}
@media screen and (max-width: 480px) {
  .ha-best-seller__heading {
    font-size: 24px;
  }

  .ha-best-seller__card {
    flex: 0 0 180px;
  }

  .ha-best-seller__info {
    padding: 16px 0px;
  }

  .ha-best-seller__title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .ha-best-seller__price-current {
    font-size: 14px;
  }

  .ha-best-seller__price-compare {
    font-size: 12px;
  }

  .ha-best-seller__variant {
    font-size: 12px;
  }
}

/* ================================================
   Placeholder SVG Styles
   ================================================ */

.ha-best-seller__image.placeholder-svg {
  opacity: 0.5;
}
  }