/** Shopify CDN: Minification failed

Line 30:10 Unexpected "<"

**/

            .trending-image-badge {
              position: absolute;
              top: 16px;
              right: 16px;
              background-color: #333;
              color: #ffffff;
              padding: 6px 10px;
              border-radius: 8px;
              font-weight: 800;
              font-size: 14px;
              display: flex;
              align-items: center;
              gap: 6px;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
              z-index: 5;
              pointer-events: none;
            }
            .trending-image-badge svg {
              width: 16px;
              height: 16px;
              color: #ffffff;
            }

          <style>
            .trending-image-badge {
              position: absolute;
              top: 16px;
              right: 16px;
              background-color: #333;
              color: #ffffff;
              padding: 6px 10px;
              border-radius: 8px;
              font-weight: 800;
              font-size: 14px;
              display: flex;
              align-items: center;
              gap: 6px;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
              z-index: 5;
              pointer-events: none;
            }
            .trending-image-badge svg {
              width: 16px;
              height: 16px;
              color: #ffffff;
            }

            /* Image Track Swiping Styles */
            .main-image-track {
              display: flex;
              width: 100%;
              overflow-x: hidden;
            }
            .main-image-slide {
              width: 100%;
              flex-shrink: 0;
              display: none;
              cursor: zoom-in;
            }
            .main-image-slide.active {
              display: block;
            }

            @media (max-width: 768px) {
              .main-image-track {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none; /* Firefox */
                scroll-behavior: smooth;
              }
              .main-image-track::-webkit-scrollbar {
                display: none; /* Safari/Chrome */
              }
              .main-image-slide {
                display: block !important; 
                scroll-snap-align: start;
              }
            }
          

            .urgent-stock-message {
              display: inline-flex;
              align-items: center;
              font-size: 13px;
              margin-bottom: 12px;
              font-weight: 700;
              padding: 8px 14px;
              border-radius: 6px;
            }
            .urgent-stock-message.in-stock {
              background-color: #e8f5e9;
              color: #2e7d32;
              border: 1px solid #c8e6c9;
            }
            .urgent-stock-message.low-stock {
              background-color: #ffebee;
              color: #c62828;
              border: 1px solid #ffcdd2;
            }
            .urgent-stock-message.sold-out {
              background-color: #ffebee;
              color: #c62828;
              border: 1px solid #ffcdd2;
            }
            .variant-pill-label.sold-out-pill {
              background-color: #f5f5f5;
              color: #999;
              border-color: #eaeaea;
            }
            .variant-radio:checked + .variant-pill-label.sold-out-pill {
              background-color: #999;
              border-color: #999;
              color: white;
            }
            @media (max-width: 768px) {
              .urgent-stock-message {
                display: flex;
                justify-content: center;
                width: 100%;
              }
            }
          

    .custom-product-gallery {
      max-width: 1400px;
      margin: 0 auto 40px auto;
      padding: 0 24px;
    }
    .gallery-track {
      display: flex;
      overflow-x: auto;
      gap: 16px;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
      padding-bottom: 16px;
    }
    .gallery-track::-webkit-scrollbar {
      height: 8px;
    }
    .gallery-track::-webkit-scrollbar-track {
      background: #f1f1f1; 
      border-radius: 4px;
    }
    .gallery-track::-webkit-scrollbar-thumb {
      background: #ccc; 
      border-radius: 4px;
    }
    .gallery-track::-webkit-scrollbar-thumb:hover {
      background: #999; 
    }
    .gallery-slide {
      height: 250px;
      width: auto;
      min-width: 250px;
      object-fit: cover;
      scroll-snap-align: start;
      border-radius: 8px;
      cursor: zoom-in;
      flex-shrink: 0;
      border: 1px solid #eaeaea;
      background: white;
      transition: transform 0.3s ease;
    }
    .gallery-slide:hover {
      transform: scale(1.02);
    }
    @media (max-width: 768px) {
      .gallery-slide {
        height: 180px;
        min-width: 180px;
      }
    }
  

.product-page {
  background: var(--color-brand-white);
  color: var(--color-brand-black);
  min-height: 100vh;
}

.breadcrumb-container {
  background: var(--color-brand-white);
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 11px;
  color: var(--color-brand-gray-light);
}

.breadcrumb a {
  color: var(--color-brand-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--color-brand-black);
}

.breadcrumb span {
  margin: 0 8px;
}

.product-main {
  padding: 40px 0;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 80px;
}

