/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
  }
  
  .cart-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
  }
  
  .product-image img {
    width: 120px; /* Increased size */
    height: 120px; /* Increased size */
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-details {
    flex: 1;
  }
  
  .product-name {
    font-size: 18px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .product-price {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .product-mrp {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
  }
  
  .product-color, .product-size {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }
  
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .quantity-btn {
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .quantity {
    font-size: 16px;
  }
  
  .remove-btn {
    padding: 5px 10px;
    font-size: 14px;
    color: #ff0000;
    background: #fff;
    border: 1px solid #ff0000;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .remove-btn:hover {
    background: #ff0000;
    color: #fff;
  }
  
  .cart-summary {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #ddd;
  }
  
  .cart-summary h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .cart-summary p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .checkout-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .checkout-btn:hover {
    background: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .cart-item {
      flex-direction: row; /* Changed to row */
      align-items: center;
      text-align: left; /* Changed to left */
    }
  
    .product-image img {
      width: 100px; /* Slightly larger */
      height: 100px; /* Slightly larger */
    }
  
    .product-name {
      font-size: 16px;
    }
  
    .product-price {
      font-size: 14px;
    }
  
    .quantity-controls {
      justify-content: flex-start; /* Changed to flex-start */
    }
  
    .remove-btn {
      width: auto; /* Changed to auto */
    }
  }