
  /* ==================================
     STICKY IMAGE LAYOUT
     ================================== */

  .product-header_slider {
    position: sticky;
    top: 4.5rem;
    height: calc(100vh - 4.5rem);
    overflow: hidden;
  }

  .product-header_slider .product-image-wrapper,
  .product-header_slider .w-slider,
  .product-header_slider .w-slider-mask,
  .product-header_slider .w-slide,
  .product-header_slider .product-image-slide.active-config,
  .product-header_slider .product-image-slide img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
  }

  /* ==================================
     COLOR SWATCHES (Body & Interior)
     ================================== */
  
  .color-swatch-item,
  .wheel-swatch-item {
    position: relative;
    cursor: pointer;
  }

  /* Ensure hidden swatches don't take up space */
  .color-swatch-item[style*="display: none"],
  .wheel-swatch-item[style*="display: none"],
  .w-dyn-item[style*="display: none"] {
    display: none !important;
  }

  /* Fix swatch list alignment - ensure no gaps from hidden items */
  .w-dyn-items {
    justify-content: flex-start !important;
  }
  
  .color-swatch-item input[type="radio"],
  .wheel-swatch-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .color-swatch-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .color-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 3px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center;
  }
  
  .color-swatch-item:hover .color-circle,
  .wheel-swatch-item:hover .color-circle,
  .wheel-swatch-item:hover .wheel-preview {
    transform: scale(1.05);
    border-color: #999;
  }
  
  .color-swatch-item input[type="radio"]:checked + .color-swatch-label .color-circle {
    border-color: #ffffff;
    border-width: 3px;
    box-shadow: 0 0 0 3px #1C1C1C;
  }
  
  /* ==================================
     WHEEL SWATCHES (Image-based)
     ================================== */
  
  .wheel-preview {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 3px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .wheel-swatch-item input[type="radio"]:checked + .color-swatch-label .wheel-preview {
    border-color: #ffffff;
    border-width: 3px;
    box-shadow: 0 0 0 3px #1C1C1C;
  }

  /* ==================================
     ACCESSORY CHECKBOXES (Row Style)
     ================================== */
  
  .accessory-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    background: #fff;
  }
  
  .accessory-item:hover {
    border-color: #ccc;
    background: #fafafa;
  }
  
  .accessory-item.selected {
    border-color: #C9A227;
    background: #FDF8E8;
  }
  
  .accessory-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .accessory-checkbox-visual {
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: #fff;
  }
  
  .accessory-item.selected .accessory-checkbox-visual {
    background: #C9A227;
    border-color: #C9A227;
  }
  
  .accessory-checkbox-visual::after {
    content: '';
    display: none;
    width: 0.25rem;
    height: 0.5rem;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg) translateY(-1px);
  }
  
  .accessory-item.selected .accessory-checkbox-visual::after {
    display: block;
  }
  
  .accessory-content {
    display: flex;
    align-items: center;
    flex: 1;
  }
  
  .accessory-name {
    font-weight: 500;
    color: #1a1a1a;
  }
  
  .accessory-price {
    color: #666;
    font-weight: 400;
    margin-left: auto;
  }

  /* ==================================
     LOAD MORE ACCESSORIES
     ================================== */

  .accessories_additional {
    display: none;
  }

  .accessories_additional.is-visible {
    display: block;
  }

  .accessories_load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .accessories_load-more:hover {
    background: #fafafa;
    border-color: #ccc;
  }

  .accessories_load-more::after {
    content: '';
    width: 8px;
    height: 8px;
    border: solid #1a1a1a;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .accessories_load-more.is-expanded::after {
    transform: rotate(-135deg);
  }

  /* ==================================
     IMAGE CONTAINER
     ================================== */
  
  .product-image-wrapper {
    position: relative !important;
    overflow: visible !important;
  }
  
  .product-image-wrapper > .w-dyn-list {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
  }
  
  .product-image-wrapper .w-dyn-items {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
  }

  /* ==================================
     IMAGE SLIDER FILTERING
     ================================== */
  
  .product-image-slide {
    display: none !important;
  }
  
  .product-image-slide.active-config {
    display: flex !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .product-image-slide .w-dyn-list {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .product-image-slide .w-dyn-items {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .product-image-slide .w-dyn-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: none !important;
    opacity: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .product-image-slide .w-dyn-item.active-image {
    display: flex !important;
    opacity: 1 !important;
    position: relative !important;
  }
  
  /* ==================================
     MULTI-IMAGE NAVIGATION CONTROLS
     ================================== */
  
  .image-nav-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    backdrop-filter: blur(4px);
  }
  
  .image-nav-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .image-nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
  
  .image-nav-dot.active {
    background: white;
    width: 1.5rem;
    border-radius: 0.25rem;
  }
  
  .image-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .image-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
  }
  
  .image-nav-arrow.prev {
    left: 2rem;
  }
  
  .image-nav-arrow.next {
    right: 2rem;
  }
  
  .image-nav-arrow svg {
    width: 1rem;
    height: 1rem;
    stroke: white;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .product-image-slide[data-image-count="1"] .image-nav-dots,
  .product-image-slide[data-image-count="1"] .image-nav-arrow {
    display: none;
  }
  
  /* ==================================
     MOBILE RESPONSIVE
     ================================== */
  
  @media (max-width: 991px) {
    .product-header_slider {
      position: relative;
      top: 0;
      height: 50vh;
    }
  }
  
  @media (max-width: 767px) {
    .color-circle,
    .wheel-preview {
      width: 2.5rem;
      height: 2.5rem;
    }
    
    .image-nav-arrow {
      width: 2rem;
      height: 2rem;
    }
    
    .image-nav-arrow svg {
      width: 0.875rem;
      height: 0.875rem;
    }
    
    .image-nav-arrow.prev {
      left: 1rem;
    }
    
    .image-nav-arrow.next {
      right: 1rem;
    }
    
    .image-nav-dots {
      bottom: 1rem;
      padding: 0.375rem 0.75rem;
    }
    
    .accessory-item {
      padding: 0.875rem 1rem;
    }
    
    .accessory-name {
      font-size: 0.9375rem;
    }
  }
  
  /* ==================================
     HIDE WEBFLOW DEFAULTS
     ================================== */

  .w-commerce-commerceaddtocartoptionselect {
    display: none !important;
  }

  /* ==================================
     BUY NOW BUTTON
     ================================== */

  .configurator-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .btn-buy-now {
    width: 100%;
    padding: 1rem 2rem;
    background: #C9A227;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
  }

  .btn-buy-now:hover:not(:disabled) {
    background: #B08F22;
  }

  .btn-buy-now:active:not(:disabled) {
    transform: scale(0.98);
  }

  .btn-buy-now:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
  }

  .btn-buy-now .btn-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
  }

  .or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9CA3AF;
    font-size: 0.875rem;
  }

  .or-divider::before,
  .or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
  }
