/** Shopify CDN: Minification failed

Line 935:8 Expected identifier but found whitespace
Line 935:9 Unexpected "100%"
Line 1136:9 Expected identifier but found whitespace
Line 1136:10 Unexpected "var("
Line 1354:10 Expected identifier but found whitespace
Line 1354:15 Unexpected ";"

**/
/* =========================================================
   THEREFORE THEME - PRODUCT DETAIL PAGE (PDP) REVAMPED DESIGN
   Uses Therefore Brand Design System Variables:
   - Primary Brand Color: var(--tf-color-brand-primary, #2f4b53)
   - Secondary / Dark: var(--tf-color-brand-secondary, #1b2f33)
   - Text Colors: var(--tf-color-text-primary, #111111), var(--tf-color-text-muted, #666666)
   - Font Family: var(--tf-font-family, 'Satoshi', sans-serif)
   ========================================================= */

/* Header Clearance & Container Alignment */
.tf-pdp-section {
  position: relative;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 48px;
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
}

/* 58% Left Media / 42% Right Purchase Grid Layout */
.tf-pdp-container {
  display: grid;
  grid-template-columns: 58% calc(42% - 36px);
  gap: 36px;
  align-items: start !important;
}

@media screen and (max-width: 989px) {
  .tf-pdp-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------------------------------------------------------
   1. MEDIA GALLERY (60% WIDTH, SYNCED SCROLLING & SLIDER THUMBS)
   --------------------------------------------------------- */
.tf-pdp-media-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  align-self: start !important;
}

.tf-pdp-gallery-stage {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

/* Hidden Scrollbar Vertical Slider Thumbnails */
.tf-pdp-thumbs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(85vh - 100px);
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
  padding-right: 2px;
  flex-shrink: 0;
  width: 72px;
  position: sticky;
  top: 100px;
}

.tf-pdp-thumbs-list::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important; /* Chrome, Safari, Opera */
}

.tf-pdp-thumb-btn {
  width: 68px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid transparent;
  background: #f5f5f7;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  position: relative;
}

