.cart-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.cart-item-quantity {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.cart-item-price {
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
}

.cart-item-remove button {
    border: none;
    background: #ff4d4f;
    color: white;
    font-size: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove button:hover {
    background: #d9363e;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    padding: 12px;
    background: #e6f7ff;
    border-radius: 8px;
}

.cart-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-actions .btn {
    padding: 10px 20px;
    font-size: 15px;
}