
 * {
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
    }

    .product-grid {
      margin: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .product-box {
      flex: 1 1 250px;
      max-width: 300px;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      background-color: white;
      transition: transform 0.2s;
    }

    .product-box:hover {
      transform: scale(1.02);
    }

    .image-wrapper {
      width: 100%;
      aspect-ratio: 4 / 3;
      background-color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-content {
      padding: 15px;
      text-align: center;
    }

    .product-title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .buy-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #00AA5B;
      color: white;
      padding: 10px 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s;
    }

    .buy-button:hover {
      background-color: #008f4f;
    }

    .cart-icon {
      width: 18px;
      height: 18px;
    }