.tf-pdp-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-pdp-thumb-btn.is-active,
.tf-pdp-thumb-btn:hover {
  border-color: var(--tf-color-brand-primary, #2f4b53);
  transform: scale(1.03);
}

.tf-pdp-thumb-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Main Image Gallery Stage */
.tf-pdp-main-gallery {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tf-pdp-media-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
  border: 1px solid var(--tf-color-border-subtle, rgba(0,0,0,0.06));
}

.tf-pdp-media-item img,
.tf-pdp-media-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tf-pdp-media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tf-color-brand-primary, #2f4b53);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

/* Configurable Product Information Accordions / Tabs (Directly under Left Column Gallery) */
.tf-pdp-gallery-tabs {
  width: 100%;
  margin-top: 36px;
  border-top: 1px solid var(--tf-color-border-subtle, rgba(0, 0, 0, 0.12));
}

.tf-pdp-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tf-pdp-accordion-header {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tf-color-text-primary, #111111);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.tf-pdp-accordion-header:hover {
  color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-pdp-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444444;
  width: 16px;
  height: 16px;
}

.tf-accordion-minus { display: none; }
.tf-accordion-plus { display: block; }

.tf-pdp-accordion-item.is-open .tf-accordion-minus { display: block; }
.tf-pdp-accordion-item.is-open .tf-accordion-plus { display: none; }

.tf-pdp-accordion-body {
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  line-height: 1.7;
  color: var(--tf-color-text-muted, #555555);
}

.tf-pdp-accordion-item.is-open .tf-pdp-accordion-body {
  max-height: 1000px !important;
  opacity: 1 !important;
  padding-bottom: 22px !important;
}

/* Additional Information Table */
.tf-pdp-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  color: #333333;
}
.tf-pdp-info-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.tf-pdp-info-table tr:last-child {
  border-bottom: none;
}
.tf-pdp-info-table th {
  text-align: left;
  font-weight: 600;
  color: #555555;
  padding: 10px 12px 10px 0;
  width: 40%;
  vertical-align: top;
}
.tf-pdp-info-table td {
  padding: 10px 0;
  color: #333333;
  vertical-align: top;
}
.tf-pdp-info-link {
  color: #2f4b53;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.tf-pdp-info-link:hover {
  color: #bccb5e;
  text-decoration: underline;
}

/* ---------------------------------------------------------
   2. PURCHASE SECTION (40% WIDTH - REVAMPED THEREFORE BRAND)
   --------------------------------------------------------- */
.tf-pdp-purchase-container {
  position: sticky !important;
  top: 110px !important;
  align-self: start !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tf-pdp-header-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.tf-pdp-vendor {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(47, 75, 83, 0.08);
  color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-pdp-rating-inline {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.tf-pdp-rating-inline * {
  text-decoration: none !important;
}

.tf-pdp-rating-inline:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.tf-pdp-rating-inline:hover .tf-rating-badge__score,
.tf-pdp-rating-inline:hover .tf-rating-badge__count {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-pdp-rating-inline .tf-rating-badge {
  margin: 0;
}

.tf-pdp-title {
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--tf-color-text-primary, #111111);
  line-height: 1.2;
  margin: 0;
}

.tf-pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: -2px;
  margin-bottom: -2px;
}

.tf-pdp-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-pdp-price--compare {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--tf-color-text-muted, #888888);
}

.tf-pdp-short-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--tf-color-text-muted, #555555);
}

/* Product Feature Highlights Grid (Matching Reference Screenshot Design) */
.tf-pdp-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 10px 12px;
  margin-top: 6px;
  margin-bottom: 6px;
  background: #2f4b53;
  border: 1px solid #2f4b53;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(47, 75, 83, 0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.tf-pdp-features-grid:hover {
  box-shadow: 0 10px 26px rgba(47, 75, 83, 0.25);
}

.tf-pdp-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 5px;
  padding: 2px 1px;
}

.tf-pdp-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f4b53;
  box-shadow: 0 0 10px rgba(188, 203, 94, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s ease, 
              color 0.3s ease,
              box-shadow 0.3s ease;
}

.tf-pdp-feature-item:hover .tf-pdp-feature-icon {
  transform: translateY(-3px) scale(1.06);
  background: #bccb5e;
  border-color: #bccb5e;
  color: #1b2f33;
  box-shadow: 0 0 20px rgba(188, 203, 94, 0.85);
}

.tf-pdp-feature-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tf-pdp-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.tf-pdp-feature-label {
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #ffffff;
  line-height: 1.25;
  margin-top: 5px;
  text-align: center;
  transition: color 0.25s ease;
}

.tf-pdp-feature-item:hover .tf-pdp-feature-label {
  color: #bccb5e;
}

@media screen and (max-width: 540px) {
  .tf-pdp-features-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 14px 8px;
    border-radius: 16px;
  }

  .tf-pdp-feature-icon {
    width: 34px;
    height: 34px;
  }

  .tf-pdp-feature-icon svg,
  .tf-pdp-feature-icon img {
    width: 18px;
    height: 18px;
  }

  .tf-pdp-feature-label {
    font-size: 10px;
    letter-spacing: 0px;
  }
}

