/* Cart Page Styles */
.cart-page {
    margin: 80px auto;
  }
  
  .cart-page table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .cart-page table th, .cart-page table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
  }
  
  .cart-page table th {
    background-color: #f2f2f2;
  }
  
  .total-price {
    margin: 40px 0;
    text-align: right;
  }
  
  .total-price table {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
  }
  
  .total-price table td {
    padding: 10px;
    font-size: 18px;
  }
  
  .total-price button {
    background-color: #ff523b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
  }
  
  .total-price button:hover {
    background-color: #563434;
  }
  .cart-count {
    background-color: #0061d9;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    position: relative;
    top: -10px;
    left: -10px;
    font-size: 12px;
  }
  