 /* Unique container styling to avoid conflicts */
        .pg-carousel-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        
        .pg-carousel-title {
            font-family: 'Helvetica Neue', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
            padding-left: 10px;
            text-align: center !important; /* Center title on mobile */
        }
        
        /* Scrollable products container */
        .pg-products-scroll {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 15px; /* Reduced gap for mobile */
            padding: 10px 0; /* Adjusted padding */
            -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
            width: 100% !important; /* Ensure full width */
        }
        
        /* Remove scrollbar for cleaner look but keep functionality */
        .pg-products-scroll::-webkit-scrollbar {
            display: none;
        }
        
        /* Individual product card */
        .pg-product-card {
            flex: 0 0 auto; /* Allow cards to size based on content */
            width: 180px !important; /* Fixed width for mobile */
            scroll-snap-align: start;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pg-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .pg-product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .pg-product-details {
            padding: 18px;
        }
        
        .pg-product-title {
            font-family: 'Helvetica Neue', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: #222;
            margin-bottom: 0.5rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-decoration: none; /* Remove underline */
        }
        
        .pg-product-category {
            display: inline-block;
            font-size: 0.8rem;
            color: #666;
            background: #f5f5f5;
            padding: 3px 8px;
            border-radius: 4px;
            margin-bottom: 0.8rem;
        }
        
        .pg-product-price {
            font-family: 'Helvetica Neue', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #3a86ff;
            margin-bottom: 0.5rem;
        }
        
        .pg-product-old-price {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 0.5rem;
        }
        
        .pg-product-rating {
            display: flex;
            align-items: center;
            margin-top: 0.5rem;
        }
        
        .pg-rating-stars {
            color: #ffd700;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .pg-rating-count {
            font-size: 0.8rem;
            color: #666;
            margin-left: 0.5rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .pg-product-card {
                width: 220px !important; /* Adjust width for larger mobile screens */
            }
        }
        
        @media (max-width: 480px) {
            .pg-product-card {
                width: 180px !important; /* Fixed width for smaller mobile screens */
            }
        }
        a {
            text-decoration: none !important; /* Ensure no underline on links */
        }

        /* hero section for product details page */
        /*hero section 2*/
        
        .hero-section-s {
    width: 100%;
    overflow: hidden;
  }

  .hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 800px; /* Desktop height */
  }

  .hero-img-s {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  @media (max-width: 768px) {
    .hero-image-wrapper {
      height: 300px;
    }
  }

  @media (max-width: 480px) {
    .hero-image-wrapper {
      height: 240px;
    }
  }

  /* product details page css */

  



