/**
 * WooCommerce Products Mobile Slider Styles
 * Converts product grids to sliders on mobile when parent has class 'mobile-slider-true'
 * Uses Swiper.js for slider functionality
 */

/* Mobile Slider Styles - Only active on mobile devices */
@media (max-width: 768px) {
  /* Container for slider */
  .mobile-slider-true .woocommerce {
    position: relative;
    overflow: visible;
  }

  /* Transform products list into Swiper container */
  .mobile-slider-true .woocommerce ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    overflow: visible !important;
  }

  /* Swiper wrapper */
  .mobile-slider-true .woocommerce ul.products.swiper-wrapper {
    display: flex;
    transition-property: transform;
  }

  /* Individual product cards as Swiper slides */
  .mobile-slider-true .woocommerce ul.products li.product {
    flex-shrink: 0 !important;
    width: 85% !important;
    max-width: 85% !important;
    margin: 0 !important;
    position: relative;
  }

  /* Adjust for smaller mobile devices */
  @media (max-width: 480px) {
    .mobile-slider-true .woocommerce ul.products li.product {
      width: 90% !important;
      max-width: 90% !important;
    }
  }

  /* Product card enhancements */
  .mobile-slider-true .woocommerce ul.products li.product figure {
    margin-bottom: 12px;
  }

  .mobile-slider-true .woocommerce ul.products li.product .ct-media-container {
    display: block;
  }

  .mobile-slider-true .woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Swiper pagination customization */
  .mobile-slider-true .swiper-pagination {
    position: relative !important;
    margin-top: 20px;
  }

  .mobile-slider-true .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px !important;
    transition: all 0.3s ease;
  }

  .mobile-slider-true .swiper-pagination-bullet-active {
    background: #000;
    width: 24px;
    border-radius: 4px;
  }

  /* Swiper navigation arrows (optional) */
  .mobile-slider-true .swiper-button-prev,
  .mobile-slider-true .swiper-button-next {
    display: none; /* Hide arrows by default */
  }

  /* Fix for buttons and interactive elements inside cards */
  .mobile-slider-true .woocommerce ul.products li.product .button,
  .mobile-slider-true .woocommerce ul.products li.product a,
  .mobile-slider-true .woocommerce ul.products li.product button {
    pointer-events: auto;
  }
}

/* Tablet adjustments (between mobile and desktop) */
@media (min-width: 481px) and (max-width: 768px) {
  .mobile-slider-true .woocommerce ul.products li.product {
    width: 70% !important;
    max-width: 70% !important;
  }
}

/* Desktop - ensure normal behavior */
@media (min-width: 769px) {
  .mobile-slider-true .swiper-pagination {
    display: none;
  }
}
