/** Shopify CDN: Minification failed

Line 1070:0 Expected "}" to go with "{"

**/
/*
  Therefore Theme - Commerce Components
  Styles specific to pricing, product cards, swatches, and cart interactions.
*/

/* =========================================================
   1. PRODUCT CARD (.tf-product-card)
   ========================================================= */
.tf-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tf-product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.tf-product-card__image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  background-color: transparent;
}

.tf-product-card__image--primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

/* PRODUCT CARD IMAGE HOVER SMOOTH TRANSITION */
.tf-product-card:hover .tf-product-card__image--primary {
  transform: scale(1.04);
}

.tf-product-card:has(.tf-product-card__image--secondary):hover .tf-product-card__image--primary {
  opacity: 0;
  transform: scale(0.96);
}

.tf-product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.14);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: cover;
  object-position: center;
}

.tf-product-card:hover .tf-product-card__image--secondary {
  opacity: 1;
  transform: scale(1.0);
}

.tf-product-card:hover,
.tf-hover-lift:hover {
  box-shadow: none !important;
  transform: none;
}

.tf-product-card__labels {
  position: absolute;
  top: var(--tf-spacing-8);
  left: var(--tf-spacing-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--tf-spacing-4);
  z-index: 4;
  pointer-events: none;
}

.tf-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1b4332;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(45, 106, 79, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  width: max-content;
}

.tf-stock-badge--preorder {
  color: #1d3557;
  border-color: rgba(29, 53, 87, 0.22);
}

.tf-stock-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2dc653;
  box-shadow: 0 0 0 0 rgba(45, 198, 83, 0.7);
  animation: tf-stock-pulse 2s infinite;
  flex-shrink: 0;
}

.tf-stock-pulse-dot--blue {
  background-color: #457b9d;
  box-shadow: 0 0 0 0 rgba(69, 123, 157, 0.7);
}

@keyframes tf-stock-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 198, 83, 0.7);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(45, 198, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 198, 83, 0);
  }
}

.tf-product-card__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
  z-index: 5;
}

.tf-product-card:hover .tf-product-card__actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .tf-product-card__quick-actions {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    z-index: 10 !important;
  }

  .tf-product-card__actions {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 10 !important;
  }

  .tf-product-card__swatches-slot,
  .tf-product-card__swatches,
  .tf-product-card__options,
  .tf-card-swatch-wrapper,
  .tf-swatch-list,
  .tf-swatch-list--colors,
  .tf-swatch-list--sizes {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    margin-top: 4px !important;
    margin-bottom: 2px !important;
  }

  .tf-swatch-dot {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    margin: 3px !important;
  }

  .tf-swatch-pill {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    padding: 2px 5px !important;
    font-size: 9px !important;
    border-radius: 4px !important;
  }

  .tf-swatch-list {
    gap: 4px !important;
  }

  .tf-swatch-more {
    font-size: 9px !important;
  }
}

