.cart-item img {
    width: 100px;
    height: auto;
    border-radius: 5px;
  }
  .cart-item-title {
    font-size: 1rem;
    font-weight: bold;
  }
  .cart-item-price {
    font-size: 0.9rem;
    color: #555;
  }
  .cart-item-price del {
    color: #aaa;
    margin-left: 5px;
  }
  .cart-summary {
    font-size: 0.9rem;
    color: #555;
  }
  .cart-summary .subtotal {
    font-size: 1.2rem;
    font-weight: bold;
  }
  .checkout-btn {
    background-color: #79a9bd;
    color: white;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
  }
  .checkout-btn:hover {
    background-color: #5a8ca0;
  }
  .remove-btn {
    font-size: 0.8rem;
    color: #dc3545;
    border: none;
    background: none;
    cursor: pointer;
  }
  .remove-btn:hover {
    text-decoration: underline;
  }

  input, button {
    border-radius: 0 !important;
  }

  .empty-cart-alert {
    color: #555;
  }