.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 40px;
    font-family: 'Inter', sans-serif;
    background: #f9fafc;
  }

  .cart-left {
    flex: 2;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    min-width: 600px;
  }

  .cart-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .cart-count {
    color: #718096;
    margin-bottom: 20px;
  }

  .cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
  }

  .cart-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
  }

  .cart-item p {
    margin: 4px 0;
    flex: 1;
  }

  .cart-right {
    flex: 1;
    min-width: 300px;
  }

  .summary-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .summary-box h4 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .btn-yellow {
    background: #fbbf24;
    color: black;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
  }