.product-thumbnails-container {
  position: relative;
  width: 130px;
  flex-shrink: 0;
  max-height: 550px;
}

.product-images {
  grid-column: 1;
  grid-row: 1 / 3;
}

.product-info-header {
  grid-column: 2;
  grid-row: 1;
}

.product-info-actions {
  grid-column: 2;
  grid-row: 2;
}

/* Product Images */
.product-images {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-brand-red);
  color: white;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}

.product-trust-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}

.product-main-image {
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-grow: 1;
  max-width: 100%;
}

.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.product-image-badge svg {
  color: #ff0000;
}

.stock-count {
  color: #666;
  margin-left: 8px;
}

.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-height: 550px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  padding-bottom: 24px; /* Ensure space to scroll past the shadow */
  padding-right: 8px;
}
.product-thumbnails::-webkit-scrollbar {
  width: 6px;
}
.product-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}
.product-thumbnails::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.thumbnail {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  transition: border-color 0.3s;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--color-brand-red);
}

.thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

/* Product Info */
.product-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.product-subtitle {
  font-size: 14px;
  color: var(--color-brand-gray-light);
  margin: 0 0 16px 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.tp-stars-container {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  margin: 0 4px;
}
.tp-star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #00b67a;
  color: white;
  font-size: 13px;
  line-height: 1;
}
.tp-large .tp-star {
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.rating-text {
  font-size: 12px;
  color: var(--color-brand-gray-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-score {
  font-weight: 800;
  font-size: 16px;
  color: var(--color-brand-black);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 32px;
  font-weight: 900;
  color: #111;
}

.price-original {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.best-price-pill {
  display: inline-block;
  background: #f0f0f0;
  color: #888;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.price-save {
  background: var(--color-brand-red);
  color: white;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
}

/* Form Actions Grouped */
.product-actions-grouped {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-price-and-qty {
  display: contents; /* Keeps normal layout on desktop so child acts as direct flex child */
}

.mobile-price-container {
  display: none; /* Hide on Desktop */
}


/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  height: 56px;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 20px;
  padding: 0 16px;
  cursor: pointer;
  color: #666;
  height: 100%;
  transition: background 0.2s, color 0.2s;
}

.qty-btn:hover {
  background: #e0e0e0;
  color: #000;
}

.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Variant Selectors */
.product-variants {
  margin-bottom: 24px;
}

.variant-group {
  margin-bottom: 16px;
}

.variant-group h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  color: #999;
  text-transform: uppercase;
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-radio {
  display: none;
}

.variant-pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--color-brand-white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #333;
  min-width: 80px;
  text-align: center;
}

.variant-pill-label:hover {
  border-color: #999;
}

.variant-radio:checked + .variant-pill-label {
  background: var(--color-brand-red);
  color: white;
  border-color: var(--color-brand-red);
}

/* Buttons */
.btn-add-to-cart {
  flex: 1;
  background: #ff0000;
  color: white;
  border: none;
  padding: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s;
  margin-bottom: 16px;
}

/* Social Proof Block - Thin Inline */
.social-proof-block {
  margin-bottom: 16px;
}

.social-proof-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555;
}

.sp-item {
  font-weight: 500;
}

.sp-divider {
  color: #ccc;
}

.nav-item svg {
  vertical-align: -2px;
  margin-right: 4px;
}

.btn-add-to-cart:hover:not([disabled]) {
  background: #cc0000;
}

.btn-add-to-cart[disabled] {
  background: #ccc;
  cursor: not-allowed;
}

.shipping-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 16px;
}

.shipping-info svg {
  color: #ff0000;
}

.shipping-price {
  margin-left: auto;
  color: #ff0000;
  font-weight: 700;
}

/* Tabs */
.product-tabs {
  background: var(--color-brand-white);
  padding: 60px 0;
  border-top: 1px solid #e0e0e0;
}

.tabs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--color-brand-gray-light);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.tab-btn:hover {
  color: #999;
}

.tab-btn.active {
  color: var(--color-brand-black);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-brand-red);
}

/* Accordion Mobile CSS */
.accordion-btn {
  display: none;
  width: 100%;
  background: var(--color-brand-white);
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-brand-black);
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-btn.active {
  border-bottom: none;
}
.acc-icon {
  font-size: 20px;
  font-weight: 300;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.specs-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.spec-label {
  font-size: 13px;
  color: var(--color-brand-gray-light);
}

.spec-value {
  font-size: 13px;
  color: var(--color-brand-black);
  text-align: right;
}

.technical-note {
  margin-top: 32px;
  padding: 20px;
  background: #f9f9f9;
  border-left: 3px solid var(--color-brand-red);
  border-radius: 4px;
}

.technical-note h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.technical-note p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-brand-gray-light);
  margin: 0;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  margin-bottom: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.download-item:hover {
  border-color: #ff0000;
}

