  /* gen styles */
  body {
    background-color: #bfe1ea;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* cart icon styles */
  .cart-icon {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
  }

  .cart-count {
    position: absolute;
    top: 4px;
    right: 6px;

    background-color: red;
    color: white;

    border-radius: 50%;

    min-width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: bold;

    padding: 2px;
  }

  /* product card styles */

  .product-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff8e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-card:hover .product-image {
    transform: scale(1.03);
    transition: 0.4s ease;
  }

  .product-info {
    padding: 10px;
    text-align: center;
  }

  .add-to-cart {
    background-color: #ffb84d;
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 10px;
  }

  .add-to-cart:hover {
    background-color: #e69a00;
  }

  .quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
  }

  .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    background-color: #f0c14b;
    border: none;
    border-radius: 4px;
  }

  .quantity-input {
    width: 50px;
    text-align: center;
    padding: 5px;
  }

  .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-link h4 {
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }