    html { scroll-behavior: smooth; }

    .shop-header {
      text-align: center;
      padding: 40px 20px;
    }

    .shop-header h1 {
      font-size: 2.5rem;
    }

    .shop-header span {
      color: #00c853;
    }

    .shop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      padding: 30px;
    }

    .product-card {
      background: #fff;
      border-radius: 12px;
      padding: 15px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

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

    .product-card img {
      width: 100%;
      border-radius: 10px;
    }

    .product-card h3 {
      margin: 10px 0 5px;
    }

    .price {
      color: green;
      font-weight: bold;
    }