
    body {
      font-family: sans-serif;
      margin: 0;
      background: #f8f8f8;
      display: flex;
      justify-content: center;
    }

    .wrapper {
      width: 100%;
      max-width: 400px;
      background: white;
      min-height: 100vh;
      padding: 20px;
      box-sizing: border-box;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .cart-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .cart-item img {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      object-fit: cover;
      margin-right: 10px;
    }

    .item-info {
      flex: 1;
    }

    .item-info p {
      margin: 0;
      font-size: 14px;
    }

    .item-price {
      font-weight: bold;
      margin-top: 5px;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .quantity-controls button {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background: #eee;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }

    .payment-section {
      background: #f0f0f8;
      padding: 15px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 20px 0;
    }

    .payment-section .card-type {
      background: #0057e7;
      color: white;
      padding: 5px 10px;
      border-radius: 8px;
      font-size: 12px;
      margin-right: 10px;
    }

    .summary {
      font-size: 14px;
      line-height: 2;
    }

    .summary .row {
      display: flex;
      justify-content: space-between;
    }

 #alertButton{
      width: 100%;
      background: #000;
      color: white;
      padding: 15px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      margin-top: 20px;
    }
a{
    text-decoration: none;
}