/** Shopify CDN: Minification failed

Line 45:14 Expected identifier but found whitespace
Line 45:16 Unexpected "{"
Line 45:26 Expected ":"
Line 45:54 Unexpected ","
Line 45:57 Unexpected "{"
Line 45:67 Expected ":"
Line 224:14 Expected identifier but found whitespace
Line 224:16 Unexpected "{"
Line 224:26 Expected ":"
Line 224:54 Unexpected ","
... and 2 more hidden warnings

**/
/* Custom Tabbed Products Section */
.custom-tabbed-products {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.custom-tabbed-products__container {
  max-width: var(--container-max-width, 1320px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header Row */
.custom-tabbed-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.custom-tabbed-products__heading {
  font-size: var(--heading-size-desktop, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading-color, #1a1a1a);
  margin: 0;
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  letter-spacing: -0.02em;
}

.custom-tabbed-products__heading p {
  margin: 0;
}

/* Tab Navigation */
.custom-tabbed-products__tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 4px;
}

.custom-tabbed-products__tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.custom-tabbed-products__tab-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tab-text-color, #4a5568);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-tabbed-products__tab-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.custom-tabbed-products__tab-btn.is-active {
  background-color: var(--tab-active-bg, #f1f3f5);
  color: var(--tab-active-text, #1a1a1a);
}

/* Carousel Track Window */
.custom-tabbed-products__slider-wrapper {
  position: relative;
  width: 100%;
}

.custom-tabbed-products__track {
  display: flex;
  gap: var(--col-gap-desktop, 20px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 12px;
}

.custom-tabbed-products__track::-webkit-scrollbar {
  display: none;
}

.custom-tabbed-products__tab-content {
  display: none;
  width: 100%;
}

.custom-tabbed-products__tab-content.is-active {
  display: block;
}

/* Product Card */
.custom-tabbed-products__card {
  flex: 0 0 calc((100% - (var(--col-gap-desktop, 20px) * (var(--cols-desktop, 4) - 1))) / var(--cols-desktop, 4));
  scroll-snap-align: start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

/* Image Box Container */
.custom-tabbed-products__image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--card-bg-color, #f2f2f2);
  border-radius: var(--card-radius, 20px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.custom-tabbed-products__card:hover .custom-tabbed-products__image-box img {
  transform: scale(1.05);
}

.custom-tabbed-products__image-box img {
  width: 100%;
  height: 100%;
  object-fit: var(--image-fit, cover);
  display: block;
  transition: transform 0.35s ease;
}

.custom-tabbed-products__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
}

.custom-tabbed-products__image-placeholder svg {
  width: 70px;
  height: 70px;
}

/* Badges Container Overlay */
.custom-tabbed-products__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 2;
}

.custom-tabbed-products__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
}

.custom-tabbed-products__badge--new {
  background-color: var(--badge-new-bg, #e6f971);
  color: var(--badge-new-text, #1a1a1a);
}

.custom-tabbed-products__badge--popular {
  background-color: var(--badge-popular-bg, #dbeafe);
  color: var(--badge-popular-text, #1e40af);
}

.custom-tabbed-products__badge--sale {
  background-color: var(--badge-sale-bg, #ff8b7b);
  color: var(--badge-sale-text, #ffffff);
}

/* Card Content Details */
.custom-tabbed-products__vendor {
  font-size: 12.5px;
  font-weight: 500;
  color: #8c96a6;
  margin-bottom: 6px;
}

.custom-tabbed-products__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
}

.custom-tabbed-products__price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.custom-tabbed-products__regular-price {
  color: #1a1a1a;
}

.custom-tabbed-products__sale-price {
  color: var(--sale-price-color, #ff5c47);
}

.custom-tabbed-products__compare-price {
  font-size: 14px;
  color: #8c96a6;
  text-decoration: line-through;
  font-weight: 400;
}

/* Bottom Controls Row */
.custom-tabbed-products__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

/* Progress Bar */
.custom-tabbed-products__progress {
  width: 140px;
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.custom-tabbed-products__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background-color: var(--heading-color, #1a1a1a);
  border-radius: 2px;
  transition: left 0.15s ease, width 0.15s ease;
}

/* Navigation Arrow Buttons */
.custom-tabbed-products__nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-tabbed-products__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.custom-tabbed-products__nav-btn:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.custom-tabbed-products__nav-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .custom-tabbed-products__header {
    margin-bottom: 24px;
  }

  .custom-tabbed-products__heading {
    font-size: var(--heading-size-tablet, 28px);
  }

  .custom-tabbed-products__track {
    gap: var(--col-gap-tablet, 16px);
  }

  .custom-tabbed-products__card {
    flex: 0 0 calc((100% - (var(--col-gap-tablet, 16px) * (var(--cols-tablet, 2) - 1))) / var(--cols-tablet, 2));
  }
}

/* Mobile (< 768px) */
@media screen and (max-width: 767px) {
  .custom-tabbed-products__container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .custom-tabbed-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .custom-tabbed-products__heading {
    font-size: var(--heading-size-mobile, 24px);
  }

  .custom-tabbed-products__tabs {
    width: 100%;
  }

  .custom-tabbed-products__track {
    gap: var(--col-gap-mobile, 14px);
  }

  .custom-tabbed-products__card {
    flex: 0 0 calc((100% - (var(--col-gap-mobile, 14px) * (var(--cols-mobile, 1) - 1))) / var(--cols-mobile, 1));
  }

  .custom-tabbed-products__controls {
    margin-top: 20px;
  }

  .custom-tabbed-products__progress {
    width: 100px;
  }
}