.tf-product-card__actions--split {
  display: flex;
  align-items: center;
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.tf-product-card__actions--split .tf-btn-add-to-cart,
.tf-product-card__actions--split .tf-btn-quick-view {
  flex: 1;
  width: 50%;
}

.tf-btn-add-to-cart,
.tf-btn-quick-view {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #2f4b53;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 10px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

/* Hide compare button on every product card throughout the site */
.tf-product-card__action-btn--compare,
[data-compare-button] {
  display: none !important;
}

@media screen and (max-width: 767px) {
  /* Mobile Product Card Actions: Individual floating circular icon buttons (Clean like Wishlist icon) */
  .tf-product-card__actions {
    position: absolute !important;
    bottom: 10px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 10 !important;
    pointer-events: none !important;
  }

  .tf-btn-add-to-cart,
  .tf-btn-quick-view {
    pointer-events: auto !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    line-height: 0 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18) !important;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease !important;
  }

  .tf-btn-quick-view {
    background-color: var(--tf-color-brand-accent, #bccb5e) !important;
    color: #111111 !important;
    border: 1px solid var(--tf-color-brand-accent, #bccb5e) !important;
  }

  .tf-btn-add-to-cart {
    background-color: #2f4b53 !important;
    color: #ffffff !important;
    border: 1px solid #2f4b53 !important;
  }

  .tf-btn-add-to-cart:active,
  .tf-btn-quick-view:active {
    transform: scale(0.9) !important;
  }

  .tf-btn-add-to-cart span,
  .tf-btn-quick-view span {
    display: none !important;
  }

  .tf-cart-icon,
  .tf-quick-view-eye-icon,
  .tf-btn-add-to-cart svg,
  .tf-btn-quick-view svg {
    display: block !important;
    width: 15px !important;
    height: 15px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    margin: 0 auto !important;
    flex-shrink: 0 !important;
  }
}

.tf-btn-add-to-cart:hover,
.tf-btn-quick-view:hover {
  background-color: #bccb5e;
  color: #111111;
}

.tf-btn-add-to-cart.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #777777;
}

.tf-btn-add-to-cart.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.tf-btn-add-to-cart .tf-cart-icon,
.tf-quick-view-eye-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Card Style Variants */
.tf-product-card--minimal {
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.tf-product-card--bordered {
  border: 1px solid var(--tf-color-border-light, #e0e0e0);
  border-radius: 8px;
  overflow: hidden;
}

.tf-product-card--surface {
  background: var(--tf-color-surface-secondary, #f8f8f5);
  border-radius: 8px;
  overflow: hidden;
}

/* Product Info Typography (Centered with Larger Font Size) */
.tf-product-card__info,
.card-information {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
  gap: var(--tf-spacing-6, 6px);
  padding-top: var(--tf-spacing-12, 12px);
}

.tf-product-card__vendor {
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tf-color-text-muted, #888888);
  text-align: center !important;
}

.tf-product-card__title,
.card__heading,
.card__heading a {
  font-size: var(--tf-product-card-title-size, 16px) !important;
  font-weight: 600 !important;
  color: var(--tf-product-card-title-color, #2f4b53) !important;
  text-decoration: none !important;
  line-height: 1.4;
  text-align: center !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-bottom: 4px !important;
  position: relative;
  background-image: linear-gradient(to right, var(--tf-product-card-title-hover-color, #bccb5e), var(--tf-product-card-title-hover-color, #bccb5e));
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  transition: color 0.4s ease, background-size 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@media screen and (max-width: 767px) {
  /* 2-column mobile grids default title font size -> 13px */
  .tf-product-card__title,
  .card__heading,
  .card__heading a {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  /* 1-column mobile grid selected -> default unreduced font size (16px) */
  .grid--1-col-tablet-down .tf-product-card__title,
  .grid--1-col-tablet-down .card__heading,
  .grid--1-col-tablet-down .card__heading a,
  .tf-discovery-layout--mobile-1 .tf-product-card__title,
  .tf-discovery-layout--mobile-1 .card__heading,
  .tf-discovery-layout--mobile-1 .card__heading a,
  .is-list-view .tf-product-card__title,
  .is-list-view .card__heading,
  .is-list-view .card__heading a {
    font-size: var(--tf-product-card-title-size, 16px) !important;
    line-height: 1.4 !important;
  }
}

.tf-product-card__title:hover,
.card__heading:hover,
.card__heading a:hover,
.tf-product-card:hover .tf-product-card__title,
.tf-product-card:hover .card__heading,
.tf-product-card:hover .card__heading a {
  color: var(--tf-product-card-title-hover-color, #bccb5e) !important;
  text-decoration: none !important;
  background-size: 100% 1.5px;
}

.tf-product-card__swatches-slot,
.tf-product-card__swatches,
.variant-option {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================================================
   2. PRICE COMPONENT (.tf-price)
   ========================================================= */
.tf-price,
.price,
.price-item,
.tf-price__regular,
.tf-price__sale {
  font-size: var(--tf-product-price-size, 14px) !important;
}

.tf-price,
.price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: var(--tf-spacing-8);
  font-size: var(--tf-product-price-size, 14px) !important;
  color: var(--tf-product-price-color, #2f4b53);
}

.tf-price__regular {
  color: var(--tf-product-price-color, #2f4b53);
  font-weight: 600;
}

.tf-price__compare {
  color: var(--tf-color-text-muted);
  text-decoration: line-through;
  font-size: calc(var(--tf-product-price-size, 14px) - 2px) !important;
}

.tf-price__sale {
  color: var(--tf-color-status-error);
  font-weight: var(--tf-font-weight-bold);
}

.tf-price__unit {
  font-size: var(--tf-text-caption);
  color: var(--tf-color-text-secondary);
  width: 100%;
}

/* =========================================================
   3. SWATCHES (.tf-swatch)
   ========================================================= */
/* Reserved Space Slot for Swatches after Price (Zero Layout Shift) */
.tf-product-card__swatches-slot {
  min-height: 36px;
  display: block;
  margin-top: 0px;
  margin-bottom: 4px;
}

.tf-card-swatch-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s ease;
}

.tf-product-card:hover .tf-card-swatch-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Centered Swatches & Image/Variant Options in Product Slider */
.tf-card-swatch-wrapper,
.tf-product-card__swatches-slot,
.tf-product-card__swatches,
.card__swatches,
.product-card__swatches {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.tf-swatch-list {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  margin: 0 auto !important;
  padding: 2px 0;
  width: 100% !important;
}

.tf-swatch-list--colors,
.tf-swatch-list--sizes,
.variant-option,
.product-option {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.tf-swatch-dot {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  margin: 3px !important;
}

.tf-swatch-dot.is-active {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px var(--tf-color-brand-primary, #2f4b53) !important;
  transform: scale(1.08) !important;
}

/* Size Swatch Pills */
.tf-swatch-pill {
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--tf-color-border-subtle, rgba(0, 0, 0, 0.15));
  background-color: #ffffff;
  color: var(--tf-color-text-primary, #111111);
  display: inline-block;
  line-height: 1.2;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tf-swatch-pill.is-active {
  background-color: var(--tf-color-brand-primary, #2f4b53);
  color: #ffffff;
  border-color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-swatch-pill:hover:not(.is-active) {
  border-color: var(--tf-color-brand-primary, #2f4b53);
  color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-swatch-more {
  font-size: 10px;
  font-weight: 600;
  color: var(--tf-color-text-muted, #777777);
  margin-left: 2px;
}

.tf-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--tf-color-border-medium, #cccccc);
  cursor: pointer;
  position: relative;
  display: inline-block;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tf-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(47, 75, 83, 0.3);
}

.tf-swatch.is-active {
  box-shadow: 0 0 0 2px #2f4b53;
}

.tf-swatch.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tf-swatch.is-disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1px;
  background-color: var(--tf-color-text-primary);
  transform: rotate(-45deg);
}

/* =========================================================
   4. RATING (.tf-rating)
   ========================================================= */
.tf-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--tf-spacing-4);
  font-size: var(--tf-text-caption);
  color: var(--tf-color-text-secondary);
}

.tf-rating__stars {
  display: inline-flex;
  color: var(--tf-color-text-primary);
}
.tf-rating__stars svg {
  width: var(--tf-icon-size-12);
  height: var(--tf-icon-size-12);
  fill: currentColor;
}

/* =========================================================
   5. QUANTITY SELECTOR (.tf-quantity)
   ========================================================= */
.tf-quantity {
  display: inline-flex;
  align-items: center;
  border: var(--tf-border-thin);
  border-radius: var(--tf-radius-none);
  height: var(--tf-btn-height);
  background-color: var(--tf-color-surface-primary);
}

.tf-quantity__btn {
  background: none;
  border: none;
  width: 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--tf-color-text-primary);
  transition: background-color var(--tf-duration-fast);
}
.tf-quantity__btn:hover {
  background-color: var(--tf-color-surface-secondary);
}

.tf-quantity__input {
  width: 4rem;
  height: 100%;
  border: none;
  text-align: center;
  font-size: var(--tf-text-body);
  font-family: var(--tf-font-family-primary);
  -moz-appearance: textfield;
}
.tf-quantity__input::-webkit-outer-spin-button,
.tf-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Desktop Mouse Drag for Featured Collections and Product Carousels */
.slider--desktop,
.tf-discovery-layout--desktop-carousel,
.tf-carousel-wrapper,
[data-tf-carousel],
slider-component ul {
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.slider--desktop:active,
.tf-discovery-layout--desktop-carousel:active,
.tf-carousel-wrapper:active,
[data-tf-carousel]:active,
slider-component ul:active {
  cursor: grabbing !important;
}

.slider--desktop img,
.tf-discovery-layout--desktop-carousel img,
.tf-carousel-wrapper img,
slider-component ul img {
  -webkit-user-drag: none !important;
  user-select: none !important;
  pointer-events: none !important;
}

/* =========================================================
   FANCY RATING BADGE (Luxury Theme Styling)
   ========================================================= */
.tf-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: #f3f5e7;
  border: 1px solid rgba(47, 75, 83, 0.22);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tf-rating-badge:hover {
  background: #eef2dc;
  border-color: #2f4b53;
  transform: translateY(-1px);
}

.tf-rating-badge__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
}

.tf-rating-badge__star--filled {
  fill: #2f4b53;
}

.tf-rating-badge__star--half {
  fill: #2f4b53;
}

.tf-rating-badge__star--empty {
  fill: none;
  stroke: #2f4b53;
  stroke-width: 1.5px;
  opacity: 0.3;
}

.tf-rating-badge__score {
  font-family: var(--tf-font-family-primary, 'Satoshi', sans-serif);
  font-size: 0.8125rem; /* 13px */
  font-weight: 700;
  color: #2f4b53;
  margin-left: 0.125rem;
}

.tf-rating-badge__count {
  font-family: var(--tf-font-family-primary, 'Satoshi', sans-serif);
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  color: #2f4b53;
  opacity: 0.8;
}

/* =========================================================
   REDUCED SPACING (TITLE, PRICE, STAR RATING, SWATCHES) FOR:
   1. Homepage Product Carousels (Mobile <= 767px)
   2. Collection Page Grid Items (1-Col & 2-Col Mobile <= 767px)
   ========================================================= */
@media screen and (max-width: 767px) {
  /* Container Gap & Padding Reduction */
  .tf-carousel .tf-product-card__info,
  .tf-carousel .card-information,
  .tf-carousel-wrapper .tf-product-card__info,
  .tf-carousel-wrapper .card-information,
  .tf-product-carousel-section .tf-product-card__info,
  .tf-product-carousel-section .card-information,
  .tf-discovery-layout--mobile-carousel .tf-product-card__info,
  .tf-discovery-layout--mobile-carousel .card-information,
  .tf-collection-slider-section .tf-product-card__info,
  .tf-collection-slider-section .card-information,
  .slider--tablet .tf-product-card__info,
  .slider--tablet .card-information,
  .slider--mobile .tf-product-card__info,
  .slider--mobile .card-information,
  .tf-collection-grid-section .tf-product-card__info,
  .tf-collection-grid-section .card-information {
    gap: 2px !important;
    padding-top: 4px !important;
  }

  /* Title Space Reduction */
  .tf-carousel .tf-product-card__title,
  .tf-carousel .card__heading,
  .tf-carousel .card__heading a,
  .tf-carousel-wrapper .tf-product-card__title,
  .tf-carousel-wrapper .card__heading,
  .tf-carousel-wrapper .card__heading a,
  .tf-product-carousel-section .tf-product-card__title,
  .tf-product-carousel-section .card__heading,
  .tf-product-carousel-section .card__heading a,
  .tf-discovery-layout--mobile-carousel .tf-product-card__title,
  .tf-discovery-layout--mobile-carousel .card__heading,
  .tf-discovery-layout--mobile-carousel .card__heading a,
  .tf-collection-slider-section .tf-product-card__title,
  .tf-collection-slider-section .card__heading,
  .tf-collection-slider-section .card__heading a,
  .slider--tablet .tf-product-card__title,
  .slider--tablet .card__heading,
  .slider--tablet .card__heading a,
  .slider--mobile .tf-product-card__title,
  .slider--mobile .card__heading,
  .slider--mobile .card__heading a,
  .tf-collection-grid-section .tf-product-card__title,
  .tf-collection-grid-section .card__heading,
  .tf-collection-grid-section .card__heading a {
    padding-bottom: 0px !important;
    margin-bottom: 1px !important;
  }

  /* Price Space Reduction */
  .tf-carousel .tf-price,
  .tf-carousel .price,
  .tf-carousel-wrapper .tf-price,
  .tf-carousel-wrapper .price,
  .tf-product-carousel-section .tf-price,
  .tf-product-carousel-section .price,
  .tf-discovery-layout--mobile-carousel .tf-price,
  .tf-discovery-layout--mobile-carousel .price,
  .tf-collection-slider-section .tf-price,
  .tf-collection-slider-section .price,
  .slider--tablet .tf-price,
  .slider--tablet .price,
  .slider--mobile .tf-price,
  .slider--mobile .price,
  .tf-collection-grid-section .tf-price,
  .tf-collection-grid-section .price {
    padding-bottom: 0px !important;
    margin-bottom: 1px !important;
  }

  /* Star Rating & Swatches Space Reduction */
  .tf-carousel .tf-rating,
  .tf-carousel .rating,
  .tf-carousel .tf-rating-badge,
  .tf-carousel-wrapper .tf-rating,
  .tf-carousel-wrapper .rating,
  .tf-carousel-wrapper .tf-rating-badge,
  .tf-product-carousel-section .tf-rating,
  .tf-product-carousel-section .rating,
  .tf-product-carousel-section .tf-rating-badge,
  .tf-discovery-layout--mobile-carousel .tf-rating,
  .tf-discovery-layout--mobile-carousel .rating,
  .tf-discovery-layout--mobile-carousel .tf-rating-badge,
  .tf-collection-slider-section .tf-rating,
  .tf-collection-slider-section .rating,
  .tf-collection-slider-section .tf-rating-badge,
  .slider--tablet .tf-rating,
  .slider--tablet .rating,
  .slider--tablet .tf-rating-badge,
  .slider--mobile .tf-rating,
  .slider--mobile .rating,
  .slider--mobile .tf-rating-badge,
  .tf-collection-grid-section .tf-rating,
  .tf-collection-grid-section .rating,
  .tf-collection-grid-section .tf-rating-badge {
    padding-bottom: 0px !important;
    margin-bottom: 1px !important;
    margin-top: 0px !important;
  }

  .tf-carousel .tf-product-card__swatches-slot,
  .tf-carousel-wrapper .tf-product-card__swatches-slot,
  .tf-product-carousel-section .tf-product-card__swatches-slot,
  .tf-discovery-layout--mobile-carousel .tf-product-card__swatches-slot,
  .tf-collection-slider-section .tf-product-card__swatches-slot,
  .slider--tablet .tf-product-card__swatches-slot,
  .slider--mobile .tf-product-card__swatches-slot,
  .tf-collection-grid-section .tf-product-card__swatches-slot {
    margin-top: 2px !important;
    margin-bottom: 1px !important;

/* Responsive Cart Button Controls */
@media screen and (min-width: 750px) {
  .tf-hide-cart-desktop .tf-btn-add-to-cart {
    display: none !important;
  }
  .tf-hide-cart-desktop.tf-product-card__actions--split {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 749px) {
  .tf-hide-cart-mobile .tf-btn-add-to-cart {
    display: none !important;
  }
  .tf-hide-cart-mobile.tf-product-card__actions--split {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   PRODUCT SIZE POPUP FIT INDICATOR SECTION
   ========================================================================== */
.tf-fit-indicator {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
  font-family: inherit;
}

.tf-fit-indicator__header {
  margin-bottom: 1rem;
}

.tf-fit-indicator__heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground, #111827);
  margin: 0;
}

.tf-fit-indicator__scale {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tf-fit-indicator__labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.tf-fit-indicator__col {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.tf-fit-indicator__col.is-active {
  color: #bccb5e;
  font-weight: 700;
}

.tf-fit-indicator__track {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: rgba(235, 238, 240, 0.2);
  border-radius: 2px;
}

.tf-fit-indicator__bar {
  position: absolute;
  top: 0;
  height: 100%;
  width: 33.333%;
  background-color: #bccb5e;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(188, 203, 94, 0.6);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tf-fit-indicator__bar--fitted {
  left: 0% !important;
}

.tf-fit-indicator__bar--true_to_size {
  left: 33.333% !important;
}

.tf-fit-indicator__bar--oversized {
  left: 66.666% !important;
}

.tf-fit-indicator__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-foreground, #374151);
  line-height: 1.4;
}



