body { font-family: Arial, sans-serif; margin: 20px; }

    /* Product grid */
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }
    .product-card {
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .product-card:hover {
      transform: translateY(-4px);
    }
    .product-card img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
      margin-bottom: 10px;
    }
    .product-card h3 {
      font-size: 1.1rem;
      margin: 10px 0 5px;
    }
    .product-card p {
      font-weight: bold;
      margin: 5px 0;
    }
    .product-card input {
      width: 60px;
      margin: 5px 0;
      text-align: center;
    }

    /* Pagination */
    .pagination-controls {
      text-align: center;
      margin: 20px 0;
    }
    .pagination-controls button {
      margin: 0 5px;
      padding: 5px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background: #f5f5f5;
      cursor: pointer;
    }
    .pagination-controls .active-page {
      background-color: #333;
      color: #fff;
      font-weight: bold;
    }

    /* Cart section */
    #cart {
      border: 1px solid #ccc;
      padding: 15px;
      border-radius: 10px;
      background: #fafafa;
      margin-bottom: 20px;
    }
    #cart div {
      margin-bottom: 8px;
    }
    #cart button {
      margin-left: 10px;
      padding: 3px 8px;
      font-size: 0.8rem;
      cursor: pointer;
    }

    /* Order summary card */
    .order-summary {
      border: 1px solid #ccc;
      padding: 15px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      max-width: 300px;
      margin: 0 0 20px 0;
    }
    .order-summary p {
      margin: 6px 0;
      font-size: 0.95rem;
    }
    .order-summary strong {
      font-size: 1.1rem;
    }

    /* Form styling */
    form {
      border: 1px solid #ccc;
      padding: 15px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    form input, form textarea {
      width: 100%;
      padding: 8px;
      margin: 6px 0 12px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    form button {
      padding: 8px 15px;
      border: none;
      border-radius: 6px;
      background: #333;
      color: #fff;
      cursor: pointer;
    }
    #clear-cart-btn {
      margin-top: 10px;
      padding: 8px 15px;
      border: none;
      border-radius: 6px;
      background: #c00;
      color: #fff;
      cursor: pointer;
    }
}