/* Revamped Don't Miss The Deal Card (Theme Brand Colors) */
.tf-pdp-deal-card {
  background: var(--tf-color-brand-secondary, #1b2f33);
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 6px;
  box-shadow: 0 4px 16px rgba(47, 75, 83, 0.15);
}

.tf-pdp-deal-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tf-pdp-deal-coupon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tf-pdp-deal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.tf-pdp-deal-copy {
  background: #ffffff;
  color: var(--tf-color-brand-secondary, #1b2f33);
  border: none;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.tf-pdp-deal-copy:hover {
  opacity: 0.9;
}

.tf-deal-copied-msg {
  font-size: 11px;
  font-weight: 700;
  color: #4caf50;
  background: rgba(255,255,255,0.95);
  padding: 2px 8px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.tf-deal-copied-msg.is-active {
  opacity: 1;
  visibility: visible;
}

.tf-pdp-countdown {
  display: flex;
  gap: 5px;
}

.tf-pdp-countdown-box {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  width: 38px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
}

.tf-pdp-countdown-box label {
  font-size: 7.5px !important;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Options & Swatches */
.tf-pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tf-pdp-option-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--tf-color-text-primary, #111111);
}

.tf-pdp-sibling-swatches {
  display: flex;
  gap: 10px;
}

.tf-pdp-color-swatch-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

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

/* Eye-catching Find Your Size Button */
.tf-pdp-size-guide-trigger {
  font-size: 13px;
  font-weight: 600;
  color: var(--tf-color-brand-primary, #2f4b53);
  background: rgba(47, 75, 83, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s ease;
}

.tf-pdp-size-guide-trigger:hover {
  background: rgba(47, 75, 83, 0.15);
}

.tf-pdp-size-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tf-pdp-size-btn {
  min-width: 48px;
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--tf-color-border-subtle, rgba(0,0,0,0.18));
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: var(--tf-color-text-primary, #111111);
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* Interactive Quantity Picker & Action Row */
.tf-pdp-actions-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.tf-pdp-qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--tf-color-border-subtle, rgba(0,0,0,0.18));
  border-radius: 24px;
  height: 48px;
  padding: 0 6px;
  background: #ffffff;
}

.tf-pdp-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-color-text-primary, #111111);
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.tf-pdp-qty-btn:hover {
  background-color: rgba(0,0,0,0.06);
}

.tf-pdp-qty-input {
  width: 36px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  background: transparent;
  color: var(--tf-color-text-primary, #111111);
}

/* Smooth Motion System Button Transitions & Interactive Mouseover Effect */
.tf-pdp-btn-add {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 12px;
  border-radius: 24px;
  background: var(--tf-color-brand-primary, #2f4b53);
  color: #ffffff;
  border: 1.5px solid var(--tf-color-brand-primary, #2f4b53);
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (max-width: 749px) {
  .tf-pdp-actions-row {
    gap: 8px;
  }
  .tf-pdp-qty-picker {
    padding: 0 2px;
    height: 44px;
    border-radius: 22px;
  }
  .tf-pdp-qty-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .tf-pdp-qty-input {
    width: 28px;
    font-size: 13px;
  }
  .tf-pdp-btn-add {
    height: 44px;
    border-radius: 22px;
    font-size: 10px;
    letter-spacing: 0.3px;
    padding: 0 8px;
    gap: 4px;
  }
}

.tf-pdp-btn-add::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.tf-pdp-btn-add:hover::before {
  left: 100%;
}

.tf-pdp-btn-add:hover {
  background: var(--tf-color-brand-secondary, #1b2f33);
  border-color: var(--tf-color-brand-secondary, #1b2f33);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 75, 83, 0.28);
}

.tf-pdp-btn-add:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 12px rgba(47, 75, 83, 0.18);
}

.tf-pdp-btn-buynow {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: #bccb5e;
  color: #111111;
  border: 1.5px solid #bccb5e;
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-pdp-btn-buynow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.tf-pdp-btn-buynow:hover::before {
  left: 100%;
}

.tf-pdp-buynow-wrapper {
  margin-top: 12px;
}

.tf-pdp-btn-buynow:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.tf-pdp-btn-buynow:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------
   DESKTOP ONLY SPACING ADJUSTMENTS (MIN-WIDTH: 990PX)
   --------------------------------------------------------- */
@media screen and (min-width: 990px) {
  /* Reduce vertical spacing in purchase container */
  .tf-pdp-purchase-container {
    gap: 12px;
  }

  /* Reduce spacing above and below pricing */
  .tf-pdp-price-box {
    margin-top: -4px;
    margin-bottom: -4px;
  }

  /* Spacing around Don't Miss The Deal block */
  .tf-pdp-deal-card {
    margin-top: 2px;
    margin-bottom: 6px;
  }

  /* Reduced spacing above Quantity box */
  #tf-pdp-form {
    margin-top: 10px;
  }

  /* Spacing between Add to Cart & Buy Now */
  .tf-pdp-buynow-wrapper {
    margin-top: 18px;
  }
}

/* Stock Progress Card Box Matching Exact Reference Screenshot */
.tf-stock-card-box {
  position: relative;
  margin-top: 14px;
  border: 1px solid var(--tf-color-border-subtle, rgba(0, 0, 0, 0.12));
  border-radius: 16px;
  padding: 16px 20px 14px;
  background: #ffffff;
}

.tf-stock-card-header {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ffffff;
  padding: 0 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tf-color-text-primary, #111111);
  letter-spacing: 0.2px;
  display: inline-block;
}

.tf-stock-card-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.tf-stock-lightning {
  width: 18px;
  height: 18px;
  color: var(--tf-color-brand-primary, #2f4b53);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.tf-stock-track {
  flex: 1;
  height: 5px;
  background: #ebebeb;
  border-radius: 3px;
  overflow: hidden;
}

.tf-stock-fill {
  display: block !important;
  height: 100%;
  background: var(--tf-color-brand-primary, #2f4b53) !important;
  border-radius: 3px;
  transition: width 0.4s ease;
}
  width: 100%;
  height: 6px;
  background: rgba(47, 75, 83, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.tf-pdp-stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--tf-color-brand-primary, #2f4b53), #476d77);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revamped Pickup Availability Card */
.tf-pdp-pickup-card {
  background: #f7f9f9;
  border: 1px solid rgba(47, 75, 83, 0.12);
  border-radius: 12px;
  padding: 16px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tf-pdp-pickup-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tf-pdp-pickup-status-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2e7d32;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.tf-pdp-pickup-status-icon svg {
  width: 14px;
  height: 14px;
}

.tf-pdp-pickup-details {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 12px;
  color: #2f4b53;
  line-height: 19px;
}

/* Glass Zoom Badge on Main Image Hover */
.tf-pdp-media-item {
  cursor: zoom-in;
}

.tf-pdp-zoom-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 5;
  pointer-events: none;
}

.tf-pdp-media-item:hover .tf-pdp-zoom-overlay {
  opacity: 1;
  transform: scale(1);
}

.tf-pdp-media-item:hover .tf-pdp-zoom-overlay:hover {
  background: #ffffff;
}

/* Lightbox Prev / Next Navigation Buttons */
.tf-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tf-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.tf-lightbox-prev { left: 24px; }
.tf-lightbox-next { right: 24px; }

/* Dynamic Size Guide, Ask Question & Lightbox Modals Activation (Inherits Backend Customizer Variables) */
#TF-SizeGuideModal.is-open,
#TF-SizeGuideModal.is-active,
#TF-AskQuestionModal.is-open,
#TF-AskQuestionModal.is-active,
#TF-LightboxModal.is-open,
#TF-LightboxModal.is-active {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 999999 !important;
}

#TF-SizeGuideModal .tf-qv-modal__overlay,
#TF-AskQuestionModal .tf-qv-modal__overlay,
#TF-LightboxModal .tf-qv-modal__overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: var(--tf-drawer-overlay-bg, rgba(0, 0, 0, 0.75)) !important;
  backdrop-filter: blur(var(--tf-drawer-backdrop-blur, 20px)) !important;
  -webkit-backdrop-filter: blur(var(--tf-drawer-backdrop-blur, 20px)) !important;
  z-index: 1 !important;
  cursor: pointer !important;
}

#TF-SizeGuideModal.is-open .tf-qv-modal__overlay,
#TF-SizeGuideModal.is-active .tf-qv-modal__overlay,
#TF-AskQuestionModal.is-open .tf-qv-modal__overlay,
#TF-AskQuestionModal.is-active .tf-qv-modal__overlay,
#TF-LightboxModal.is-open .tf-qv-modal__overlay,
#TF-LightboxModal.is-active .tf-qv-modal__overlay {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#TF-SizeGuideModal.is-open .tf-qv-modal__dialog,
#TF-SizeGuideModal.is-active .tf-qv-modal__dialog,
#TF-AskQuestionModal.is-open .tf-qv-modal__dialog,
#TF-AskQuestionModal.is-active .tf-qv-modal__dialog,
#TF-LightboxModal.is-open .tf-qv-modal__dialog,
#TF-LightboxModal.is-active .tf-qv-modal__dialog {
  position: relative !important;
  z-index: 10 !important;
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
  filter: none !important;
  visibility: visible !important;
  background: var(--tf-drawer-bg-rgba, var(--tf-drawer-bg, #1b2f33)) !important;
  border: 1px solid var(--tf-drawer-border-color, rgba(255, 255, 255, 0.16)) !important;
  border-radius: 24px !important;
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.6) !important;
}

.tf-pdp-pickup-info-btn {
  background: none;
  border: none;
  padding: 0;
  align-self: flex-end;
  font-size: 12px;
  font-weight: 600;
  color: var(--tf-color-brand-primary, #2f4b53);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.tf-pdp-pickup-info-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}  color: var(--tf-color-brand-primary, #2f4b53);
}

.tf-pdp-pickup-header p {
  font-size: 12px;
  color: var(--tf-color-text-muted, #666666);
  margin: 2px 0 0;
}

.tf-pdp-pickup-link {
  display: block;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--tf-color-brand-primary, #2f4b53);
  text-decoration: underline;
  margin-top: 6px;
}

/* Auto-sliding Benefits Marquee Carousel */
.tf-pdp-benefits-carousel {
  width: 100%;
  overflow: hidden;
  background: rgba(47, 75, 83, 0.04);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 4px;
}

.tf-pdp-benefits-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: tfMarquee 20s linear infinite;
}

.tf-pdp-benefits-track:hover {
  animation-play-state: paused;
}

@keyframes tfMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tf-pdp-benefit-card {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tf-color-text-primary, #2b2b2b);
  white-space: nowrap;
}

.tf-benefit-icon {
  stroke: var(--tf-color-text-primary, #2b2b2b);
  flex-shrink: 0;
}

.tf-benefit-divider {
  color: rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 300;
  margin: 0 4px;
}

/* Footer Action Buttons (Ask Question Drawer & Share Popover) */
.tf-pdp-footer-meta {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  position: relative;
}

.tf-pdp-meta-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--tf-color-brand-primary, #2f4b53);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Floating Share Popover (Matching Reference Screenshot) */
.tf-share-popover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--tf-color-border-subtle, rgba(0, 0, 0, 0.08));
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
}

/* Bottom Pointer Notch Arrow */
.tf-share-popover::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 32px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: rotate(45deg);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tf-share-popover.is-active {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.tf-share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--tf-color-text-primary, #111111);
  margin-bottom: 16px;
}

.tf-share-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tf-share-close:hover {
  color: #111;
}

.tf-share-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tf-share-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, opacity 0.2s ease;
}

.tf-share-icon-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.tf-share-fb { background: #3b5998; }
.tf-share-x { background: #111111; }
.tf-share-tg { background: #0088cc; }
.tf-share-wa { background: #25d366; }
.tf-share-mail { background: #4b7bec; }

.tf-share-url-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 4px 5px 4px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tf-share-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 12.5px;
  color: var(--tf-color-text-muted, #555555);
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tf-share-copy-btn {
  background: var(--tf-color-brand-primary, #2f4b53);
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.tf-share-copy-btn:hover {
  opacity: 0.9;
}
  outline: none;
}

.tf-share-copy-btn {
  background: var(--tf-color-brand-primary, #2f4b53);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ---------------------------------------------------------
   3. FABRIC TECHNOLOGY (HEADER CONTAINER MATCHING BANNER SECTION)
   --------------------------------------------------------- */
.tf-fabric-tech-section {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.tf-fabric-tech-full-media {
  position: relative;
  width: 100%;
  height: 640px;
  min-height: 640px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
}

.tf-fabric-tech-full-media video,
.tf-fabric-tech-full-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glassmorphic card overlay matching Therefore Design System */
.tf-fabric-tech-overlay-content {
  position: relative;
  z-index: 2;
  margin-left: 48px;
  padding: 40px 48px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--tf-color-text-primary, #111111);
  box-shadow: 0 14px 40px rgba(47, 75, 83, 0.12);
}

.tf-fabric-tech-title {
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--tf-color-brand-primary, #2f4b53) !important;
  letter-spacing: -0.5px;
}

.tf-fabric-tech-desc,
.tf-fabric-tech-desc p {
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--tf-color-text-muted, #444444) !important;
  margin: 0;
}

/* Bottom-Right Minimal Play/Pause Circular Button */
.tf-fabric-play-pause-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tf-fabric-play-pause-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.tf-fabric-play-pause-btn .tf-icon-play { display: none; }
.tf-fabric-play-pause-btn .tf-icon-pause { display: block; }

.tf-fabric-play-pause-btn.is-paused .tf-icon-play { display: block; }
.tf-fabric-play-pause-btn.is-paused .tf-icon-pause { display: none; }

/* ---------------------------------------------------------
   4. PRECISION IN EVERY DETAIL (REUSABLE HOTSPOT SECTION)
   --------------------------------------------------------- */
.tf-precision-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.tf-precision-wrapper {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 4%;
  align-items: center;
}

.tf-precision-layout--image_left {
  grid-template-columns: 58% 38%;
}

.tf-precision-layout--image_left .tf-precision-content {
  order: 2;
}

.tf-precision-layout--image_left .tf-precision-media-stage {
  order: 1;
}

.tf-precision-align--center {
  text-align: center;
}

.tf-precision-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tf-color-brand-primary, #2f4b53);
  background: rgba(47, 75, 83, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tf-precision-heading {
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--tf-color-text-primary, #111111);
  margin-bottom: 16px;
}

.tf-precision-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--tf-color-text-muted, #555555);
  margin-bottom: 28px;
}

.tf-precision-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--tf-color-brand-primary, #2f4b53);
  color: #ffffff;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.tf-precision-cta-btn:hover {
  background: var(--tf-color-brand-secondary, #1b2f33);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 75, 83, 0.2);
}

/* Media Stage & Hotspots Container with Extra Margin for Far Callouts */
.tf-precision-image-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: visible;
  background: #f4f5f6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.tf-precision-base-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

/* Hotspot Pin Wrapper & Circular Plus Trigger Button */
.tf-hotspot-pin-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.tf-hotspot-trigger {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tf-color-brand-primary, #2f4b53);
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: 0 4px 14px rgba(47, 75, 83, 0.35);
  z-index: 20;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.tf-hotspot-pin-wrapper:hover .tf-hotspot-trigger,
.tf-hotspot-pin-wrapper.is-active .tf-hotspot-trigger {
  background: #bccb5e;
  color: #1b2f33;
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(188, 203, 94, 0.6);
}

/* SVG Overlay for Dynamic Desktop Dotted Connecting Lines */
.tf-hotspot-lines-svg {
  display: none;
}

@media screen and (min-width: 990px) {
  .tf-hotspot-lines-svg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
    overflow: visible;
  }
}



/* Desktop Always-Visible Connected Cards (Far Spacing) */
.tf-hotspot-card {
  position: absolute;
  width: 270px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(47, 75, 83, 0.16);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 15;
}

.tf-hotspot-pin-wrapper:hover .tf-hotspot-card,
.tf-hotspot-pin-wrapper.is-active .tf-hotspot-card {
  border-color: rgba(47, 75, 83, 0.35);
  box-shadow: 0 18px 44px rgba(47, 75, 83, 0.18);
}

/* Hide desktop card close button since cards stay always visible */
@media screen and (min-width: 990px) {
  .tf-hotspot-card-close {
    display: none !important;
  }
}

/* Card Orientations & Far Distance Placement for Desktop Pins */
.tf-hotspot-pos--left .tf-hotspot-card {
  right: calc(100% + 270px);
  top: 50%;
  transform: translateY(-50%);
}

.tf-hotspot-pos--right .tf-hotspot-card {
  left: calc(100% + 270px);
  top: 50%;
  transform: translateY(-50%);
}

.tf-hotspot-pos--top .tf-hotspot-card {
  bottom: calc(100% + 120px);
  left: 50%;
  transform: translateX(-50%);
}

.tf-hotspot-pos--bottom .tf-hotspot-card {
  top: calc(100% + 120px);
  left: 50%;
  transform: translateX(-50%);
}

.tf-hotspot-card-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tf-color-brand-primary, #2f4b53);
  display: block;
  margin-bottom: 4px;
}

.tf-hotspot-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tf-hotspot-card-icon {
  color: var(--tf-color-brand-primary, #2f4b53);
  display: flex;
  align-items: center;
}

.tf-hotspot-card-title {
  font-family: var(--tf-font-family, 'Satoshi', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  padding-right: 18px;
}

.tf-hotspot-card-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: #555555;
  margin: 0 0 8px 0;
}

.tf-hotspot-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tf-color-brand-primary, #2f4b53);
  text-decoration: none;
}

.tf-hotspot-card-link:hover {
  text-decoration: underline;
}

.tf-hotspot-card-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  font-size: 15px;
  line-height: 1;
  color: #444444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.tf-hotspot-card-close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #111111;
}

/* Hide desktop floating tooltips on mobile screens */
@media screen and (max-width: 989px) {
  .tf-precision-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tf-precision-heading {
    font-size: 28px;
  }

  .tf-desktop-only-card {
    display: none !important;
  }
}

/* Mobile Sticky Bottom Information Panel (Athora-Style Single Fixed Bottom Sheet) */
.tf-hotspot-mobile-bottom-panel {
  display: none;
}

@media screen and (max-width: 989px) {
  .tf-hotspot-mobile-bottom-panel {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    background: #ffffff;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.45s ease;
    z-index: 999999;
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }

  .tf-hotspot-mobile-bottom-panel.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Top Centered Notch Circular Close Button matching Reference Image */
  .tf-hotspot-panel-close-btn {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  }

  .tf-hotspot-panel-close-btn:active {
    transform: translateX(-50%) scale(0.92);
  }

  .tf-hotspot-panel-body {
    padding: 32px 28px 24px;
  }

  .tf-hotspot-panel-content-wrapper {
    transition: opacity 0.18s ease, transform 0.18s ease;
    opacity: 1;
    transform: translateY(0);
  }

  .tf-hotspot-panel-content-wrapper.is-animating {
    opacity: 0;
    transform: translateY(6px);
  }

  .tf-hotspot-panel-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--tf-color-brand-primary, #2f4b53);
    margin-bottom: 8px;
  }

  .tf-hotspot-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .tf-hotspot-panel-icon {
    color: var(--tf-color-brand-primary, #2f4b53);
    display: flex;
    align-items: center;
  }

  .tf-hotspot-panel-icon svg {
    width: 22px;
    height: 22px;
  }

  .tf-hotspot-panel-title {
    font-family: var(--tf-font-family, 'Satoshi', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
  }

  .tf-hotspot-panel-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #555555;
    margin: 0 0 14px 0;
  }

  .tf-hotspot-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tf-color-brand-primary, #2f4b53);
    text-decoration: none;
  }

  .tf-hotspot-panel-link:hover {
    text-decoration: underline;
  }
}

/* ---------------------------------------------------------
   5. MOBILE RESPONSIVE OVERRIDES (PDP LAYOUT & 2-COLUMN CAROUSEL)
   --------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* PDP Main Grid & Column Responsiveness */
  .tf-pdp-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .tf-pdp-media-wrapper {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
  }

  .tf-pdp-gallery-stage {
    flex-direction: column-reverse !important;
    gap: 12px !important;
  }

  .tf-pdp-thumbs-list {
    flex-direction: row !important;
    width: 100% !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    position: relative !important;
    top: 0 !important;
    padding-bottom: 4px !important;
  }

  .tf-pdp-thumb-btn {
    width: 60px !important;
    height: 72px !important;
    flex-shrink: 0 !important;
  }

  .tf-pdp-main-gallery {
    width: 100% !important;
    position: relative !important;
    min-height: 400px !important;
    display: block !important;
  }

  /* Single Image Display on Mobile with Smooth Cross-Fade & Scale Animation */
  .tf-pdp-main-gallery .tf-pdp-media-item {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transform: scale(0.98) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s ease !important;
    z-index: 1 !important;
  }

  .tf-pdp-main-gallery .tf-pdp-media-item.is-active,
  .tf-pdp-main-gallery .tf-pdp-media-item:first-child:not(.is-inactive) {
    position: relative !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
  }

  .tf-pdp-purchase-container {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
  }

  .tf-pdp-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  /* 2-Column Mobile Carousel & Grid Card Adjustments (Matching Collection Mobile Layout) */
  .tf-product-grid--cols-mob-2 .card-information,
  .tf-product-carousel-section [data-columns-mobile="2"] .card-information,
  .tf-editorial-section [data-columns-mobile="2"] .card-information {
    padding: 10px 8px 12px !important;
  }

  .tf-product-grid--cols-mob-2 .card__heading,
  .tf-product-grid--cols-mob-2 .card-information .card__heading a,
  .tf-product-carousel-section [data-columns-mobile="2"] .card__heading,
  .tf-editorial-section [data-columns-mobile="2"] .card__heading {
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
  }

  .tf-product-grid--cols-mob-2 .price,
  .tf-product-carousel-section [data-columns-mobile="2"] .price,
  .tf-editorial-section [data-columns-mobile="2"] .price {
    font-size: 12.5px !important;
  }

  /* Stack Add to Cart / Choose Options & Quick View Buttons into Separate Rows */
  .tf-product-grid--cols-mob-2 .tf-product-card-actions,
  .tf-product-carousel-section [data-columns-mobile="2"] .tf-product-card-actions,
  .tf-editorial-section [data-columns-mobile="2"] .tf-product-card-actions {
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .tf-product-grid--cols-mob-2 .tf-product-card-actions .tf-btn,
  .tf-product-grid--cols-mob-2 .tf-product-card-actions button,
  .tf-product-carousel-section [data-columns-mobile="2"] .tf-product-card-actions .tf-btn,
  .tf-editorial-section [data-columns-mobile="2"] .tf-product-card-actions .tf-btn {
    width: 100% !important;
    font-size: 11.5px !important;
    padding: 8px 10px !important;
    letter-spacing: 0.3px !important;
  }
}

/* ---------------------------------------------------------
   INNER SCROLLER & ISOLATED MODAL SCROLLING (MOBILE PDP)
   Custom animated #bccb5e scrollbar matching Cart Drawer
   --------------------------------------------------------- */
#TF-SizeGuideModal .tf-qv-modal__dialog,
#TF-AskQuestionModal .tf-qv-modal__dialog,
#TF-LightboxModal .tf-qv-modal__dialog {
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
  scrollbar-color: #bccb5e rgba(255, 255, 255, 0.08) !important;
}

#TF-SizeGuideModal .tf-qv-modal__dialog::-webkit-scrollbar,
#TF-AskQuestionModal .tf-qv-modal__dialog::-webkit-scrollbar,
#TF-LightboxModal .tf-qv-modal__dialog::-webkit-scrollbar {
  width: 5px !important;
}

#TF-SizeGuideModal .tf-qv-modal__dialog::-webkit-scrollbar-track,
#TF-AskQuestionModal .tf-qv-modal__dialog::-webkit-scrollbar-track,
#TF-LightboxModal .tf-qv-modal__dialog::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 99px !important;
}

#TF-SizeGuideModal .tf-qv-modal__dialog::-webkit-scrollbar-thumb,
#TF-AskQuestionModal .tf-qv-modal__dialog::-webkit-scrollbar-thumb,
#TF-LightboxModal .tf-qv-modal__dialog::-webkit-scrollbar-thumb {
  background: #bccb5e !important;
  border-radius: 99px !important;
  box-shadow: 0 0 10px rgba(188, 203, 94, 0.5) !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

#TF-SizeGuideModal .tf-qv-modal__dialog::-webkit-scrollbar-thumb:hover,
#TF-AskQuestionModal .tf-qv-modal__dialog::-webkit-scrollbar-thumb:hover,
#TF-LightboxModal .tf-qv-modal__dialog::-webkit-scrollbar-thumb:hover {
  background: #d4e375 !important;
  box-shadow: 0 0 14px rgba(188, 203, 94, 0.8) !important;
}

@media screen and (max-width: 768px) {
  #TF-SizeGuideModal .tf-qv-modal__dialog,
  #TF-AskQuestionModal .tf-qv-modal__dialog {
    max-height: 82vh !important;
    padding: 24px 18px 20px !important;
  }
}

/* ==========================================
   FIT INDICATOR
========================================== */

#TF-SizeGuideModal .tf-fit-indicator {
    margin-top: 24px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-family: inherit;
    color: #fff;
    width: 100%;
}

#TF-SizeGuideModal .tf-fit-indicator__heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 12px;
}

#TF-SizeGuideModal .tf-fit-indicator__scale {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#TF-SizeGuideModal .tf-fit-indicator__labels {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 100%;
    text-align: center;
}

#TF-SizeGuideModal .tf-fit-indicator__col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    transition: color .3s ease;
}

/* Active Text */
#TF-SizeGuideModal .tf-fit-indicator__col.is-active {
    color: #bccb5e;
    font-weight: 700;
}

/* Green underline */
#TF-SizeGuideModal .tf-fit-indicator__col::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;           /* Adjust slightly if needed */
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #bccb5e;
    border-radius: 999px;
    transition: width .3s cubic-bezier(.4,0,.2,1);
    z-index: 2;
}

#TF-SizeGuideModal .tf-fit-indicator__col.is-active::after {
    width: 100%;
}

/* Grey Track */
#TF-SizeGuideModal .tf-fit-indicator__track {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.18);
    border-radius: 999px;
    overflow: visible;
}

/* Hide old green moving bar */
#TF-SizeGuideModal .tf-fit-indicator__bar {
    display: none !important;
}

#TF-SizeGuideModal .tf-fit-indicator__note {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    line-height: 1.5;
}

#TF-SizeGuideModal .tf-fit-indicator__col.is-active::after {
    width: calc(100% - 20px);
}



