
 
  .custom-cart {
    max-width: 90%;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .cart-title {
    text-align: center;
    font-size: 28px;
    
    font-weight: 600;
    margin-bottom: 30px;
  }

  .cart-table-wrapper {
    overflow-x: auto;
  }

  .cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
  }

  .cart-table th,
  .cart-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
  }

  .cart-table th {
    background-color: #85d3e9;
    font-weight: 600;
    color: white;
  }

  .product-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .product-image img {
    width: 80px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #ddd;
  }

  .product-name a {
    color: #007eb9;
    text-decoration: none;
    font-weight: 500;
  }

  .product-name a:hover {
    text-decoration: underline;
  }

  .quantity-form {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .quantity-controls button {
    background-color:white;
    border-color:#e8e8e8;
    border-style:solid;
    color: black;
    border-width:1px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .quantity-controls button:hover {
    background-color: #85d3e9;
    border-color:#85d3e9; 
    color:white;
  }

  .quantity-controls input[type="number"] {
    width: 40px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

 .remove-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.remove-btn i {
  pointer-events: none;
}

.remove-btn:hover {
  color: red;
  border-color: red;
}

  .cart-summary {
    text-align: right;
    font-size: 18px;
    margin-top: 30px;
  }

  .empty-cart {
    text-align: center;
    font-size: 18px;
    color: #999;
    padding: 40px 0;
  }
.cart-summary {
  max-width: 400px;
  margin-left: auto;
  font-size: 13px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  color: #333;
}

.total-line {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  border-bottom: none;
  margin-top: 10px;
}

.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background-color: #85d3e9;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.checkout-button:hover {
  background-color: #5dc5e3;
}


  @media (max-width: 768px) {
    .cart-table {
      font-size: 14px;
    }

    .cart-table th,
    .cart-table td {
      padding: 10px 8px;
    }

    .product-image img {
      width: 60px;
    }

    .quantity-controls input[type="number"] {
      width: 40px;
    }

    .cart-summary {
      text-align: center;
    }
  }
 