/* Banner */
.shop-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .shop-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  
  .shop-banner p {
    font-size: 18px;
    margin-top: 0;
  }
  
  /* Product Grid */
  .shop-section {
    padding: 50px 20px;
    background-color: #f9f9fb;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* wider columns */
    gap: 25px;
    padding: 40px;
    justify-items: center;
  }
  
  .product-card {
    width: 100%;
    max-width: 220px; /* slightly wider */
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    padding: 18px;
    transition: transform 0.25s ease;
  }
  
  .product-card:hover {
    transform: scale(1.04);
  }
  
  .product-card img {
    width: 100%;
    height: 220px; /* increased height */
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-card h3 {
    font-size: 1.05rem;
    margin: 12px 0 6px;
    font-weight: 600;
  }
  
  .product-card p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #333;
  }
  
  .buy-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 9px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .buy-btn:hover {
    background-color: #0056b3
  }  