 /* 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;
        }
        
        /* 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: 400px;
            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: black;
            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;
    }
  }

  /* new product page css */
    /* ===== MAIN PRODUCT CONTAINER ===== */

        .category-title-container {
  text-align: center;
  margin: 30px 0;
  color: #555;

        }
.main-container {
  display: flex;
  width: 80%;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
  background: #f8f9fb;
}

.product-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  border-radius: 15px;
  max-width: 1500px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* ===== LEFT IMAGE ===== */
.product-image {
  flex: 1 1 45%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.product-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
}

/* ===== RIGHT DETAILS ===== */
.product-details {
  flex: 1 1 55%;
  padding: 30px 40px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.product-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== INFO TABLE ===== */
.product-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.product-info-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.product-info-table td:first-child {
  font-weight: 600;
  color: #444;
}

/* ===== ACTION BUTTONS ===== */
.product-actions {
  display: flex;
  gap: 15px;
}

.product-actions button {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-buy {
  background: #007bff;
  color: #fff;
}

.btn-cart {
  background: #f0f0f0;
  color: #333;
}

.btn-buy:hover {
  background: #0056d2;
}

.btn-cart:hover {
  background: #e4e4e4;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-image, .product-details {
    flex: 1 1 100%;
    padding: 20px;
  }

  .product-title {
    font-size: 22px;
  }

  .product-actions {
    flex-direction: column;
  }
}
        /* Product Carousel Styles */
        
        /* Container for the entire carousel */