.cart-container {
    padding: 50px 0;
}

.cart-items-list {
    margin-top: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 100px;
    margin-right: 20px;
}


.cart-item-image img {
    max-width: 100%;
    height: auto;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.cart-item-details p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.remove-item {
    background: #B6192A;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.remove-item:hover {
    background: #B6192A;
}

.cart-total {
    text-align: right;
    padding: 20px;
    font-size: 20px;
    border-top: 2px solid #eee;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#checkout-btn {
    padding: 10px 30px;
}

#clear-cart {
    padding: 10px 30px;
    background: #B6192A;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#clear-cart:hover {
    background: #777;
}


/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #B6192A;
    background: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.quantity-btn:hover {
    color: #b5aec4;
}

.quantity {
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: #B6192A;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
    -moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.remove-item:hover {
    color: #b5aec4;
    background-color: #FE7C7F;
}

/* cart_styles.css */
.cart-item {
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

.cart-item.removing {
  opacity: 0;
  transform: translateX(-100%);
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.remove-item {
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.remove-item:hover {
  background-color: #ff6b6b;
}