.download-item svg {
  color: #ff0000;
  flex-shrink: 0;
}

.download-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.download-item span {
  display: block;
  font-size: 11px;
  color: white;
}

/* Verified Results */
.verified-results {
  padding: 80px 0;
  background: #0a0a0a;
}

.results-header {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-header h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
}

.results-header p {
  font-size: 13px;
  color: #666;
  margin: 4px 0 0 0;
}

.btn-upload {
  background: white;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-upload:hover {
  background: #f0f0f0;
}

.results-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.result-card {
  background: #0f0f0f;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.result-card:hover {
  transform: translateY(-4px);
}

.result-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.result-info {
  padding: 16px;
}

.result-badge {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.result-info p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}

@media (max-width: 1024px) {
  .product-container {
    grid-template-columns: 1fr;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-page {
    overflow-x: hidden;
  }

  .product-main {
    padding: 16px 0;
  }

  .product-container {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }

  /* Reorder: title/stars first, images second, actions third */
  .product-info-header {
    order: 1;
    padding: 0;
  }

  .product-images {
    order: 2;
    flex-direction: row;
    gap: 12px;
  }

  .product-info-actions {
    order: 3;
    padding: 0;
  }

  /* Hide desktop badges on mobile for cleaner look */
  .product-badge,
  .product-trust-badge,
  .product-image-badge {
    display: none;
  }

  /* Social proof - compact */
  .social-proof-block {
    margin-bottom: 8px;
  }

  .social-proof-row {
    font-size: 12px;
  }

  /* Title & subtitle */
  .product-title {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .product-subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .product-rating {
    margin-bottom: 12px;
  }

  /* Price */
  .product-info-header .product-price {
    display: none; /* Hide top header price on mobile */
  }
  
  .mobile-price-and-qty {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
    margin-bottom: 8px; /* Breathing room above ATC */
  }

  .mobile-price-container {
    display: flex;
    align-items: center;
    flex: 1; /* Pushes the qty box over naturally if we want, or adjust */
  }

  .mobile-price-container .price-current {
    font-size: 28px;
    font-weight: 900;
    color: #111;
  }

  /* Image gallery appears after the title/rating block */
  .product-main-image {
    border-radius: 8px;
    margin-bottom: 8px;
    width: 60%;
    flex-shrink: 0;
  }
  
  .product-thumbnails-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 5;
  }
  
  .product-thumbnails-container {
    width: 80px;
    max-height: 400px;
  }

  .product-thumbnails {
    flex-direction: column;
    width: 80px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 8px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    scrollbar-width: none;
  }
  .product-thumbnails::-webkit-scrollbar {
    display: none;
  }
  .thumbnail {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
  }

  /* Variants - tight gap to the images */
  .product-variants {
    margin-bottom: 12px;
    margin-top: -12px; /* Pull variants up closer to the images */
  }

  .variant-pills {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Quantity - centered */
  .product-actions-grouped {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .quantity-selector {
    justify-content: center;
    width: auto;
  }

  .qty-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .qty-input {
    width: 60px;
    height: 44px;
    font-size: 18px;
  }

  .btn-add-to-cart {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }

  .product-trust-badges img {
    max-width: 100%;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-nav {
    display: none; /* Hide standard tabs on mobile */
  }
  
  .accordion-btn {
    display: flex; /* Show accordions on mobile */
  }

  .tab-panel {
    display: none;
    padding: 0 16px 24px;
    border-bottom: 1px solid #e0e0e0;
  }

  .tab-panel.active {
    display: block;
  }


  /* Fix double-click issue on mobile */
  a, button, .variant-pill-label, .thumbnail, .tab-btn,
  .qty-btn, .btn-add-to-cart, .product-card, .product-card a,
  .nav-item, .mega-menu-item, .checkout-btn, .cart-qty-btn,
  .cart-remove-btn, .directions-btn, .store-action-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}


/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  cursor: zoom-out;
}

.img-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.3s;
}

@keyframes zoom {
  from {transform:scale(0.95)} 
  to {transform:scale(1)}
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.product-trust-badges {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.product-trust-badges img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

