/* ===== PRODUCT STORE (SCROLLABLE) ===== */
.product-store {
    padding: 2rem;
    background: #f9f9f9;
  }
  
  .product-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .product-scroll-track {
    display: flex;
    gap: 1rem;
    /* Optional: smooth scroll */
    scroll-behavior: smooth;
  }
  
  .product-card {
    min-width: 200px; /* controls card width */
    background: white;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0; /* prevents shrinking */
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product-card img {
    width: 160px;  /* your custom image width */
    height: 220px; /* your custom image height */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
  }
  
  .product-card h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #1E3A8A;
  }
  
  .product-card .price {
    font-weight: bold;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
  }
  
  .product-card button {
    background: #1E3A8A;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
  }
  
  .product-card button:hover {
    transform: scale(1.05);
  }
  
  /* Hide scrollbar in Webkit (Chrome, Safari) */
  .product-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  /* Optional: mobile spacing */
  @media (max-width:768px){
    .product-card {
      min-width: 150px;
    }
    .product-card img {
      width: 120px;
      height: 150px;
    }
  }